diff --git a/docs/data-sources/vpc_gateway_network.md b/docs/data-sources/vpc_gateway_network.md index 98ff829f40..4796989476 100644 --- a/docs/data-sources/vpc_gateway_network.md +++ b/docs/data-sources/vpc_gateway_network.md @@ -37,7 +37,7 @@ data scaleway_vpc_gateway_network by_gateway_and_pn { * `gateway_id` - (Optional) ID of the Public Gateway the GatewayNetwork is linked to * `private_network_id` - (Optional) ID of the Private Network the GatewayNetwork is linked to * `enable_masquerade` - (Optional) Whether masquerade (dynamic NAT) is enabled on requested GatewayNetwork -* `dhcp_id` - (Optional) ID of the Public Gateway's DHCP configuration +* `dhcp_id` - (Deprecated) ID of the Public Gateway's DHCP configuration ## Attributes Reference diff --git a/docs/data-sources/vpc_public_gateway_dhcp.md b/docs/data-sources/vpc_public_gateway_dhcp.md index 54cd776219..46989b1e9e 100644 --- a/docs/data-sources/vpc_public_gateway_dhcp.md +++ b/docs/data-sources/vpc_public_gateway_dhcp.md @@ -5,6 +5,10 @@ page_title: "Scaleway: scaleway_vpc_public_gateway_dhcp" # scaleway_vpc_public_gateway_dhcp +~> **Important:** The data source `scaleway_vpc_public_gateway_dhcp` has been deprecated and will no longer be supported. +In 2023, DHCP functionality was moved from Public Gateways to Private Networks, DHCP resources are now no longer needed. +For more information, please refer to the [dedicated guide](../guides/migration_guide_vpcgw_v2.md). + Gets information about a Public Gateway DHCP configuration. ## Example Usage diff --git a/docs/data-sources/vpc_public_gateway_dhcp_reservation.md b/docs/data-sources/vpc_public_gateway_dhcp_reservation.md index d521f737af..67b869b756 100644 --- a/docs/data-sources/vpc_public_gateway_dhcp_reservation.md +++ b/docs/data-sources/vpc_public_gateway_dhcp_reservation.md @@ -5,6 +5,10 @@ page_title: "Scaleway: scaleway_vpc_public_gateway_dhcp_reservation" # scaleway_vpc_public_gateway_dhcp_reservation +~> **Important:** The data source `scaleway_vpc_public_gateway_dhcp_reservation` has been deprecated and will no longer be supported. +In 2023, DHCP functionality was moved from Public Gateways to Private Networks, DHCP resources are now no longer needed. +You can use IPAM to manage your IPs. For more information, please refer to the [dedicated guide](../guides/migration_guide_vpcgw_v2.md). + Gets information about a DHCP entry. For further information, please see the [API documentation](https://www.scaleway.com/en/developers/api/public-gateway/#path-dhcp-entries-list-dhcp-entries). diff --git a/docs/resources/vpc_gateway_network.md b/docs/resources/vpc_gateway_network.md index 353f25588e..33e2fcac86 100644 --- a/docs/resources/vpc_gateway_network.md +++ b/docs/resources/vpc_gateway_network.md @@ -7,8 +7,8 @@ page_title: "Scaleway: scaleway_vpc_gateway_network" Creates and manages GatewayNetworks (connections between a Public Gateway and a Private Network). -It allows the attachment of Private Networks to Public Gateways and DHCP configurations. -For more information, see the [API documentation](https://www.scaleway.com/en/developers/api/public-gateway/#step-3-attach-private-networks-to-the-vpc-public-gateway). +It allows the attachment of Private Networks to Public Gateways. +For more information, see [the API documentation](https://www.scaleway.com/en/developers/api/public-gateway/#step-3-attach-private-networks-to-the-vpc-public-gateway). ## Example Usage @@ -80,73 +80,27 @@ resource scaleway_vpc_gateway_network main { } ``` -### Create a GatewayNetwork with DHCP - -```terraform -resource "scaleway_vpc_private_network" "pn01" { - name = "pn_test_network" -} - -resource "scaleway_vpc_public_gateway_ip" "gw01" { -} - -resource "scaleway_vpc_public_gateway_dhcp" "dhcp01" { - subnet = "192.168.1.0/24" - push_default_route = true -} - -resource "scaleway_vpc_public_gateway" "pg01" { - name = "foobar" - type = "VPC-GW-S" - ip_id = scaleway_vpc_public_gateway_ip.gw01.id -} - -resource "scaleway_vpc_gateway_network" "main" { - gateway_id = scaleway_vpc_public_gateway.pg01.id - private_network_id = scaleway_vpc_private_network.pn01.id - dhcp_id = scaleway_vpc_public_gateway_dhcp.dhcp01.id - cleanup_dhcp = true - enable_masquerade = true -} -``` - -### Create a GatewayNetwork with a static IP address - -```terraform -resource scaleway_vpc_private_network pn01 { - name = "pn_test_network" -} - -resource scaleway_vpc_public_gateway pg01 { - name = "foobar" - type = "VPC-GW-S" -} - -resource scaleway_vpc_gateway_network main { - gateway_id = scaleway_vpc_public_gateway.pg01.id - private_network_id = scaleway_vpc_private_network.pn01.id - enable_dhcp = false - enable_masquerade = true - static_address = "192.168.1.42/24" -} -``` - ## Argument Reference The following arguments are supported: - `gateway_id` - (Required) The ID of the Public Gateway. - `private_network_id` - (Required) The ID of the Private Network. -- `dhcp_id` - (Required) The ID of the Public Gateway DHCP configuration. Only one of `dhcp_id`, `static_address` and `ipam_config` should be specified. -- `enable_masquerade` - (Defaults to true) Whether masquerade (dynamic NAT) should be enabled on this GatewayNetwork -- `enable_dhcp` - (Defaults to true) Whether a DHCP configuration should be enabled on this GatewayNetwork. Requires a DHCP ID. -- `cleanup_dhcp` - (Defaults to false) Whether to remove DHCP configuration on this GatewayNetwork upon destroy. Requires DHCP ID. -- `static_address` - Enable DHCP configration on this GatewayNetwork. Only one of `dhcp_id`, `static_address` and `ipam_config` should be specified. - `ipam_config` - Auto-configure the GatewayNetwork using Scaleway's IPAM (IP address management service). Only one of `dhcp_id`, `static_address` and `ipam_config` should be specified. - `push_default_route` - Defines whether to enable the default route on the GatewayNetwork. - `ipam_ip_id` - Use this IPAM-booked IP ID as the Gateway's IP in this Private Network. +- `enable_masquerade` - (Defaults to true) Whether masquerade (dynamic NAT) should be enabled on this GatewayNetwork. - `zone` - (Defaults to [provider](../index.md#zone) `zone`) The [zone](../guides/regions_and_zones.md#zones) in which the gateway network should be created. +~> **Important:** +In 2023, DHCP functionality was moved from Public Gateways to Private Networks, DHCP fields are now deprecated. +For more information, please refer to the [dedicated guide](../guides/migration_guide_vpcgw_v2.md). + +- `dhcp_id` - (Deprecated) Please use `ipam_config`. The ID of the Public Gateway DHCP configuration. Only one of `dhcp_id`, `static_address` and `ipam_config` should be specified. +- `enable_dhcp` - (Deprecated) Please use `ipam_config`. Whether a DHCP configuration should be enabled on this GatewayNetwork. Requires a DHCP ID. +- `cleanup_dhcp` - (Deprecated) Please use `ipam_config`. Whether to remove DHCP configuration on this GatewayNetwork upon destroy. Requires DHCP ID. +- `static_address` - (Deprecated) Please use `ipam_config`. Enable DHCP configration on this GatewayNetwork. Only one of `dhcp_id`, `static_address` and `ipam_config` should be specified. + ## Attributes Reference In addition to all arguments above, the following attributes are exported: diff --git a/docs/resources/vpc_public_gateway.md b/docs/resources/vpc_public_gateway.md index 09dd0b8871..c9fd1be26f 100644 --- a/docs/resources/vpc_public_gateway.md +++ b/docs/resources/vpc_public_gateway.md @@ -59,10 +59,11 @@ The following arguments are supported: - `tags` - (Optional) The tags to associate with the Public Gateway. - `zone` - (Defaults to [provider](../index.md#zone) `zone`) The [zone](../guides/regions_and_zones.md#zones) in which the Public Gateway should be created. - `project_id` - (Defaults to [provider](../index.md#project_id) `project_id`) The ID of the project the public gateway is associated with. -- `upstream_dns_servers` - (Optional) Override the gateway's default recursive DNS servers, if DNS features are enabled. +- `upstream_dns_servers` - (Deprecated) Override the gateway's default recursive DNS servers, if DNS features are enabled. - `ip_id` - (Optional) Attach an existing flexible IP to the gateway. - `bastion_enabled` - (Optional) Enable SSH bastion on the gateway. - `bastion_port` - (Optional) The port on which the SSH bastion will listen. +- `allowed_ip_ranges` - (Optional) Set a definitive list of IP ranges (in CIDR notation) allowed to connect to the SSH bastion. - `enable_smtp` - (Optional) Enable SMTP on the gateway. - `refresh_ssh_keys` - (Optional) Trigger a refresh of the SSH keys on the Public Gateway by changing this field's value. diff --git a/docs/resources/vpc_public_gateway_dhcp.md b/docs/resources/vpc_public_gateway_dhcp.md index 37652c3752..3d839a1024 100644 --- a/docs/resources/vpc_public_gateway_dhcp.md +++ b/docs/resources/vpc_public_gateway_dhcp.md @@ -5,6 +5,10 @@ page_title: "Scaleway: scaleway_vpc_public_gateway_dhcp" # Resource: scaleway_vpc_public_gateway_dhcp +~> **Important:** The resource `scaleway_vpc_public_gateway_dhcp` has been deprecated and will no longer be supported. +In 2023, DHCP functionality was moved from Public Gateways to Private Networks, DHCP resources are now no longer needed. +For more information, please refer to the [dedicated guide](../guides/migration_guide_vpcgw_v2.md). + Creates and manages Scaleway VPC Public Gateway DHCP configurations. For more information, see the [API documentation](https://www.scaleway.com/en/developers/api/public-gateway/#dhcp-c05544). diff --git a/docs/resources/vpc_public_gateway_dhcp_reservation.md b/docs/resources/vpc_public_gateway_dhcp_reservation.md index b88d2b6778..e657b19583 100644 --- a/docs/resources/vpc_public_gateway_dhcp_reservation.md +++ b/docs/resources/vpc_public_gateway_dhcp_reservation.md @@ -5,6 +5,10 @@ page_title: "Scaleway: scaleway_vpc_public_gateway_dhcp_reservation" # Resource: scaleway_vpc_public_gateway_dhcp_reservation +~> **Important:** The resource `scaleway_vpc_public_gateway_dhcp_reservation` has been deprecated and will no longer be supported. +In 2023, DHCP functionality was moved from Public Gateways to Private Networks, DHCP resources are now no longer needed. +You can use IPAM to manage your IPs. For more information, please refer to the [dedicated guide](../guides/migration_guide_vpcgw_v2.md). + Creates and manages [Scaleway DHCP Reservations](https://www.scaleway.com/en/docs/vpc/concepts/#dhcp). These static associations are used to assign IP addresses based on the MAC addresses of the resource. diff --git a/internal/services/k8s/pool_test.go b/internal/services/k8s/pool_test.go index 68030840f2..4342210362 100644 --- a/internal/services/k8s/pool_test.go +++ b/internal/services/k8s/pool_test.go @@ -476,18 +476,18 @@ func TestAccPool_PublicIPDisabled(t *testing.T) { resource "scaleway_vpc_private_network" "public_ip" { name = "test-k8s-public-ip" } + resource "scaleway_vpc_public_gateway" "public_ip" { name = "test-k8s-public-ip" type = "VPC-GW-S" } - resource "scaleway_vpc_public_gateway_dhcp" "public_ip" { - subnet = "192.168.0.0/22" - push_default_route = true - } + resource "scaleway_vpc_gateway_network" "public_ip" { gateway_id = scaleway_vpc_public_gateway.public_ip.id private_network_id = scaleway_vpc_private_network.public_ip.id - dhcp_id = scaleway_vpc_public_gateway_dhcp.public_ip.id + ipam_config { + push_default_route = true + } } resource "scaleway_k8s_cluster" "public_ip" { diff --git a/internal/services/k8s/testdata/pool-public-ip-disabled.cassette.yaml b/internal/services/k8s/testdata/pool-public-ip-disabled.cassette.yaml index cc5fb8f44a..481fe47d8c 100644 --- a/internal/services/k8s/testdata/pool-public-ip-disabled.cassette.yaml +++ b/internal/services/k8s/testdata/pool-public-ip-disabled.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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/k8s/v1/regions/fr-par/versions method: GET response: @@ -25,20 +25,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 5639 + content_length: 5672 uncompressed: false - body: '{"versions":[{"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","InPlacePodVerticalScaling","SidecarContainers"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"label":"Kubernetes 1.31.2","name":"1.31.2","region":"fr-par"},{"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","SidecarContainers","InPlacePodVerticalScaling"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"label":"Kubernetes 1.30.6","name":"1.30.6","region":"fr-par"},{"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","SidecarContainers","ValidatingAdmissionPolicy","InPlacePodVerticalScaling"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"label":"Kubernetes 1.29.10","name":"1.29.10","region":"fr-par"},{"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","SidecarContainers","ValidatingAdmissionPolicy","InPlacePodVerticalScaling"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"label":"Kubernetes 1.28.15","name":"1.28.15","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret","InPlacePodVerticalScaling"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"label":"Kubernetes 1.27.16","name":"1.27.16","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"label":"Kubernetes 1.26.15","name":"1.26.15","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod","CSINodeExpandSecret"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"label":"Kubernetes 1.25.16","name":"1.25.16","region":"fr-par"}]}' + body: '{"versions":[{"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","InPlacePodVerticalScaling","SidecarContainers","DRAAdminAccess","DRAResourceClaimDeviceStatus","DynamicResourceAllocation"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"label":"Kubernetes 1.32.3","name":"1.32.3","region":"fr-par"},{"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","InPlacePodVerticalScaling","SidecarContainers"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"label":"Kubernetes 1.31.7","name":"1.31.7","region":"fr-par"},{"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","SidecarContainers","InPlacePodVerticalScaling"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"label":"Kubernetes 1.30.11","name":"1.30.11","region":"fr-par"},{"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","SidecarContainers","ValidatingAdmissionPolicy","InPlacePodVerticalScaling"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"label":"Kubernetes 1.29.15","name":"1.29.15","region":"fr-par"},{"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","SidecarContainers","ValidatingAdmissionPolicy","InPlacePodVerticalScaling"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"label":"Kubernetes 1.28.15","name":"1.28.15","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret","InPlacePodVerticalScaling"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"label":"Kubernetes 1.27.16","name":"1.27.16","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"label":"Kubernetes 1.26.15","name":"1.26.15","region":"fr-par"}]}' headers: Content-Length: - - "5639" + - "5672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:46:47 GMT + - Mon, 24 Mar 2025 08:13:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -46,10 +46,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 77432299-4817-4012-ab5e-07a9c60e3a74 + - cd1d4ff2-4b83-42a1-8167-06bb5dd1de43 status: 200 OK code: 200 - duration: 223.4685ms + duration: 382.041554ms - id: 1 request: proto: HTTP/1.1 @@ -61,13 +61,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"test-k8s-public-ip","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null}' + body: '{"name":"test-k8s-public-ip","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":null}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: @@ -76,20 +76,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1021 + content_length: 1022 uncompressed: false - body: '{"created_at":"2025-01-28T10:46:49.038912Z","dhcp_enabled":true,"id":"8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d","name":"test-k8s-public-ip","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:46:49.038912Z","id":"3db6da28-f723-46f3-9bb4-782831943e11","private_network_id":"8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.0.0/22","updated_at":"2025-01-28T10:46:49.038912Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-01-28T10:46:49.038912Z","id":"02dcd8f7-49ca-46a9-a94e-3dc3859187f9","private_network_id":"8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:faec::/64","updated_at":"2025-01-28T10:46:49.038912Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-01-28T10:46:49.038912Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-03-24T08:13:40.115789Z","dhcp_enabled":true,"id":"2177e306-fcad-4127-ba67-ba1abe0d58cb","name":"test-k8s-public-ip","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-03-24T08:13:40.115789Z","id":"75b9567d-37a3-4569-8d17-afedfcc4befa","private_network_id":"2177e306-fcad-4127-ba67-ba1abe0d58cb","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.56.0/22","updated_at":"2025-03-24T08:13:40.115789Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-03-24T08:13:40.115789Z","id":"866214a1-7134-45c3-9414-b914c8766708","private_network_id":"2177e306-fcad-4127-ba67-ba1abe0d58cb","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:ec3b::/64","updated_at":"2025-03-24T08:13:40.115789Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-03-24T08:13:40.115789Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1021" + - "1022" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:46:49 GMT + - Mon, 24 Mar 2025 08:13:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3cdf7f8b-9734-41f6-a958-2871b7af891e + - 77ac6d43-922e-4f85-9c99-d4f82aab9099 status: 200 OK code: 200 - duration: 807.840334ms + duration: 629.747371ms - 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/8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2177e306-fcad-4127-ba67-ba1abe0d58cb method: GET response: proto: HTTP/2.0 @@ -125,20 +125,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1021 + content_length: 1022 uncompressed: false - body: '{"created_at":"2025-01-28T10:46:49.038912Z","dhcp_enabled":true,"id":"8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d","name":"test-k8s-public-ip","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:46:49.038912Z","id":"3db6da28-f723-46f3-9bb4-782831943e11","private_network_id":"8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.0.0/22","updated_at":"2025-01-28T10:46:49.038912Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-01-28T10:46:49.038912Z","id":"02dcd8f7-49ca-46a9-a94e-3dc3859187f9","private_network_id":"8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:faec::/64","updated_at":"2025-01-28T10:46:49.038912Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-01-28T10:46:49.038912Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-03-24T08:13:40.115789Z","dhcp_enabled":true,"id":"2177e306-fcad-4127-ba67-ba1abe0d58cb","name":"test-k8s-public-ip","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-03-24T08:13:40.115789Z","id":"75b9567d-37a3-4569-8d17-afedfcc4befa","private_network_id":"2177e306-fcad-4127-ba67-ba1abe0d58cb","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.56.0/22","updated_at":"2025-03-24T08:13:40.115789Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-03-24T08:13:40.115789Z","id":"866214a1-7134-45c3-9414-b914c8766708","private_network_id":"2177e306-fcad-4127-ba67-ba1abe0d58cb","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:ec3b::/64","updated_at":"2025-03-24T08:13:40.115789Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-03-24T08:13:40.115789Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1021" + - "1022" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:46:49 GMT + - Mon, 24 Mar 2025 08:13:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,10 +146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 52983d58-436c-4aae-a0fd-ec5c506819ae + - da5ededc-ce70-4b51-ae58-1fd92430cc36 status: 200 OK code: 200 - duration: 86.792959ms + duration: 138.422144ms - id: 3 request: proto: HTTP/1.1 @@ -161,13 +161,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","type":"","name":"test-k8s-public-ip","description":"","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"version":"1.31.2","cni":"cilium","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"feature_gates":[],"admission_plugins":[],"apiserver_cert_sans":[],"private_network_id":"8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d"}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","type":"","name":"test-k8s-public-ip","description":"","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"version":"1.32.3","cni":"cilium","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"feature_gates":[],"admission_plugins":[],"apiserver_cert_sans":[],"private_network_id":"2177e306-fcad-4127-ba67-ba1abe0d58cb"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters method: POST response: @@ -176,20 +176,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1442 + content_length: 1465 uncompressed: false - body: '{"acl_available":false,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2174cb82-2a48-41ac-94f0-68305bb9a28a.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-01-28T10:46:50.481031Z","created_at":"2025-01-28T10:46:50.481019Z","description":"","dns_wildcard":"*.2174cb82-2a48-41ac-94f0-68305bb9a28a.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sbs_csi_enabled":true,"status":"creating","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2025-01-28T10:46:50.481019Z","upgrade_available":false,"version":"1.31.2"}' + body: '{"acl_available":true,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2fd5d612-425f-4b4b-ae74-16eda80368e6.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-03-24T08:13:42.105610Z","created_at":"2025-03-24T08:13:42.105600Z","description":"","dns_wildcard":"*.2fd5d612-425f-4b4b-ae74-16eda80368e6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"iam_nodes_group_id":"","id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_id":"2177e306-fcad-4127-ba67-ba1abe0d58cb","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","sbs_csi_enabled":true,"status":"creating","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2025-03-24T08:13:42.105600Z","upgrade_available":false,"version":"1.32.3"}' headers: Content-Length: - - "1442" + - "1465" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:46:50 GMT + - Mon, 24 Mar 2025 08:13:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,10 +197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 35b0524e-c2ce-482c-bd4d-6b3cc6ac7069 + - 3ad7ba02-84b1-44d6-a4b2-8a3900373ef4 status: 200 OK code: 200 - duration: 644.885ms + duration: 1.344905451s - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2174cb82-2a48-41ac-94f0-68305bb9a28a + - 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/k8s/v1/regions/fr-par/clusters/2fd5d612-425f-4b4b-ae74-16eda80368e6 method: GET response: proto: HTTP/2.0 @@ -225,20 +225,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1442 + content_length: 1465 uncompressed: false - body: '{"acl_available":false,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2174cb82-2a48-41ac-94f0-68305bb9a28a.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-01-28T10:46:50.481031Z","created_at":"2025-01-28T10:46:50.481019Z","description":"","dns_wildcard":"*.2174cb82-2a48-41ac-94f0-68305bb9a28a.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sbs_csi_enabled":true,"status":"creating","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2025-01-28T10:46:50.481019Z","upgrade_available":false,"version":"1.31.2"}' + body: '{"acl_available":true,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2fd5d612-425f-4b4b-ae74-16eda80368e6.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-03-24T08:13:42.105610Z","created_at":"2025-03-24T08:13:42.105600Z","description":"","dns_wildcard":"*.2fd5d612-425f-4b4b-ae74-16eda80368e6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"iam_nodes_group_id":"","id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_id":"2177e306-fcad-4127-ba67-ba1abe0d58cb","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","sbs_csi_enabled":true,"status":"creating","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2025-03-24T08:13:42.105600Z","upgrade_available":false,"version":"1.32.3"}' headers: Content-Length: - - "1442" + - "1465" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:46:50 GMT + - Mon, 24 Mar 2025 08:13:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -246,10 +246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a085cdfe-e84e-4f3e-9513-60d40ed8bf76 + - beeb44ec-1300-48ff-b029-cdfcf4dee652 status: 200 OK code: 200 - duration: 76.658042ms + duration: 121.287822ms - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2174cb82-2a48-41ac-94f0-68305bb9a28a + - 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/k8s/v1/regions/fr-par/clusters/2fd5d612-425f-4b4b-ae74-16eda80368e6 method: GET response: proto: HTTP/2.0 @@ -274,20 +274,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1447 + content_length: 1506 uncompressed: false - body: '{"acl_available":false,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2174cb82-2a48-41ac-94f0-68305bb9a28a.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-01-28T10:46:50.481031Z","created_at":"2025-01-28T10:46:50.481019Z","description":"","dns_wildcard":"*.2174cb82-2a48-41ac-94f0-68305bb9a28a.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sbs_csi_enabled":true,"status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2025-01-28T10:46:51.938655Z","upgrade_available":false,"version":"1.31.2"}' + body: '{"acl_available":true,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2fd5d612-425f-4b4b-ae74-16eda80368e6.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-03-24T08:13:42.105610Z","created_at":"2025-03-24T08:13:42.105600Z","description":"","dns_wildcard":"*.2fd5d612-425f-4b4b-ae74-16eda80368e6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"iam_nodes_group_id":"2ad98fd4-b1c1-438c-971f-d6152cfe2fbe","id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_id":"2177e306-fcad-4127-ba67-ba1abe0d58cb","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","sbs_csi_enabled":true,"status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2025-03-24T08:13:44.221501Z","upgrade_available":false,"version":"1.32.3"}' headers: Content-Length: - - "1447" + - "1506" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:46:55 GMT + - Mon, 24 Mar 2025 08:13:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -295,10 +295,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bb9ac493-eb47-4dd6-b12d-d0356cbef7ba + - d979e09d-18b6-4aef-9729-cd41c31dedc4 status: 200 OK code: 200 - duration: 83.793417ms + duration: 104.103733ms - 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/k8s/v1/regions/fr-par/clusters/2174cb82-2a48-41ac-94f0-68305bb9a28a/pools?order_by=created_at_asc&page=1&status=unknown + - 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/k8s/v1/regions/fr-par/clusters/2fd5d612-425f-4b4b-ae74-16eda80368e6/pools?order_by=created_at_asc&page=1&status=unknown method: GET response: proto: HTTP/2.0 @@ -334,9 +334,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:46:55 GMT + - Mon, 24 Mar 2025 08:13:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -344,10 +344,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8ad8134d-6a19-4891-b1fb-30edaea492d5 + - 15e76e5c-802f-4e14-88fa-131d941e8adc status: 200 OK code: 200 - duration: 75.834875ms + duration: 124.73513ms - 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/k8s/v1/regions/fr-par/clusters/2174cb82-2a48-41ac-94f0-68305bb9a28a + - 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/k8s/v1/regions/fr-par/clusters/2fd5d612-425f-4b4b-ae74-16eda80368e6 method: GET response: proto: HTTP/2.0 @@ -372,20 +372,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1447 + content_length: 1506 uncompressed: false - body: '{"acl_available":false,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2174cb82-2a48-41ac-94f0-68305bb9a28a.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-01-28T10:46:50.481031Z","created_at":"2025-01-28T10:46:50.481019Z","description":"","dns_wildcard":"*.2174cb82-2a48-41ac-94f0-68305bb9a28a.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sbs_csi_enabled":true,"status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2025-01-28T10:46:51.938655Z","upgrade_available":false,"version":"1.31.2"}' + body: '{"acl_available":true,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2fd5d612-425f-4b4b-ae74-16eda80368e6.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-03-24T08:13:42.105610Z","created_at":"2025-03-24T08:13:42.105600Z","description":"","dns_wildcard":"*.2fd5d612-425f-4b4b-ae74-16eda80368e6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"iam_nodes_group_id":"2ad98fd4-b1c1-438c-971f-d6152cfe2fbe","id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_id":"2177e306-fcad-4127-ba67-ba1abe0d58cb","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","sbs_csi_enabled":true,"status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2025-03-24T08:13:44.221501Z","upgrade_available":false,"version":"1.32.3"}' headers: Content-Length: - - "1447" + - "1506" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:46:55 GMT + - Mon, 24 Mar 2025 08:13:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -393,10 +393,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e1b06b19-c446-44a1-9939-8f89374e101f + - c34591d7-36ae-41c5-b8c5-58040c035e0a status: 200 OK code: 200 - duration: 71.711542ms + duration: 118.227759ms - 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/k8s/v1/regions/fr-par/clusters/2174cb82-2a48-41ac-94f0-68305bb9a28a/kubeconfig + - 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/k8s/v1/regions/fr-par/clusters/2fd5d612-425f-4b4b-ae74-16eda80368e6/kubeconfig method: GET response: proto: HTTP/2.0 @@ -423,7 +423,7 @@ interactions: trailer: {} content_length: 2636 uncompressed: false - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtazhzLXB1YmxpYy1pcCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSk1VMUVSWGxPZWtWM1RrUlpNVTFXYjFoRVZFMHhUVVJGZVU1NlJYZE9SRmt4VFZadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUbmRuQ2pjeVkxUkZlbWdyVlZBcldFNUNURTE1ZUV0R01YcHlNbU5VYkdsb05YZGljeXRyZFhaNlp6WnBLMlZVTkdzemJIUTVUbmQ2ZEZKb1YyZFlMelJSV2tJS2RXcFlkVkp4YlVoa2JXdFhVRXBYUWxNclJrSkdhekZRVkV4RmFtUmFiaXRCU0dwcFZFOHdabHBVZFZWcE1uRXhhak5FTDFoamF6SnlRWG8yZFVwWFpncDBlVkI1WVhkTWJuZzBOSFpIV21sc1YydHFXVmhZYmt0WkswMU1TV05GWWxSWFJtaHplVTlyZEhwR05HSXpSa0pQUWpsa09ISmhkWGx5TkhWcVRWa3pDamxFY0dWWU0yTjBhemRtVEUxdU0xTnZkRUZsYjFCSVIyTnlOV2RTTm5ZeU5FeEJUMUpHUkZWaE5sUjBTRTFtVWt0NGRUazRLMDVDVEdsaFkxUTNlVmNLUTJsSE5VNU5VREF4T0UxMlZta3dLMWRRZEhKd1ZFTkRVek5LVGl0bllUYzJkM0pWY1Zoc1QzcDNTME5TWW01cFpHRnlNRmhvVFhKM1VuWlNZVTB5YkFwUGJGWjBNVmxXT1RkWVlYRXhlbFJsYkM5RlEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaRFVXUldVMU4xVXpOc2IwTTVjek5NY1VrNGNsRjBVVTFoVUV0TlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQk1XMWhaMGN4ZFRKTFZ6TlhVVlZaZUdkM2MwMHhZbVJrTVdkbVNESlBiSGRpSzBWTE5GUm9Va1paSzFOQ1RIRTRaUXBVUjFwSWJpOVdWbVZWUW5oemRHSXdLMkpuUm5kT1kzcEViVmRzV1Zoa0wzZENNWEJYU21wNFMwRk5XR3hHWVhwa2RsWmpLMVpNWkhaYVRtaDNXbkVyQ25ndk5WQnFOazlUUTNGVVVrSndXREpQVldseGNIZ3JjMHAzYVhSaFVIWldTMFZDV1V4bmQxUkdMMHBwY0hkelF6bGhOSFJIZUdWSVNHMDJSM0ZqV0ZNS1YwcHFNVXBMZW5oeFdrWjJaMHg2VkhoU1VVRnZabEZ5VlZsS1VrOVFhbXAwTlZSSVUxTTBaVGxrY2pWMk1XMWxTM2czU0VWV2VXOUhWRzlzYVZKd1RRb3pVVGMzVUVoSmRHRXlkek5YYml0WFNITmtORVUyY0d0R2FsWnFiMVE1V0V4dGNYQXZNelJUWW5sWFdtSXZja3cyY0Zwa1FYWkVLM0lyYkhCUVJtSmtDakpwUXl0Mk9XcDNlRlZPUnk5R2RHc3ZjbHByZVU1RlluRmpZVWxUYmpSb09YUTNRZ290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vMjE3NGNiODItMmE0OC00MWFjLTk0ZjAtNjgzMDViYjlhMjhhLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtazhzLXB1YmxpYy1pcAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1rOHMtcHVibGljLWlwIgogICAgdXNlcjogdGVzdC1rOHMtcHVibGljLWlwLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1rOHMtcHVibGljLWlwCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1rOHMtcHVibGljLWlwLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBUQ2Vqb2JWek95bXUwUWpRcmxFNm45a0M3TWVaWjRPZVhzUjlXMDVHYWJKVGtMbTZBc0kzbkVjZQ==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtazhzLXB1YmxpYy1pcCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSk1VMUVUWGxOZWtFMFRWUk5NRTB4YjFoRVZFMHhUVVJOZVUxNlFUUk5WRTB3VFRGdmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUVVYxQ2xNNGRUTlpRbTFPTWsxR1VWWnFXVTFJUnpkRFdWbGFjalJFVlZCNU5FOVFkR1ZDVFhob1pIY3dhREZOUkdsRU9YY3hjREEyUkVwaWFXcHlZVGh2Y0VnS2RuRmFNbE0zV1hJclVtZG9ZblZ1T1hkTFpVcHVjRE5QU1ZaWWVtMXRTR2hKVkhwVE5XVjBlRlozV25oNk5HTlphR1F6Y1VSdFJXRlNSbXM0VG1aTFpBcEZkWE4wWVdKNmIwdEdjVVFyY3psR0wxQkZiRVpzZGt0RmNUZ3diWFZUVjBSdFRFcGhVR3BJWm5oVVYyNVdNV3RwYWtaeWQwdzJla3RsVTFBd2REbHBDbUp3ZEN0c2FWaERXRGhOVlVaNk9YcGhUMmc1YUhOTk5ISkVObXBwWkVsRWRWcDJjMHh6YlZacFR5ODFZaXN3ZFdSeVpXOTJURzUzVmpGcFNHNURVeklLUjBSQmVqSlhUVk55VFRGRFMydGpaVzVWTW5Zd2VuQjNjMlZPY0ROTk1HczBPSGhsVDNZMlNsRkxhRmd2YTA1b2F6RnFNSGxNU1ZSRVp6TlhlVzVHVFFwUE5VUnBkVWRpVlVWMFZIRkJlVmQ2V0hGelEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaT1ZISlRRWFJJVjNocmNreGtaVFZ3T1dOdWNVOWxXVzAxUzFCTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ05XZGhla014TVc1SlYwSldWVWxXUVhWM1YxbFZPVUpJUlRKM1dXcEZXbW8wYjA5c1ZHbHdka0kxYTJ4dVdGTlVWUXB5VERneFVrczJWaTk2TDI1MGVrSk9VM2RoWnpCdVZUQndkbEZDV0d4MlJXTmxTRTR3Y2t4aWJYQnJaSEp3VEZvNFNtSnRZM0JsZGtReVFraGFWelV4Q2pWamMxWjNMMmhKZFVSdFNEZFRaa0ZPYUc5QlJ6bDZlVmx5YjFJeFNVcE1PR2Q1WnpCRFYzcHBXWGtyWVhsbGVEUjBka3RzVld4RWFUbDZUa3NyVldJS1pGSlRLMHN6TWxGRVpHRkVjMkpoVW5NNFVYcG9RMUJhYm1ONVowNW1hek56VUZoUmMyaE5hekUyZWxoMk9ETXliWHB3T1dKeFdGTlNMelo2YVZCQlVBcFdja2xCTDI1bWVHcG5Sa3NyUWpKNWRFeDRjV04xZFdoSlJ5dDVVbVJ5YlhoQldXcFZUa04yVkhwNFdtVXlibWhZU0ZsT0sxQnRaa2RYT1hSaFZXSTNDbEpCYVdkVmIyTjFOVXB2WkZGUVlXUnVabTU0Y25ZNFVqWnJaVU5KTlRseFoxaFBXUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vMmZkNWQ2MTItNDI1Zi00YjRiLWFlNzQtMTZlZGE4MDM2OGU2LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtazhzLXB1YmxpYy1pcAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1rOHMtcHVibGljLWlwIgogICAgdXNlcjogdGVzdC1rOHMtcHVibGljLWlwLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1rOHMtcHVibGljLWlwCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1rOHMtcHVibGljLWlwLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiB4TmN5UVdkZThMSkxCRW1yUURFYnZUQTVZTEdBejlWT2JKSU14NGlLMW9zbXJ6dGw0U3Y1bzdDYw==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - "2636" @@ -432,9 +432,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:46:55 GMT + - Mon, 24 Mar 2025 08:13:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -442,10 +442,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c78df4f4-6aeb-49b0-aba5-3bb1eb14ad82 + - ff0becb4-b502-4bfc-aaf5-632415446982 status: 200 OK code: 200 - duration: 75.547916ms + duration: 110.08842ms - 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/k8s/v1/regions/fr-par/clusters/2174cb82-2a48-41ac-94f0-68305bb9a28a + - 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/k8s/v1/regions/fr-par/clusters/2fd5d612-425f-4b4b-ae74-16eda80368e6 method: GET response: proto: HTTP/2.0 @@ -470,20 +470,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1447 + content_length: 1506 uncompressed: false - body: '{"acl_available":false,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2174cb82-2a48-41ac-94f0-68305bb9a28a.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-01-28T10:46:50.481031Z","created_at":"2025-01-28T10:46:50.481019Z","description":"","dns_wildcard":"*.2174cb82-2a48-41ac-94f0-68305bb9a28a.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sbs_csi_enabled":true,"status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2025-01-28T10:46:51.938655Z","upgrade_available":false,"version":"1.31.2"}' + body: '{"acl_available":true,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2fd5d612-425f-4b4b-ae74-16eda80368e6.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-03-24T08:13:42.105610Z","created_at":"2025-03-24T08:13:42.105600Z","description":"","dns_wildcard":"*.2fd5d612-425f-4b4b-ae74-16eda80368e6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"iam_nodes_group_id":"2ad98fd4-b1c1-438c-971f-d6152cfe2fbe","id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_id":"2177e306-fcad-4127-ba67-ba1abe0d58cb","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","sbs_csi_enabled":true,"status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2025-03-24T08:13:44.221501Z","upgrade_available":false,"version":"1.32.3"}' headers: Content-Length: - - "1447" + - "1506" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:46:56 GMT + - Mon, 24 Mar 2025 08:13:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -491,10 +491,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b3c4cf5-a5b2-4e40-87c1-d1871b31f54d + - 4211654e-48ea-4d92-a5cc-105f7bf419b4 status: 200 OK code: 200 - duration: 66.416333ms + duration: 104.148531ms - id: 10 request: proto: HTTP/1.1 @@ -512,8 +512,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/k8s/v1/regions/fr-par/clusters/2174cb82-2a48-41ac-94f0-68305bb9a28a/pools + - 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/k8s/v1/regions/fr-par/clusters/2fd5d612-425f-4b4b-ae74-16eda80368e6/pools method: POST response: proto: HTTP/2.0 @@ -523,7 +523,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -532,9 +532,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:46:56 GMT + - Mon, 24 Mar 2025 08:13:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -542,10 +542,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 057b6727-4e72-4499-9fbc-6ec4f89eb3aa + - ed1a1640-5ef5-4bb4-bdc6-3649a8236799 status: 200 OK code: 200 - duration: 392.541083ms + duration: 300.335631ms - id: 11 request: proto: HTTP/1.1 @@ -561,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -572,7 +572,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -581,9 +581,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:46:56 GMT + - Mon, 24 Mar 2025 08:13:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -591,10 +591,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 717a2c7c-c6e7-4e2e-a18b-ed3a9135d9fd + - 40875d24-0ca1-4761-ad45-5c6061dcffa7 status: 200 OK code: 200 - duration: 79.282625ms + duration: 97.100862ms - id: 12 request: proto: HTTP/1.1 @@ -610,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -621,7 +621,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -630,9 +630,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:47:01 GMT + - Mon, 24 Mar 2025 08:13:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -640,10 +640,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3acc87d7-1b69-4dd0-9380-3c3ecf1ba474 + - dfd95522-67e3-4f1d-a0a1-f34def82adc7 status: 200 OK code: 200 - duration: 67.034041ms + duration: 101.950865ms - id: 13 request: proto: HTTP/1.1 @@ -659,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -670,7 +670,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -679,9 +679,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:47:06 GMT + - Mon, 24 Mar 2025 08:13:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -689,10 +689,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 659ea1eb-ea4f-4cbf-939c-1da8abd8e675 + - f20d8285-00d2-416a-aa48-e64731dd77fa status: 200 OK code: 200 - duration: 68.408166ms + duration: 109.161617ms - id: 14 request: proto: HTTP/1.1 @@ -708,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -719,7 +719,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -728,9 +728,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:47:11 GMT + - Mon, 24 Mar 2025 08:14:03 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -738,10 +738,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 08ef9ba6-1ab6-4538-b20e-605ad44cdb85 + - 3c16c851-5a2c-4662-a9be-91cf390185cb status: 200 OK code: 200 - duration: 69.856583ms + duration: 97.111858ms - id: 15 request: proto: HTTP/1.1 @@ -757,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -768,7 +768,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -777,9 +777,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:47:16 GMT + - Mon, 24 Mar 2025 08:14:08 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -787,10 +787,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 17c211e7-1762-456a-bbc4-4c6a2e9eaf25 + - d111960c-84a3-4bae-b432-aa605b86402b status: 200 OK code: 200 - duration: 196.886958ms + duration: 101.908937ms - id: 16 request: proto: HTTP/1.1 @@ -806,8 +806,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -817,7 +817,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -826,9 +826,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:47:22 GMT + - Mon, 24 Mar 2025 08:14:13 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -836,10 +836,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 871d3626-bc10-4591-b6b3-f63cbe00a6a1 + - 7a6753f2-4f5f-4249-8de7-d521b37bbb93 status: 200 OK code: 200 - duration: 75.073333ms + duration: 104.580652ms - id: 17 request: proto: HTTP/1.1 @@ -855,8 +855,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -866,7 +866,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -875,9 +875,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:47:27 GMT + - Mon, 24 Mar 2025 08:14:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -885,10 +885,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2e0c0bd0-bad4-4d0e-a31e-72d3d276d64d + - 5d8a7bf6-5ff1-4f5d-adc5-91d7c87a5d7b status: 200 OK code: 200 - duration: 113.9725ms + duration: 101.473132ms - id: 18 request: proto: HTTP/1.1 @@ -904,8 +904,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -915,7 +915,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -924,9 +924,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:47:32 GMT + - Mon, 24 Mar 2025 08:14:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -934,10 +934,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 542a1f69-8e14-41e1-94e6-b726eaac5d6b + - c6554882-26bc-4dda-9c88-2ff0261459ff status: 200 OK code: 200 - duration: 76.95075ms + duration: 124.947756ms - id: 19 request: proto: HTTP/1.1 @@ -953,8 +953,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -964,7 +964,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -973,9 +973,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:47:37 GMT + - Mon, 24 Mar 2025 08:14:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -983,10 +983,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 43049a63-6714-4e37-aa19-e17a09b18dd5 + - b6e5b4c6-382c-4bb0-a5e6-87155731fed2 status: 200 OK code: 200 - duration: 63.844667ms + duration: 112.372889ms - id: 20 request: proto: HTTP/1.1 @@ -1002,8 +1002,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -1013,7 +1013,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -1022,9 +1022,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:47:42 GMT + - Mon, 24 Mar 2025 08:14:34 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1032,10 +1032,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - caf90244-b46a-45a0-8046-a986867008bd + - 0ae830f0-ee91-4167-be03-27dcab016f07 status: 200 OK code: 200 - duration: 71.102167ms + duration: 108.442732ms - id: 21 request: proto: HTTP/1.1 @@ -1051,8 +1051,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -1062,7 +1062,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -1071,9 +1071,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:47:47 GMT + - Mon, 24 Mar 2025 08:14:39 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1081,10 +1081,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 148c8a73-17f3-41bc-94b2-7690e6e0a5cb + - aab213a5-ac14-4bbf-99de-5e0a52c0a4f1 status: 200 OK code: 200 - duration: 73.557875ms + duration: 124.212701ms - id: 22 request: proto: HTTP/1.1 @@ -1100,8 +1100,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -1111,7 +1111,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -1120,9 +1120,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:47:52 GMT + - Mon, 24 Mar 2025 08:14:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1130,10 +1130,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7dc7a5f3-6a1c-4aff-86c9-26eff731b034 + - 7112ac00-d595-46b7-842f-c200e74422dd status: 200 OK code: 200 - duration: 71.927083ms + duration: 148.239511ms - id: 23 request: proto: HTTP/1.1 @@ -1149,8 +1149,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -1160,7 +1160,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -1169,9 +1169,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:47:57 GMT + - Mon, 24 Mar 2025 08:14:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1179,10 +1179,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 211fcde1-dfac-4ee5-aae7-35a91577c317 + - 3109b608-9f92-4854-8109-9a09f0d51805 status: 200 OK code: 200 - duration: 82.713083ms + duration: 108.529624ms - id: 24 request: proto: HTTP/1.1 @@ -1198,8 +1198,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -1209,7 +1209,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -1218,9 +1218,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:48:02 GMT + - Mon, 24 Mar 2025 08:14:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1228,10 +1228,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 501d052d-0264-4cd5-92d6-e065eb8fb7e9 + - a98d69f2-4710-4282-a0e5-f87f61b065f3 status: 200 OK code: 200 - duration: 83.233834ms + duration: 107.16325ms - id: 25 request: proto: HTTP/1.1 @@ -1247,8 +1247,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -1258,7 +1258,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -1267,9 +1267,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:48:07 GMT + - Mon, 24 Mar 2025 08:14:59 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1277,10 +1277,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 946188c3-90eb-4325-a376-7236e8c1fcd4 + - e99f573b-9546-4740-a799-fd9a2198412b status: 200 OK code: 200 - duration: 63.782166ms + duration: 129.861951ms - id: 26 request: proto: HTTP/1.1 @@ -1296,8 +1296,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -1307,7 +1307,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -1316,9 +1316,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:48:12 GMT + - Mon, 24 Mar 2025 08:15:04 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1326,10 +1326,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0268e620-cc76-4572-9895-4baa2e3f867f + - 77a468f0-1aaf-42cd-97a6-0ff24555fb24 status: 200 OK code: 200 - duration: 66.092417ms + duration: 116.698494ms - id: 27 request: proto: HTTP/1.1 @@ -1345,8 +1345,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -1356,7 +1356,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -1365,9 +1365,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:48:17 GMT + - Mon, 24 Mar 2025 08:15:10 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1375,10 +1375,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 548d4db1-3b1d-416c-a5c1-569d1ecfc2aa + - e93d1c30-f858-4d22-82a0-8ad74ed58fe2 status: 200 OK code: 200 - duration: 61.393458ms + duration: 131.118435ms - id: 28 request: proto: HTTP/1.1 @@ -1394,8 +1394,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -1405,7 +1405,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -1414,9 +1414,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:48:22 GMT + - Mon, 24 Mar 2025 08:15:15 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1424,10 +1424,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 46295e3a-4edb-4624-a5b9-05fed73f14be + - 4fced4fe-c658-48eb-89aa-4a485dee29bf status: 200 OK code: 200 - duration: 137.301583ms + duration: 107.83316ms - id: 29 request: proto: HTTP/1.1 @@ -1443,8 +1443,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -1454,7 +1454,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -1463,9 +1463,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:48:28 GMT + - Mon, 24 Mar 2025 08:15:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1473,10 +1473,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1ad1a090-205d-4952-a34a-2c2df8caf38d + - 42a5746e-ea48-468d-84dc-08f6e3ae7130 status: 200 OK code: 200 - duration: 96.363208ms + duration: 102.74689ms - id: 30 request: proto: HTTP/1.1 @@ -1492,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -1503,7 +1503,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -1512,9 +1512,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:48:33 GMT + - Mon, 24 Mar 2025 08:15:25 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1522,10 +1522,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f5d65960-cb55-4e71-ab2c-925b948026ea + - 011fb7e8-794f-4300-9daa-1327cd8de134 status: 200 OK code: 200 - duration: 73.928417ms + duration: 100.208128ms - id: 31 request: proto: HTTP/1.1 @@ -1541,8 +1541,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -1552,7 +1552,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -1561,9 +1561,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:48:38 GMT + - Mon, 24 Mar 2025 08:15:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1571,10 +1571,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 21ad06a2-8669-4ea9-9e44-3ef9dcb99d62 + - 142a0f19-be94-4719-b6e9-01cd87a52f05 status: 200 OK code: 200 - duration: 87.210833ms + duration: 101.427111ms - id: 32 request: proto: HTTP/1.1 @@ -1590,8 +1590,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -1601,7 +1601,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -1610,9 +1610,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:48:43 GMT + - Mon, 24 Mar 2025 08:15:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1620,10 +1620,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 774f7994-8285-47ac-9a9e-673430e7204d + - db404ba5-e23f-47bf-9e30-6dd6d3ed9f7b status: 200 OK code: 200 - duration: 71.031ms + duration: 103.84714ms - id: 33 request: proto: HTTP/1.1 @@ -1639,8 +1639,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -1650,7 +1650,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -1659,9 +1659,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:48:48 GMT + - Mon, 24 Mar 2025 08:15:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1669,10 +1669,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 23bd2a5c-4c92-4acc-932a-094908a762c6 + - 2a04f3ab-b9b1-4473-89d3-7490159d9e8a status: 200 OK code: 200 - duration: 78.203792ms + duration: 110.396021ms - id: 34 request: proto: HTTP/1.1 @@ -1688,8 +1688,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -1699,7 +1699,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -1708,9 +1708,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:48:53 GMT + - Mon, 24 Mar 2025 08:15:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1718,10 +1718,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c102d708-54ec-4891-80eb-96164e3985b0 + - 6650f90a-da77-4a81-b714-aead67187b3b status: 200 OK code: 200 - duration: 72.634042ms + duration: 123.086708ms - id: 35 request: proto: HTTP/1.1 @@ -1737,8 +1737,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -1748,7 +1748,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -1757,9 +1757,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:48:58 GMT + - Mon, 24 Mar 2025 08:15:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1767,10 +1767,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b1a2342-c944-4990-ab44-30a79f40ae39 + - e2af9731-5cc7-4acd-9858-bd20ab16afb4 status: 200 OK code: 200 - duration: 80.537792ms + duration: 113.485795ms - id: 36 request: proto: HTTP/1.1 @@ -1786,8 +1786,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -1797,7 +1797,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -1806,9 +1806,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:49:03 GMT + - Mon, 24 Mar 2025 08:15:56 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1816,10 +1816,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cd6a56c0-12ea-4eec-89cf-e326103d9554 + - de02c02a-b602-4409-af97-6bdedcff6672 status: 200 OK code: 200 - duration: 77.859375ms + duration: 128.217998ms - id: 37 request: proto: HTTP/1.1 @@ -1835,8 +1835,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -1846,7 +1846,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -1855,9 +1855,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:49:08 GMT + - Mon, 24 Mar 2025 08:16:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1865,10 +1865,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 074f68e3-f7f7-4d28-b065-a94e41216156 + - 4cdd0c39-81b1-4c33-a4e1-34b19c6b0c41 status: 200 OK code: 200 - duration: 74.528042ms + duration: 113.853002ms - id: 38 request: proto: HTTP/1.1 @@ -1884,8 +1884,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -1895,7 +1895,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -1904,9 +1904,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:49:13 GMT + - Mon, 24 Mar 2025 08:16:06 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1914,10 +1914,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 59831691-5e0e-4c77-baeb-780f9463071a + - 7da0a212-38fd-4e21-8570-243ad3c13881 status: 200 OK code: 200 - duration: 68.28225ms + duration: 105.063422ms - id: 39 request: proto: HTTP/1.1 @@ -1933,8 +1933,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -1944,7 +1944,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -1953,9 +1953,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:49:18 GMT + - Mon, 24 Mar 2025 08:16:11 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1963,10 +1963,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 77e2b693-d771-41f2-95a7-6097ddf3bcae + - 252366c3-e9bc-4489-b3e4-df4f623134be status: 200 OK code: 200 - duration: 67.683292ms + duration: 125.511049ms - id: 40 request: proto: HTTP/1.1 @@ -1982,8 +1982,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -1993,7 +1993,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -2002,9 +2002,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:49:23 GMT + - Mon, 24 Mar 2025 08:16:16 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2012,10 +2012,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 198d0c26-f597-4bf2-8f76-5c28f3d84717 + - 2a63b839-c7f6-4a5f-9dde-dc4f9f3c0795 status: 200 OK code: 200 - duration: 77.7785ms + duration: 105.422816ms - id: 41 request: proto: HTTP/1.1 @@ -2031,8 +2031,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -2042,7 +2042,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -2051,9 +2051,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:49:29 GMT + - Mon, 24 Mar 2025 08:16:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2061,10 +2061,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bc2f7a7c-7f71-4f3c-990b-e59d2896afc2 + - 8d45938d-30e1-4ebb-92a4-634658c86769 status: 200 OK code: 200 - duration: 64.709417ms + duration: 100.490612ms - id: 42 request: proto: HTTP/1.1 @@ -2080,8 +2080,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -2091,7 +2091,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -2100,9 +2100,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:49:34 GMT + - Mon, 24 Mar 2025 08:16:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2110,10 +2110,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6b674cd9-f6b2-4cd0-b2da-bde4dc1ac179 + - fb735375-f236-4512-ae80-700d0f18ff1c status: 200 OK code: 200 - duration: 74.33375ms + duration: 117.198339ms - id: 43 request: proto: HTTP/1.1 @@ -2129,8 +2129,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -2140,7 +2140,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -2149,9 +2149,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:49:39 GMT + - Mon, 24 Mar 2025 08:16:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2159,10 +2159,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 63f69922-2b42-482a-9e27-413091843f2b + - 6e99999e-b3c6-43fd-9379-80c687ceca29 status: 200 OK code: 200 - duration: 70.918209ms + duration: 120.809728ms - id: 44 request: proto: HTTP/1.1 @@ -2178,8 +2178,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -2189,7 +2189,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -2198,9 +2198,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:49:44 GMT + - Mon, 24 Mar 2025 08:16:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2208,10 +2208,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2a055019-0b8b-4d88-a68f-672d7abe74c4 + - 9def65f0-9ede-4081-a05c-1a9516812630 status: 200 OK code: 200 - duration: 71.381042ms + duration: 127.980396ms - id: 45 request: proto: HTTP/1.1 @@ -2227,8 +2227,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -2238,7 +2238,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -2247,9 +2247,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:49:49 GMT + - Mon, 24 Mar 2025 08:16:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2257,10 +2257,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e68ee933-949d-49b6-9a44-ab5bc19c9de7 + - 81822c78-6876-4b7d-a431-78ac106ab60d status: 200 OK code: 200 - duration: 86.460459ms + duration: 120.056803ms - id: 46 request: proto: HTTP/1.1 @@ -2276,8 +2276,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -2287,7 +2287,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -2296,9 +2296,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:49:54 GMT + - Mon, 24 Mar 2025 08:16:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2306,10 +2306,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f6444970-ec18-47d6-b731-7d02958aea52 + - 9ced19aa-064d-43a2-95ed-15bbbb94bc2c status: 200 OK code: 200 - duration: 70.61825ms + duration: 110.566887ms - id: 47 request: proto: HTTP/1.1 @@ -2325,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -2336,7 +2336,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -2345,9 +2345,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:49:59 GMT + - Mon, 24 Mar 2025 08:16:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2355,10 +2355,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b042ea74-8589-41d7-be55-53e3ee57690c + - dd3e402e-1b99-4ea7-83a7-8813b394d427 status: 200 OK code: 200 - duration: 83.162667ms + duration: 119.123166ms - id: 48 request: proto: HTTP/1.1 @@ -2374,8 +2374,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -2385,7 +2385,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -2394,9 +2394,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:50:04 GMT + - Mon, 24 Mar 2025 08:16:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2404,10 +2404,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 893c1ff8-b30c-4e87-b9e2-787d4bb8cac7 + - 757606b6-e37e-42bf-8e30-1f1491388321 status: 200 OK code: 200 - duration: 76.205208ms + duration: 116.527262ms - id: 49 request: proto: HTTP/1.1 @@ -2423,8 +2423,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -2434,7 +2434,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -2443,9 +2443,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:50:09 GMT + - Mon, 24 Mar 2025 08:17:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2453,10 +2453,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f9691551-8c5e-47b1-89c7-544ef0129cfd + - c33a2c3a-b287-49bb-b4e0-7847a4049736 status: 200 OK code: 200 - duration: 80.830292ms + duration: 110.577959ms - id: 50 request: proto: HTTP/1.1 @@ -2472,8 +2472,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -2483,7 +2483,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -2492,9 +2492,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:50:14 GMT + - Mon, 24 Mar 2025 08:17:07 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2502,10 +2502,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e093e600-12c9-4a76-a9e1-f7519ece3eb5 + - a1611be0-f688-46d4-9085-a7db4707942e status: 200 OK code: 200 - duration: 68.566834ms + duration: 112.642406ms - id: 51 request: proto: HTTP/1.1 @@ -2521,8 +2521,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -2532,7 +2532,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -2541,9 +2541,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:50:19 GMT + - Mon, 24 Mar 2025 08:17:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2551,10 +2551,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0869564e-d6e4-49e4-96dd-aaf3e62db62a + - b4da2d7c-09d9-4bc1-a32c-748f69d0d292 status: 200 OK code: 200 - duration: 74.810833ms + duration: 104.357516ms - id: 52 request: proto: HTTP/1.1 @@ -2570,8 +2570,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -2581,7 +2581,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -2590,9 +2590,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:50:24 GMT + - Mon, 24 Mar 2025 08:17:17 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2600,10 +2600,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 861f3ff6-dadd-4016-b6e3-913c4c04e0f1 + - 1c40b501-f421-4f6f-9365-11b13de36cee status: 200 OK code: 200 - duration: 67.674459ms + duration: 118.016554ms - id: 53 request: proto: HTTP/1.1 @@ -2619,8 +2619,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -2630,7 +2630,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -2639,9 +2639,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:50:29 GMT + - Mon, 24 Mar 2025 08:17:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2649,10 +2649,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2960ebbb-3a32-4965-a59c-e4ce71b6e60b + - 4aace6a7-d752-490b-aede-a188f5902a3a status: 200 OK code: 200 - duration: 82.945583ms + duration: 101.717537ms - id: 54 request: proto: HTTP/1.1 @@ -2668,8 +2668,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -2679,7 +2679,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -2688,9 +2688,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:50:35 GMT + - Mon, 24 Mar 2025 08:17:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2698,10 +2698,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f1dae9c-fb12-4f7a-94a4-fc28033f1c5e + - f70e1d0a-4383-442d-bdd5-6922c378b253 status: 200 OK code: 200 - duration: 65.081292ms + duration: 99.788408ms - id: 55 request: proto: HTTP/1.1 @@ -2717,8 +2717,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -2728,7 +2728,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -2737,9 +2737,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:50:40 GMT + - Mon, 24 Mar 2025 08:17:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2747,10 +2747,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e6d9bbc3-b836-4913-a3f9-b7f4fcb1681c + - 39a9b3cc-e28e-4b7d-9176-bb6cb9d6e95c status: 200 OK code: 200 - duration: 70.504708ms + duration: 105.999427ms - id: 56 request: proto: HTTP/1.1 @@ -2766,8 +2766,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -2777,7 +2777,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -2786,9 +2786,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:50:45 GMT + - Mon, 24 Mar 2025 08:17:38 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2796,10 +2796,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 21d3457e-a503-49a6-ab05-dcea5400759f + - b6468c18-2e49-4271-95a6-bda74cca59ef status: 200 OK code: 200 - duration: 67.453833ms + duration: 104.442633ms - id: 57 request: proto: HTTP/1.1 @@ -2815,8 +2815,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -2826,7 +2826,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -2835,9 +2835,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:50:50 GMT + - Mon, 24 Mar 2025 08:17:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2845,10 +2845,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ae5462cf-37f3-4cc9-864c-69610fe2c558 + - 40b0067e-9520-4a62-84b0-851efcc0beb9 status: 200 OK code: 200 - duration: 91.613875ms + duration: 131.2332ms - id: 58 request: proto: HTTP/1.1 @@ -2864,8 +2864,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -2875,7 +2875,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -2884,9 +2884,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:50:55 GMT + - Mon, 24 Mar 2025 08:17:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2894,10 +2894,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 773f416a-343d-4201-98c2-7e4adf386110 + - a9de2868-cb25-451c-93a7-025ef1fd8f0f status: 200 OK code: 200 - duration: 149.954333ms + duration: 102.153824ms - id: 59 request: proto: HTTP/1.1 @@ -2913,8 +2913,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -2924,7 +2924,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -2933,9 +2933,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:51:00 GMT + - Mon, 24 Mar 2025 08:17:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2943,10 +2943,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dd1af6c9-32a5-4b0a-81d8-09462b4ae036 + - c7e76b9a-deba-4adb-8647-2b3ae0a27a83 status: 200 OK code: 200 - duration: 71.218625ms + duration: 114.641743ms - id: 60 request: proto: HTTP/1.1 @@ -2962,8 +2962,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -2973,7 +2973,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -2982,9 +2982,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:51:05 GMT + - Mon, 24 Mar 2025 08:17:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2992,10 +2992,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df0b7511-e877-4e95-b9ad-df48d08c166c + - 2165c9dc-6f69-40b7-9d8c-4f37aa4d529c status: 200 OK code: 200 - duration: 66.155458ms + duration: 97.950501ms - id: 61 request: proto: HTTP/1.1 @@ -3011,8 +3011,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -3022,7 +3022,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -3031,9 +3031,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:51:10 GMT + - Mon, 24 Mar 2025 08:18:03 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3041,10 +3041,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 53c3b94e-abca-4990-99e7-5024997c7da6 + - b3016dbc-8428-42c2-90d3-91ab378ed752 status: 200 OK code: 200 - duration: 86.985125ms + duration: 101.712093ms - id: 62 request: proto: HTTP/1.1 @@ -3060,8 +3060,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -3071,7 +3071,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -3080,9 +3080,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:51:15 GMT + - Mon, 24 Mar 2025 08:18:09 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3090,10 +3090,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fced5ba9-9ee4-4ca2-a94e-e6fa4121fbe1 + - 1c463ebe-6d89-4892-814a-a6276a4b5f1c status: 200 OK code: 200 - duration: 66.532542ms + duration: 99.901165ms - id: 63 request: proto: HTTP/1.1 @@ -3109,8 +3109,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -3120,7 +3120,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -3129,9 +3129,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:51:20 GMT + - Mon, 24 Mar 2025 08:18:14 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3139,10 +3139,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 09bbaee5-3ecc-4292-82a9-eeadf46f83b4 + - 37ed3bf1-9c9e-42ad-9ef3-28cf7db32838 status: 200 OK code: 200 - duration: 68.938584ms + duration: 126.800149ms - id: 64 request: proto: HTTP/1.1 @@ -3158,8 +3158,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -3169,7 +3169,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -3178,9 +3178,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:51:25 GMT + - Mon, 24 Mar 2025 08:18:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3188,10 +3188,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a56e23ee-d34a-4a75-b6be-d4171cc4afbc + - 72647dc0-b2b0-485a-ae19-59fac79523b9 status: 200 OK code: 200 - duration: 62.361542ms + duration: 115.281946ms - id: 65 request: proto: HTTP/1.1 @@ -3207,8 +3207,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -3218,7 +3218,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -3227,9 +3227,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:51:30 GMT + - Mon, 24 Mar 2025 08:18:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3237,10 +3237,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c9619a1-8ff6-4527-8250-0586044f83e2 + - 1cca6a17-46f4-4203-9197-e00d811916b8 status: 200 OK code: 200 - duration: 75.968291ms + duration: 102.237409ms - id: 66 request: proto: HTTP/1.1 @@ -3256,8 +3256,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -3267,7 +3267,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -3276,9 +3276,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:51:35 GMT + - Mon, 24 Mar 2025 08:18:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3286,10 +3286,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4992fd65-4fcd-4480-89e4-883e86495237 + - 76ac09ec-caea-4bb0-bbda-ccb7b20eff5f status: 200 OK code: 200 - duration: 52.518625ms + duration: 128.96508ms - id: 67 request: proto: HTTP/1.1 @@ -3305,8 +3305,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -3316,7 +3316,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -3325,9 +3325,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:51:41 GMT + - Mon, 24 Mar 2025 08:18:34 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3335,10 +3335,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 40445d6a-d1c0-4e2a-a4a3-6da329d891ad + - ef4a27fb-5dbf-442b-92e6-d9f65ad9dbb9 status: 200 OK code: 200 - duration: 70.303625ms + duration: 105.722993ms - id: 68 request: proto: HTTP/1.1 @@ -3354,8 +3354,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -3365,7 +3365,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -3374,9 +3374,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:51:46 GMT + - Mon, 24 Mar 2025 08:18:39 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3384,10 +3384,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9b6165b6-50b2-4819-b7c0-3b829314b299 + - 40fce52d-5312-4743-9871-829d59ad742f status: 200 OK code: 200 - duration: 79.489875ms + duration: 98.20641ms - id: 69 request: proto: HTTP/1.1 @@ -3403,8 +3403,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -3414,7 +3414,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -3423,9 +3423,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:51:51 GMT + - Mon, 24 Mar 2025 08:18:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3433,10 +3433,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f1377d17-c8c3-42f0-b168-1e363ec3c786 + - 700680c4-2975-4810-a59a-505208e6f32b status: 200 OK code: 200 - duration: 68.75075ms + duration: 105.84129ms - id: 70 request: proto: HTTP/1.1 @@ -3452,8 +3452,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -3463,7 +3463,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -3472,9 +3472,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:51:56 GMT + - Mon, 24 Mar 2025 08:18:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3482,10 +3482,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 017958e3-6d6b-4ad9-b1b3-acdd89554d6b + - 96a9febe-da95-4385-b2ec-e0e7b9c9901b status: 200 OK code: 200 - duration: 72.798166ms + duration: 107.657688ms - id: 71 request: proto: HTTP/1.1 @@ -3501,8 +3501,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -3512,7 +3512,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -3521,9 +3521,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:52:01 GMT + - Mon, 24 Mar 2025 08:18:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3531,10 +3531,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b8e03451-119d-4b8c-9941-c5c8a8fd1c76 + - 58795dbb-ecab-4b52-abc1-bd747362a5d4 status: 200 OK code: 200 - duration: 77.932958ms + duration: 102.911369ms - id: 72 request: proto: HTTP/1.1 @@ -3550,8 +3550,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -3561,7 +3561,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -3570,9 +3570,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:52:06 GMT + - Mon, 24 Mar 2025 08:19:00 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3580,10 +3580,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ccd2b417-8565-4e32-9093-6ede6c00f760 + - 7cd50bb6-010c-4c5e-8ff7-3eab827c0b1c status: 200 OK code: 200 - duration: 62.570875ms + duration: 121.032758ms - id: 73 request: proto: HTTP/1.1 @@ -3599,8 +3599,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -3610,7 +3610,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -3619,9 +3619,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:52:11 GMT + - Mon, 24 Mar 2025 08:19:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3629,10 +3629,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d52f323a-4ee5-499e-94c5-2e2440645475 + - 8226f16c-b684-4897-b27a-4eadf2a50d1d status: 200 OK code: 200 - duration: 77.735042ms + duration: 374.512801ms - id: 74 request: proto: HTTP/1.1 @@ -3648,8 +3648,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -3659,7 +3659,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -3668,9 +3668,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:52:16 GMT + - Mon, 24 Mar 2025 08:19:10 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3678,10 +3678,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4873ecee-4d02-434f-8568-34b1581b7162 + - 6ce85dee-ef61-4953-86bc-b98dac81237a status: 200 OK code: 200 - duration: 66.718625ms + duration: 173.328265ms - id: 75 request: proto: HTTP/1.1 @@ -3697,8 +3697,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -3708,7 +3708,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -3717,9 +3717,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:52:21 GMT + - Mon, 24 Mar 2025 08:19:15 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3727,10 +3727,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b83a51d-4702-4d8d-8b48-6ef12ec1f127 + - 2889712f-b836-4b57-bf17-c67470411abd status: 200 OK code: 200 - duration: 56.942292ms + duration: 104.818446ms - id: 76 request: proto: HTTP/1.1 @@ -3746,8 +3746,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -3757,7 +3757,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -3766,9 +3766,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:52:26 GMT + - Mon, 24 Mar 2025 08:19:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3776,10 +3776,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f2076fc0-a714-4528-bb77-66125e3e944e + - 28738506-731f-495a-ba47-16c64e304760 status: 200 OK code: 200 - duration: 76.75175ms + duration: 606.407562ms - id: 77 request: proto: HTTP/1.1 @@ -3795,8 +3795,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -3806,7 +3806,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -3815,9 +3815,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:52:31 GMT + - Mon, 24 Mar 2025 08:19:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3825,10 +3825,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d29d8910-18ad-4320-92fa-81b26c9f5a1d + - af4d91b2-4fc6-48db-ab51-3dad8dc03f0a status: 200 OK code: 200 - duration: 72.62975ms + duration: 101.02943ms - id: 78 request: proto: HTTP/1.1 @@ -3844,8 +3844,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -3855,7 +3855,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -3864,9 +3864,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:52:36 GMT + - Mon, 24 Mar 2025 08:19:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3874,10 +3874,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f2749dbe-ea85-4935-8742-0733921d41e0 + - 0d46e305-b03b-4522-a19b-345e47d67cd6 status: 200 OK code: 200 - duration: 58.286459ms + duration: 93.618368ms - id: 79 request: proto: HTTP/1.1 @@ -3893,8 +3893,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -3904,7 +3904,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -3913,9 +3913,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:52:41 GMT + - Mon, 24 Mar 2025 08:19:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3923,10 +3923,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bbd6608e-f39f-40fc-a6c9-710f0dc76eff + - 590ef66b-0a3c-4e52-93c2-52b064f3cabe status: 200 OK code: 200 - duration: 72.494041ms + duration: 103.875947ms - id: 80 request: proto: HTTP/1.1 @@ -3942,8 +3942,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -3953,7 +3953,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -3962,9 +3962,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:52:47 GMT + - Mon, 24 Mar 2025 08:19:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3972,10 +3972,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 547bac4b-1727-4ec4-b1e4-469be3ee51ef + - 3464e35e-4609-4f3e-867f-47b98e6d32e0 status: 200 OK code: 200 - duration: 83.194291ms + duration: 110.481064ms - id: 81 request: proto: HTTP/1.1 @@ -3991,8 +3991,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -4002,7 +4002,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -4011,9 +4011,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:52:52 GMT + - Mon, 24 Mar 2025 08:19:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4021,10 +4021,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f598143f-6939-4e6a-9101-b558ad18685e + - 82582e7d-cd9f-4526-8ac9-7b87df828f0e status: 200 OK code: 200 - duration: 68.832792ms + duration: 100.818076ms - id: 82 request: proto: HTTP/1.1 @@ -4040,8 +4040,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -4051,7 +4051,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -4060,9 +4060,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:52:57 GMT + - Mon, 24 Mar 2025 08:19:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4070,10 +4070,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 15db5853-65b2-4a87-9a60-4abf4f7991ba + - b446593b-08ab-40e3-b855-1cc321d4d87a status: 200 OK code: 200 - duration: 73.690584ms + duration: 117.49529ms - id: 83 request: proto: HTTP/1.1 @@ -4089,8 +4089,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -4100,7 +4100,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -4109,9 +4109,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:53:02 GMT + - Mon, 24 Mar 2025 08:19:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4119,10 +4119,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6093a2f0-ab42-4624-a1e3-6e69c338fac6 + - 89ea2345-a403-4a13-b6de-7c9b7d6aeb7f status: 200 OK code: 200 - duration: 84.581958ms + duration: 109.925812ms - id: 84 request: proto: HTTP/1.1 @@ -4138,8 +4138,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -4149,7 +4149,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:13:47.980909Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -4158,9 +4158,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:53:07 GMT + - Mon, 24 Mar 2025 08:20:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4168,10 +4168,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7abd6970-242b-4d45-a3e3-c432e214837b + - 4a38eade-2be9-47d3-8385-a1998dfdabc9 status: 200 OK code: 200 - duration: 77.082375ms + duration: 106.541772ms - id: 85 request: proto: HTTP/1.1 @@ -4187,8 +4187,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -4196,20 +4196,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 608 + content_length: 606 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:46:56.127375Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"ready","tags":[],"updated_at":"2025-03-24T08:20:06.970341Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - - "608" + - "606" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:53:12 GMT + - Mon, 24 Mar 2025 08:20:07 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4217,10 +4217,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c0e596f0-80ef-4b5f-8c62-72f2eb01f890 + - 98613698-7aeb-4ca5-a24e-1efed19b9638 status: 200 OK code: 200 - duration: 64.782209ms + duration: 128.377301ms - id: 86 request: proto: HTTP/1.1 @@ -4236,8 +4236,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/clusters/2fd5d612-425f-4b4b-ae74-16eda80368e6 method: GET response: proto: HTTP/2.0 @@ -4245,20 +4245,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 606 + content_length: 1498 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"ready","tags":[],"updated_at":"2025-01-28T10:53:17.240637Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"acl_available":true,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2fd5d612-425f-4b4b-ae74-16eda80368e6.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-03-24T08:13:42.105610Z","created_at":"2025-03-24T08:13:42.105600Z","description":"","dns_wildcard":"*.2fd5d612-425f-4b4b-ae74-16eda80368e6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"iam_nodes_group_id":"2ad98fd4-b1c1-438c-971f-d6152cfe2fbe","id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_id":"2177e306-fcad-4127-ba67-ba1abe0d58cb","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","sbs_csi_enabled":true,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2025-03-24T08:15:09.941732Z","upgrade_available":false,"version":"1.32.3"}' headers: Content-Length: - - "606" + - "1498" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:53:17 GMT + - Mon, 24 Mar 2025 08:20:07 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4266,10 +4266,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 67a375a0-7868-4e4d-ad7a-4a8834212b37 + - 93a7ac80-5076-429c-ae54-71642fabf31e status: 200 OK code: 200 - duration: 914.780166ms + duration: 102.397983ms - id: 87 request: proto: HTTP/1.1 @@ -4285,8 +4285,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/k8s/v1/regions/fr-par/clusters/2174cb82-2a48-41ac-94f0-68305bb9a28a + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -4294,20 +4294,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1439 + content_length: 606 uncompressed: false - body: '{"acl_available":false,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2174cb82-2a48-41ac-94f0-68305bb9a28a.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-01-28T10:46:50.481031Z","created_at":"2025-01-28T10:46:50.481019Z","description":"","dns_wildcard":"*.2174cb82-2a48-41ac-94f0-68305bb9a28a.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sbs_csi_enabled":true,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2025-01-28T10:49:21.590178Z","upgrade_available":false,"version":"1.31.2"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"ready","tags":[],"updated_at":"2025-03-24T08:20:06.970341Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - - "1439" + - "606" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:53:18 GMT + - Mon, 24 Mar 2025 08:20:07 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4315,10 +4315,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 39711b09-c4e7-4fd6-8b4d-3a25ceeecb4d + - 28b9641c-6d28-4b03-824e-c5d37812bbbf status: 200 OK code: 200 - duration: 70.886542ms + duration: 109.694237ms - id: 88 request: proto: HTTP/1.1 @@ -4334,8 +4334,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/clusters/2fd5d612-425f-4b4b-ae74-16eda80368e6/nodes?order_by=created_at_asc&page=1&pool_id=f0556a65-6164-4778-b0b2-2039c6164319&status=unknown method: GET response: proto: HTTP/2.0 @@ -4343,20 +4343,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 606 + content_length: 640 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"ready","tags":[],"updated_at":"2025-01-28T10:53:17.240637Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"nodes":[{"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2025-03-24T08:15:12.585532Z","error_message":"","id":"e8a66a4f-fd00-4c5d-9087-b13c53f889a9","name":"scw-test-k8s-public-i-test-k8s-public-i-e8a66a","pool_id":"f0556a65-6164-4778-b0b2-2039c6164319","provider_id":"scaleway://instance/fr-par-1/6f5502f4-0f68-4158-83bc-3a3e06c02b2c","public_ip_v4":"51.158.118.212","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2025-03-24T08:20:06.962240Z"}],"total_count":1}' headers: Content-Length: - - "606" + - "640" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:53:18 GMT + - Mon, 24 Mar 2025 08:20:07 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4364,10 +4364,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bd73c318-02d6-45bc-87ac-fd88c71a5221 + - 8fd2c5a0-ff13-4ae5-84da-700d2332167e status: 200 OK code: 200 - duration: 90.703792ms + duration: 114.151343ms - id: 89 request: proto: HTTP/1.1 @@ -4383,8 +4383,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/k8s/v1/regions/fr-par/clusters/2174cb82-2a48-41ac-94f0-68305bb9a28a/nodes?order_by=created_at_asc&page=1&pool_id=37cfc820-5fcd-44bd-88f8-8217f75013a0&status=unknown + - 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/k8s/v1/regions/fr-par/clusters/2fd5d612-425f-4b4b-ae74-16eda80368e6 method: GET response: proto: HTTP/2.0 @@ -4392,20 +4392,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 639 + content_length: 1498 uncompressed: false - body: '{"nodes":[{"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2025-01-28T10:49:57.595147Z","error_message":"","id":"3dea235f-46a4-47ea-a974-233e8b583838","name":"scw-test-k8s-public-i-test-k8s-public-i-3dea23","pool_id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","provider_id":"scaleway://instance/fr-par-1/4e6dfdf1-8a9c-49f8-bd52-ba6efc28cd6a","public_ip_v4":"51.15.236.240","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2025-01-28T10:53:17.230057Z"}],"total_count":1}' + body: '{"acl_available":true,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2fd5d612-425f-4b4b-ae74-16eda80368e6.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-03-24T08:13:42.105610Z","created_at":"2025-03-24T08:13:42.105600Z","description":"","dns_wildcard":"*.2fd5d612-425f-4b4b-ae74-16eda80368e6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"iam_nodes_group_id":"2ad98fd4-b1c1-438c-971f-d6152cfe2fbe","id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_id":"2177e306-fcad-4127-ba67-ba1abe0d58cb","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","sbs_csi_enabled":true,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2025-03-24T08:15:09.941732Z","upgrade_available":false,"version":"1.32.3"}' headers: Content-Length: - - "639" + - "1498" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:53:18 GMT + - Mon, 24 Mar 2025 08:20:08 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4413,10 +4413,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ed3121a-f665-48a4-8606-264b02e73b75 + - e48c2b4a-3ac7-47b2-aed7-f8dfc059c53b status: 200 OK code: 200 - duration: 70.158791ms + duration: 105.346931ms - id: 90 request: proto: HTTP/1.1 @@ -4432,8 +4432,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/k8s/v1/regions/fr-par/clusters/2174cb82-2a48-41ac-94f0-68305bb9a28a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2177e306-fcad-4127-ba67-ba1abe0d58cb method: GET response: proto: HTTP/2.0 @@ -4441,20 +4441,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1439 + content_length: 1022 uncompressed: false - body: '{"acl_available":false,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2174cb82-2a48-41ac-94f0-68305bb9a28a.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-01-28T10:46:50.481031Z","created_at":"2025-01-28T10:46:50.481019Z","description":"","dns_wildcard":"*.2174cb82-2a48-41ac-94f0-68305bb9a28a.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sbs_csi_enabled":true,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2025-01-28T10:49:21.590178Z","upgrade_available":false,"version":"1.31.2"}' + body: '{"created_at":"2025-03-24T08:13:40.115789Z","dhcp_enabled":true,"id":"2177e306-fcad-4127-ba67-ba1abe0d58cb","name":"test-k8s-public-ip","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-03-24T08:13:40.115789Z","id":"75b9567d-37a3-4569-8d17-afedfcc4befa","private_network_id":"2177e306-fcad-4127-ba67-ba1abe0d58cb","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.56.0/22","updated_at":"2025-03-24T08:13:40.115789Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-03-24T08:13:40.115789Z","id":"866214a1-7134-45c3-9414-b914c8766708","private_network_id":"2177e306-fcad-4127-ba67-ba1abe0d58cb","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:ec3b::/64","updated_at":"2025-03-24T08:13:40.115789Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-03-24T08:13:40.115789Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1439" + - "1022" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:53:18 GMT + - Mon, 24 Mar 2025 08:20:08 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4462,10 +4462,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1df71719-837f-42f9-b8df-54ad6cecd3dd + - be067a22-8d2a-43be-9888-1733ac238faf status: 200 OK code: 200 - duration: 203.70675ms + duration: 111.882182ms - id: 91 request: proto: HTTP/1.1 @@ -4481,8 +4481,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/8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -4490,20 +4490,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1021 + content_length: 606 uncompressed: false - body: '{"created_at":"2025-01-28T10:46:49.038912Z","dhcp_enabled":true,"id":"8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d","name":"test-k8s-public-ip","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:46:49.038912Z","id":"3db6da28-f723-46f3-9bb4-782831943e11","private_network_id":"8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.0.0/22","updated_at":"2025-01-28T10:46:49.038912Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-01-28T10:46:49.038912Z","id":"02dcd8f7-49ca-46a9-a94e-3dc3859187f9","private_network_id":"8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:faec::/64","updated_at":"2025-01-28T10:46:49.038912Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-01-28T10:46:49.038912Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"ready","tags":[],"updated_at":"2025-03-24T08:20:06.970341Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - - "1021" + - "606" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:53:18 GMT + - Mon, 24 Mar 2025 08:20:08 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4511,10 +4511,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b4b1d749-5ce4-4401-84c9-f3d56d671a3c + - 7b4dd2ed-d252-4ded-93fa-bf2356a3d57e status: 200 OK code: 200 - duration: 33.023791ms + duration: 101.371046ms - id: 92 request: proto: HTTP/1.1 @@ -4530,8 +4530,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/clusters/2fd5d612-425f-4b4b-ae74-16eda80368e6/nodes?order_by=created_at_asc&pool_id=f0556a65-6164-4778-b0b2-2039c6164319&status=unknown method: GET response: proto: HTTP/2.0 @@ -4539,20 +4539,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 606 + content_length: 640 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"ready","tags":[],"updated_at":"2025-01-28T10:53:17.240637Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"nodes":[{"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2025-03-24T08:15:12.585532Z","error_message":"","id":"e8a66a4f-fd00-4c5d-9087-b13c53f889a9","name":"scw-test-k8s-public-i-test-k8s-public-i-e8a66a","pool_id":"f0556a65-6164-4778-b0b2-2039c6164319","provider_id":"scaleway://instance/fr-par-1/6f5502f4-0f68-4158-83bc-3a3e06c02b2c","public_ip_v4":"51.158.118.212","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2025-03-24T08:20:06.962240Z"}],"total_count":1}' headers: Content-Length: - - "606" + - "640" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:53:19 GMT + - Mon, 24 Mar 2025 08:20:08 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4560,10 +4560,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 823ab9e6-7efb-49c2-ac71-246cc596fa2f + - 1062fe86-7465-456a-a2a6-686172dc4abf status: 200 OK code: 200 - duration: 107.158125ms + duration: 101.795326ms - id: 93 request: proto: HTTP/1.1 @@ -4579,8 +4579,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/k8s/v1/regions/fr-par/clusters/2174cb82-2a48-41ac-94f0-68305bb9a28a/nodes?order_by=created_at_asc&pool_id=37cfc820-5fcd-44bd-88f8-8217f75013a0&status=unknown + - 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/instance/v1/zones/fr-par-1/servers/6f5502f4-0f68-4158-83bc-3a3e06c02b2c method: GET response: proto: HTTP/2.0 @@ -4588,20 +4588,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 639 + content_length: 3733 uncompressed: false - body: '{"nodes":[{"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2025-01-28T10:49:57.595147Z","error_message":"","id":"3dea235f-46a4-47ea-a974-233e8b583838","name":"scw-test-k8s-public-i-test-k8s-public-i-3dea23","pool_id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","provider_id":"scaleway://instance/fr-par-1/4e6dfdf1-8a9c-49f8-bd52-ba6efc28cd6a","public_ip_v4":"51.15.236.240","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2025-01-28T10:53:17.230057Z"}],"total_count":1}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-03-24T08:15:14.749349+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"filesystems":[],"hostname":"scw-test-k8s-public-i-test-k8s-public-i-e8a66a","id":"6f5502f4-0f68-4158-83bc-3a3e06c02b2c","image":{"arch":"x86_64","creation_date":"2024-12-13T14:25:42.929071+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"f587416b-3d51-4582-808f-dbbaa617a61a","modification_date":"2024-12-13T14:25:42.929071+00:00","name":"k8s_base_node_2024-12-13_sbs","organization":"a6c1e019-9bc0-49c8-81c6-1d7e6d25426d","project":"a6c1e019-9bc0-49c8-81c6-1d7e6d25426d","public":true,"root_volume":{"id":"164c4014-2874-481f-b194-ce63ab76f0da","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"33","hypervisor_id":"601","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:9e:89:45","maintenances":[],"modification_date":"2025-03-24T08:15:20.944702+00:00","name":"scw-test-k8s-public-i-test-k8s-public-i-e8a66a","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-03-24T08:15:16.342657+00:00","id":"4f617585-14ff-4891-af43-65ddec762b00","ipam_ip_ids":["6fb09529-3f62-4f34-8080-3222166ec032","57f509d3-8403-4d44-80a6-d2bb83140d82"],"mac_address":"02:00:00:1b:07:1e","modification_date":"2025-03-24T08:15:16.476827+00:00","private_network_id":"2177e306-fcad-4127-ba67-ba1abe0d58cb","server_id":"6f5502f4-0f68-4158-83bc-3a3e06c02b2c","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":{"address":"51.158.118.212","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"77c55ccf-e1dd-4052-ace3-32be2de61ffd","ipam_id":"0b6f884f-11d3-47b3-9f1f-4a9682a56fce","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":["kapsule=2fd5d612-425f-4b4b-ae74-16eda80368e6","node-name=scw-test-k8s-public-i-test-k8s-public-i-e8a66a"]},"public_ips":[{"address":"51.158.118.212","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"77c55ccf-e1dd-4052-ace3-32be2de61ffd","ipam_id":"0b6f884f-11d3-47b3-9f1f-4a9682a56fce","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":["kapsule=2fd5d612-425f-4b4b-ae74-16eda80368e6","node-name=scw-test-k8s-public-i-test-k8s-public-i-e8a66a"]},{"address":"2001:bc8:710:2859:dc00:ff:fe9e:8945","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fe9e:8946","id":"b0c299e8-80ec-4ffc-b5b7-3c6a43f74d7a","ipam_id":"c970cbdd-17e0-47b7-a86c-585fbbc24b8d","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":["kapsule=2fd5d612-425f-4b4b-ae74-16eda80368e6","node-name=scw-test-k8s-public-i-test-k8s-public-i-e8a66a"]}],"routed_ip_enabled":true,"security_group":{"id":"5d95afbd-06ce-4334-b477-ee883e89524b","name":"kubernetes 2fd5d612-425f-4b4b-ae74-16eda80368e6"},"state":"running","state_detail":"booted","tags":["kapsule=2fd5d612-425f-4b4b-ae74-16eda80368e6","pool=f0556a65-6164-4778-b0b2-2039c6164319","pool-name=test-k8s-public-ip","runtime=containerd","managed=true","node=e8a66a4f-fd00-4c5d-9087-b13c53f889a9"],"volumes":{"0":{"boot":true,"id":"d680a2df-2d58-4502-9ec6-032865905c83","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "639" + - "3733" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:53:19 GMT + - Mon, 24 Mar 2025 08:20:08 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4609,10 +4609,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1cdaba0c-107b-44ac-a10c-90ed68aa4645 + - e82386c5-341d-4fd2-bf5a-c2d2f8c737b8 status: 200 OK code: 200 - duration: 81.686208ms + duration: 401.20316ms - id: 94 request: proto: HTTP/1.1 @@ -4628,8 +4628,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/instance/v1/zones/fr-par-1/servers/4e6dfdf1-8a9c-49f8-bd52-ba6efc28cd6a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2177e306-fcad-4127-ba67-ba1abe0d58cb method: GET response: proto: HTTP/2.0 @@ -4637,20 +4637,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3710 + content_length: 1022 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-01-28T10:49:59.299513+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scw-test-k8s-public-i-test-k8s-public-i-3dea23","id":"4e6dfdf1-8a9c-49f8-bd52-ba6efc28cd6a","image":{"arch":"x86_64","creation_date":"2024-12-13T14:25:42.929071+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"f587416b-3d51-4582-808f-dbbaa617a61a","modification_date":"2024-12-13T14:25:42.929071+00:00","name":"k8s_base_node_2024-12-13_sbs","organization":"a6c1e019-9bc0-49c8-81c6-1d7e6d25426d","project":"a6c1e019-9bc0-49c8-81c6-1d7e6d25426d","public":true,"root_volume":{"id":"164c4014-2874-481f-b194-ce63ab76f0da","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"28","hypervisor_id":"801","node_id":"28","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:90:37:b9","maintenances":[],"modification_date":"2025-01-28T10:50:07.796715+00:00","name":"scw-test-k8s-public-i-test-k8s-public-i-3dea23","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-01-28T10:50:01.515365+00:00","id":"b4906567-a66e-40bd-8707-5a57d6351eb7","ipam_ip_ids":["61cf0e79-f081-4c4c-a7dc-2f9f73b30192","28ac92d6-0579-4116-b5ef-a2d07402e512"],"mac_address":"02:00:00:11:98:17","modification_date":"2025-01-28T10:50:01.771842+00:00","private_network_id":"8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d","server_id":"4e6dfdf1-8a9c-49f8-bd52-ba6efc28cd6a","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.236.240","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"8680a1b8-bad7-4e50-b02a-cdc34cd058e2","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":["kapsule=2174cb82-2a48-41ac-94f0-68305bb9a28a","node-name=scw-test-k8s-public-i-test-k8s-public-i-3dea23"]},"public_ips":[{"address":"51.15.236.240","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"8680a1b8-bad7-4e50-b02a-cdc34cd058e2","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":["kapsule=2174cb82-2a48-41ac-94f0-68305bb9a28a","node-name=scw-test-k8s-public-i-test-k8s-public-i-3dea23"]},{"address":"2001:bc8:710:11:dc00:ff:fe90:37b9","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fe90:37ba","id":"20c09e4c-acb5-4e87-8e09-18000ce63c69","ipam_id":"eecad1c3-4f41-4089-b9fc-6873ad7f03ea","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":["kapsule=2174cb82-2a48-41ac-94f0-68305bb9a28a","node-name=scw-test-k8s-public-i-test-k8s-public-i-3dea23"]}],"routed_ip_enabled":true,"security_group":{"id":"3a97a5d7-420e-4eea-b29e-53f154037db5","name":"kubernetes 2174cb82-2a48-41ac-94f0-68305bb9a28a"},"state":"running","state_detail":"booted","tags":["kapsule=2174cb82-2a48-41ac-94f0-68305bb9a28a","pool=37cfc820-5fcd-44bd-88f8-8217f75013a0","pool-name=test-k8s-public-ip","runtime=containerd","managed=true","node=3dea235f-46a4-47ea-a974-233e8b583838"],"volumes":{"0":{"boot":true,"id":"55e529e5-8d64-4cbd-b06f-8892d721b886","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-03-24T08:13:40.115789Z","dhcp_enabled":true,"id":"2177e306-fcad-4127-ba67-ba1abe0d58cb","name":"test-k8s-public-ip","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-03-24T08:13:40.115789Z","id":"75b9567d-37a3-4569-8d17-afedfcc4befa","private_network_id":"2177e306-fcad-4127-ba67-ba1abe0d58cb","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.56.0/22","updated_at":"2025-03-24T08:13:40.115789Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-03-24T08:13:40.115789Z","id":"866214a1-7134-45c3-9414-b914c8766708","private_network_id":"2177e306-fcad-4127-ba67-ba1abe0d58cb","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:ec3b::/64","updated_at":"2025-03-24T08:13:40.115789Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-03-24T08:13:40.115789Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "3710" + - "1022" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:53:19 GMT + - Mon, 24 Mar 2025 08:20:09 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4658,10 +4658,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 265bd731-26d0-49c1-9d9e-b1ecf971d8e8 + - 83172940-4fb3-4916-b647-62705a117dc1 status: 200 OK code: 200 - duration: 155.321833ms + duration: 111.807173ms - id: 95 request: proto: HTTP/1.1 @@ -4677,8 +4677,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/8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d + - 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/k8s/v1/regions/fr-par/clusters/2fd5d612-425f-4b4b-ae74-16eda80368e6 method: GET response: proto: HTTP/2.0 @@ -4686,20 +4686,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1021 + content_length: 1498 uncompressed: false - body: '{"created_at":"2025-01-28T10:46:49.038912Z","dhcp_enabled":true,"id":"8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d","name":"test-k8s-public-ip","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:46:49.038912Z","id":"3db6da28-f723-46f3-9bb4-782831943e11","private_network_id":"8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.0.0/22","updated_at":"2025-01-28T10:46:49.038912Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-01-28T10:46:49.038912Z","id":"02dcd8f7-49ca-46a9-a94e-3dc3859187f9","private_network_id":"8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:faec::/64","updated_at":"2025-01-28T10:46:49.038912Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-01-28T10:46:49.038912Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"acl_available":true,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2fd5d612-425f-4b4b-ae74-16eda80368e6.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-03-24T08:13:42.105610Z","created_at":"2025-03-24T08:13:42.105600Z","description":"","dns_wildcard":"*.2fd5d612-425f-4b4b-ae74-16eda80368e6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"iam_nodes_group_id":"2ad98fd4-b1c1-438c-971f-d6152cfe2fbe","id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_id":"2177e306-fcad-4127-ba67-ba1abe0d58cb","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","sbs_csi_enabled":true,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2025-03-24T08:15:09.941732Z","upgrade_available":false,"version":"1.32.3"}' headers: Content-Length: - - "1021" + - "1498" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:53:20 GMT + - Mon, 24 Mar 2025 08:20:09 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4707,10 +4707,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e5825a16-dd48-491b-8548-3c272d59ec98 + - 6d28534d-bc5f-46e8-adb3-d5352364540f status: 200 OK code: 200 - duration: 77.330708ms + duration: 99.622659ms - id: 96 request: proto: HTTP/1.1 @@ -4726,8 +4726,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/k8s/v1/regions/fr-par/clusters/2174cb82-2a48-41ac-94f0-68305bb9a28a + - 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/k8s/v1/regions/fr-par/clusters/2fd5d612-425f-4b4b-ae74-16eda80368e6/kubeconfig method: GET response: proto: HTTP/2.0 @@ -4735,20 +4735,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1439 + content_length: 2636 uncompressed: false - body: '{"acl_available":false,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2174cb82-2a48-41ac-94f0-68305bb9a28a.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-01-28T10:46:50.481031Z","created_at":"2025-01-28T10:46:50.481019Z","description":"","dns_wildcard":"*.2174cb82-2a48-41ac-94f0-68305bb9a28a.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sbs_csi_enabled":true,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2025-01-28T10:49:21.590178Z","upgrade_available":false,"version":"1.31.2"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtazhzLXB1YmxpYy1pcCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSk1VMUVUWGxOZWtFMFRWUk5NRTB4YjFoRVZFMHhUVVJOZVUxNlFUUk5WRTB3VFRGdmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUVVYxQ2xNNGRUTlpRbTFPTWsxR1VWWnFXVTFJUnpkRFdWbGFjalJFVlZCNU5FOVFkR1ZDVFhob1pIY3dhREZOUkdsRU9YY3hjREEyUkVwaWFXcHlZVGh2Y0VnS2RuRmFNbE0zV1hJclVtZG9ZblZ1T1hkTFpVcHVjRE5QU1ZaWWVtMXRTR2hKVkhwVE5XVjBlRlozV25oNk5HTlphR1F6Y1VSdFJXRlNSbXM0VG1aTFpBcEZkWE4wWVdKNmIwdEdjVVFyY3psR0wxQkZiRVpzZGt0RmNUZ3diWFZUVjBSdFRFcGhVR3BJWm5oVVYyNVdNV3RwYWtaeWQwdzJla3RsVTFBd2REbHBDbUp3ZEN0c2FWaERXRGhOVlVaNk9YcGhUMmc1YUhOTk5ISkVObXBwWkVsRWRWcDJjMHh6YlZacFR5ODFZaXN3ZFdSeVpXOTJURzUzVmpGcFNHNURVeklLUjBSQmVqSlhUVk55VFRGRFMydGpaVzVWTW5Zd2VuQjNjMlZPY0ROTk1HczBPSGhsVDNZMlNsRkxhRmd2YTA1b2F6RnFNSGxNU1ZSRVp6TlhlVzVHVFFwUE5VUnBkVWRpVlVWMFZIRkJlVmQ2V0hGelEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaT1ZISlRRWFJJVjNocmNreGtaVFZ3T1dOdWNVOWxXVzAxUzFCTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ05XZGhla014TVc1SlYwSldWVWxXUVhWM1YxbFZPVUpJUlRKM1dXcEZXbW8wYjA5c1ZHbHdka0kxYTJ4dVdGTlVWUXB5VERneFVrczJWaTk2TDI1MGVrSk9VM2RoWnpCdVZUQndkbEZDV0d4MlJXTmxTRTR3Y2t4aWJYQnJaSEp3VEZvNFNtSnRZM0JsZGtReVFraGFWelV4Q2pWamMxWjNMMmhKZFVSdFNEZFRaa0ZPYUc5QlJ6bDZlVmx5YjFJeFNVcE1PR2Q1WnpCRFYzcHBXWGtyWVhsbGVEUjBka3RzVld4RWFUbDZUa3NyVldJS1pGSlRLMHN6TWxGRVpHRkVjMkpoVW5NNFVYcG9RMUJhYm1ONVowNW1hek56VUZoUmMyaE5hekUyZWxoMk9ETXliWHB3T1dKeFdGTlNMelo2YVZCQlVBcFdja2xCTDI1bWVHcG5Sa3NyUWpKNWRFeDRjV04xZFdoSlJ5dDVVbVJ5YlhoQldXcFZUa04yVkhwNFdtVXlibWhZU0ZsT0sxQnRaa2RYT1hSaFZXSTNDbEpCYVdkVmIyTjFOVXB2WkZGUVlXUnVabTU0Y25ZNFVqWnJaVU5KTlRseFoxaFBXUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vMmZkNWQ2MTItNDI1Zi00YjRiLWFlNzQtMTZlZGE4MDM2OGU2LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtazhzLXB1YmxpYy1pcAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1rOHMtcHVibGljLWlwIgogICAgdXNlcjogdGVzdC1rOHMtcHVibGljLWlwLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1rOHMtcHVibGljLWlwCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1rOHMtcHVibGljLWlwLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiB4TmN5UVdkZThMSkxCRW1yUURFYnZUQTVZTEdBejlWT2JKSU14NGlLMW9zbXJ6dGw0U3Y1bzdDYw==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "1439" + - "2636" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:53:20 GMT + - Mon, 24 Mar 2025 08:20:09 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4756,10 +4756,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 686e344d-39f5-4bac-9ff9-b5367ae581af + - 2a9473ce-a23d-4c07-9a81-b1e4462ff19b status: 200 OK code: 200 - duration: 76.221125ms + duration: 127.825474ms - id: 97 request: proto: HTTP/1.1 @@ -4775,8 +4775,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/k8s/v1/regions/fr-par/clusters/2174cb82-2a48-41ac-94f0-68305bb9a28a/kubeconfig + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -4784,20 +4784,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2636 + content_length: 606 uncompressed: false - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtazhzLXB1YmxpYy1pcCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSk1VMUVSWGxPZWtWM1RrUlpNVTFXYjFoRVZFMHhUVVJGZVU1NlJYZE9SRmt4VFZadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUbmRuQ2pjeVkxUkZlbWdyVlZBcldFNUNURTE1ZUV0R01YcHlNbU5VYkdsb05YZGljeXRyZFhaNlp6WnBLMlZVTkdzemJIUTVUbmQ2ZEZKb1YyZFlMelJSV2tJS2RXcFlkVkp4YlVoa2JXdFhVRXBYUWxNclJrSkdhekZRVkV4RmFtUmFiaXRCU0dwcFZFOHdabHBVZFZWcE1uRXhhak5FTDFoamF6SnlRWG8yZFVwWFpncDBlVkI1WVhkTWJuZzBOSFpIV21sc1YydHFXVmhZYmt0WkswMU1TV05GWWxSWFJtaHplVTlyZEhwR05HSXpSa0pQUWpsa09ISmhkWGx5TkhWcVRWa3pDamxFY0dWWU0yTjBhemRtVEUxdU0xTnZkRUZsYjFCSVIyTnlOV2RTTm5ZeU5FeEJUMUpHUkZWaE5sUjBTRTFtVWt0NGRUazRLMDVDVEdsaFkxUTNlVmNLUTJsSE5VNU5VREF4T0UxMlZta3dLMWRRZEhKd1ZFTkRVek5LVGl0bllUYzJkM0pWY1Zoc1QzcDNTME5TWW01cFpHRnlNRmhvVFhKM1VuWlNZVTB5YkFwUGJGWjBNVmxXT1RkWVlYRXhlbFJsYkM5RlEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaRFVXUldVMU4xVXpOc2IwTTVjek5NY1VrNGNsRjBVVTFoVUV0TlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQk1XMWhaMGN4ZFRKTFZ6TlhVVlZaZUdkM2MwMHhZbVJrTVdkbVNESlBiSGRpSzBWTE5GUm9Va1paSzFOQ1RIRTRaUXBVUjFwSWJpOVdWbVZWUW5oemRHSXdLMkpuUm5kT1kzcEViVmRzV1Zoa0wzZENNWEJYU21wNFMwRk5XR3hHWVhwa2RsWmpLMVpNWkhaYVRtaDNXbkVyQ25ndk5WQnFOazlUUTNGVVVrSndXREpQVldseGNIZ3JjMHAzYVhSaFVIWldTMFZDV1V4bmQxUkdMMHBwY0hkelF6bGhOSFJIZUdWSVNHMDJSM0ZqV0ZNS1YwcHFNVXBMZW5oeFdrWjJaMHg2VkhoU1VVRnZabEZ5VlZsS1VrOVFhbXAwTlZSSVUxTTBaVGxrY2pWMk1XMWxTM2czU0VWV2VXOUhWRzlzYVZKd1RRb3pVVGMzVUVoSmRHRXlkek5YYml0WFNITmtORVUyY0d0R2FsWnFiMVE1V0V4dGNYQXZNelJUWW5sWFdtSXZja3cyY0Zwa1FYWkVLM0lyYkhCUVJtSmtDakpwUXl0Mk9XcDNlRlZPUnk5R2RHc3ZjbHByZVU1RlluRmpZVWxUYmpSb09YUTNRZ290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vMjE3NGNiODItMmE0OC00MWFjLTk0ZjAtNjgzMDViYjlhMjhhLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtazhzLXB1YmxpYy1pcAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1rOHMtcHVibGljLWlwIgogICAgdXNlcjogdGVzdC1rOHMtcHVibGljLWlwLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1rOHMtcHVibGljLWlwCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1rOHMtcHVibGljLWlwLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBUQ2Vqb2JWek95bXUwUWpRcmxFNm45a0M3TWVaWjRPZVhzUjlXMDVHYWJKVGtMbTZBc0kzbkVjZQ==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"ready","tags":[],"updated_at":"2025-03-24T08:20:06.970341Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - - "2636" + - "606" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:53:20 GMT + - Mon, 24 Mar 2025 08:20:09 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4805,10 +4805,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d30240f1-76b7-49b4-8463-65141775034e + - f6a23a94-cfce-4360-93c7-3feae8ad1c43 status: 200 OK code: 200 - duration: 66.594417ms + duration: 96.644659ms - id: 98 request: proto: HTTP/1.1 @@ -4824,8 +4824,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/clusters/2fd5d612-425f-4b4b-ae74-16eda80368e6/nodes?order_by=created_at_asc&page=1&pool_id=f0556a65-6164-4778-b0b2-2039c6164319&status=unknown method: GET response: proto: HTTP/2.0 @@ -4833,20 +4833,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 606 + content_length: 640 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"ready","tags":[],"updated_at":"2025-01-28T10:53:17.240637Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"nodes":[{"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2025-03-24T08:15:12.585532Z","error_message":"","id":"e8a66a4f-fd00-4c5d-9087-b13c53f889a9","name":"scw-test-k8s-public-i-test-k8s-public-i-e8a66a","pool_id":"f0556a65-6164-4778-b0b2-2039c6164319","provider_id":"scaleway://instance/fr-par-1/6f5502f4-0f68-4158-83bc-3a3e06c02b2c","public_ip_v4":"51.158.118.212","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2025-03-24T08:20:06.962240Z"}],"total_count":1}' headers: Content-Length: - - "606" + - "640" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:53:20 GMT + - Mon, 24 Mar 2025 08:20:09 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4854,10 +4854,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a3421d90-6fe9-4b9b-98ca-cf1e58981f93 + - b30e6e00-0662-4df3-9d2b-5b1414a47af3 status: 200 OK code: 200 - duration: 66.201958ms + duration: 110.062781ms - id: 99 request: proto: HTTP/1.1 @@ -4873,8 +4873,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/k8s/v1/regions/fr-par/clusters/2174cb82-2a48-41ac-94f0-68305bb9a28a/nodes?order_by=created_at_asc&page=1&pool_id=37cfc820-5fcd-44bd-88f8-8217f75013a0&status=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2177e306-fcad-4127-ba67-ba1abe0d58cb method: GET response: proto: HTTP/2.0 @@ -4882,20 +4882,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 639 + content_length: 1022 uncompressed: false - body: '{"nodes":[{"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2025-01-28T10:49:57.595147Z","error_message":"","id":"3dea235f-46a4-47ea-a974-233e8b583838","name":"scw-test-k8s-public-i-test-k8s-public-i-3dea23","pool_id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","provider_id":"scaleway://instance/fr-par-1/4e6dfdf1-8a9c-49f8-bd52-ba6efc28cd6a","public_ip_v4":"51.15.236.240","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2025-01-28T10:53:17.230057Z"}],"total_count":1}' + body: '{"created_at":"2025-03-24T08:13:40.115789Z","dhcp_enabled":true,"id":"2177e306-fcad-4127-ba67-ba1abe0d58cb","name":"test-k8s-public-ip","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-03-24T08:13:40.115789Z","id":"75b9567d-37a3-4569-8d17-afedfcc4befa","private_network_id":"2177e306-fcad-4127-ba67-ba1abe0d58cb","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.56.0/22","updated_at":"2025-03-24T08:13:40.115789Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-03-24T08:13:40.115789Z","id":"866214a1-7134-45c3-9414-b914c8766708","private_network_id":"2177e306-fcad-4127-ba67-ba1abe0d58cb","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:ec3b::/64","updated_at":"2025-03-24T08:13:40.115789Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-03-24T08:13:40.115789Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "639" + - "1022" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:53:20 GMT + - Mon, 24 Mar 2025 08:20:10 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4903,10 +4903,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - db7eb599-2dea-4b77-b062-b8ec6863c3c8 + - b0aad0d4-92f7-4de8-b6a8-1e5647503602 status: 200 OK code: 200 - duration: 74.274792ms + duration: 112.718093ms - id: 100 request: proto: HTTP/1.1 @@ -4922,8 +4922,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/8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d + - 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/k8s/v1/regions/fr-par/clusters/2fd5d612-425f-4b4b-ae74-16eda80368e6 method: GET response: proto: HTTP/2.0 @@ -4931,20 +4931,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1021 + content_length: 1498 uncompressed: false - body: '{"created_at":"2025-01-28T10:46:49.038912Z","dhcp_enabled":true,"id":"8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d","name":"test-k8s-public-ip","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:46:49.038912Z","id":"3db6da28-f723-46f3-9bb4-782831943e11","private_network_id":"8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.0.0/22","updated_at":"2025-01-28T10:46:49.038912Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-01-28T10:46:49.038912Z","id":"02dcd8f7-49ca-46a9-a94e-3dc3859187f9","private_network_id":"8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:faec::/64","updated_at":"2025-01-28T10:46:49.038912Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-01-28T10:46:49.038912Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"acl_available":true,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2fd5d612-425f-4b4b-ae74-16eda80368e6.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-03-24T08:13:42.105610Z","created_at":"2025-03-24T08:13:42.105600Z","description":"","dns_wildcard":"*.2fd5d612-425f-4b4b-ae74-16eda80368e6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"iam_nodes_group_id":"2ad98fd4-b1c1-438c-971f-d6152cfe2fbe","id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_id":"2177e306-fcad-4127-ba67-ba1abe0d58cb","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","sbs_csi_enabled":true,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2025-03-24T08:15:09.941732Z","upgrade_available":false,"version":"1.32.3"}' headers: Content-Length: - - "1021" + - "1498" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:53:21 GMT + - Mon, 24 Mar 2025 08:20:10 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4952,10 +4952,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa65fee3-9b6f-495b-bd5a-efa9dff58577 + - 1f6adc75-96cb-4378-8aee-0f66157a04f1 status: 200 OK code: 200 - duration: 28.780584ms + duration: 97.170078ms - id: 101 request: proto: HTTP/1.1 @@ -4971,8 +4971,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/k8s/v1/regions/fr-par/clusters/2174cb82-2a48-41ac-94f0-68305bb9a28a + - 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/k8s/v1/regions/fr-par/clusters/2fd5d612-425f-4b4b-ae74-16eda80368e6/kubeconfig method: GET response: proto: HTTP/2.0 @@ -4980,20 +4980,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1439 + content_length: 2636 uncompressed: false - body: '{"acl_available":false,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2174cb82-2a48-41ac-94f0-68305bb9a28a.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-01-28T10:46:50.481031Z","created_at":"2025-01-28T10:46:50.481019Z","description":"","dns_wildcard":"*.2174cb82-2a48-41ac-94f0-68305bb9a28a.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sbs_csi_enabled":true,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2025-01-28T10:49:21.590178Z","upgrade_available":false,"version":"1.31.2"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtazhzLXB1YmxpYy1pcCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSk1VMUVUWGxOZWtFMFRWUk5NRTB4YjFoRVZFMHhUVVJOZVUxNlFUUk5WRTB3VFRGdmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUVVYxQ2xNNGRUTlpRbTFPTWsxR1VWWnFXVTFJUnpkRFdWbGFjalJFVlZCNU5FOVFkR1ZDVFhob1pIY3dhREZOUkdsRU9YY3hjREEyUkVwaWFXcHlZVGh2Y0VnS2RuRmFNbE0zV1hJclVtZG9ZblZ1T1hkTFpVcHVjRE5QU1ZaWWVtMXRTR2hKVkhwVE5XVjBlRlozV25oNk5HTlphR1F6Y1VSdFJXRlNSbXM0VG1aTFpBcEZkWE4wWVdKNmIwdEdjVVFyY3psR0wxQkZiRVpzZGt0RmNUZ3diWFZUVjBSdFRFcGhVR3BJWm5oVVYyNVdNV3RwYWtaeWQwdzJla3RsVTFBd2REbHBDbUp3ZEN0c2FWaERXRGhOVlVaNk9YcGhUMmc1YUhOTk5ISkVObXBwWkVsRWRWcDJjMHh6YlZacFR5ODFZaXN3ZFdSeVpXOTJURzUzVmpGcFNHNURVeklLUjBSQmVqSlhUVk55VFRGRFMydGpaVzVWTW5Zd2VuQjNjMlZPY0ROTk1HczBPSGhsVDNZMlNsRkxhRmd2YTA1b2F6RnFNSGxNU1ZSRVp6TlhlVzVHVFFwUE5VUnBkVWRpVlVWMFZIRkJlVmQ2V0hGelEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaT1ZISlRRWFJJVjNocmNreGtaVFZ3T1dOdWNVOWxXVzAxUzFCTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ05XZGhla014TVc1SlYwSldWVWxXUVhWM1YxbFZPVUpJUlRKM1dXcEZXbW8wYjA5c1ZHbHdka0kxYTJ4dVdGTlVWUXB5VERneFVrczJWaTk2TDI1MGVrSk9VM2RoWnpCdVZUQndkbEZDV0d4MlJXTmxTRTR3Y2t4aWJYQnJaSEp3VEZvNFNtSnRZM0JsZGtReVFraGFWelV4Q2pWamMxWjNMMmhKZFVSdFNEZFRaa0ZPYUc5QlJ6bDZlVmx5YjFJeFNVcE1PR2Q1WnpCRFYzcHBXWGtyWVhsbGVEUjBka3RzVld4RWFUbDZUa3NyVldJS1pGSlRLMHN6TWxGRVpHRkVjMkpoVW5NNFVYcG9RMUJhYm1ONVowNW1hek56VUZoUmMyaE5hekUyZWxoMk9ETXliWHB3T1dKeFdGTlNMelo2YVZCQlVBcFdja2xCTDI1bWVHcG5Sa3NyUWpKNWRFeDRjV04xZFdoSlJ5dDVVbVJ5YlhoQldXcFZUa04yVkhwNFdtVXlibWhZU0ZsT0sxQnRaa2RYT1hSaFZXSTNDbEpCYVdkVmIyTjFOVXB2WkZGUVlXUnVabTU0Y25ZNFVqWnJaVU5KTlRseFoxaFBXUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vMmZkNWQ2MTItNDI1Zi00YjRiLWFlNzQtMTZlZGE4MDM2OGU2LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtazhzLXB1YmxpYy1pcAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1rOHMtcHVibGljLWlwIgogICAgdXNlcjogdGVzdC1rOHMtcHVibGljLWlwLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1rOHMtcHVibGljLWlwCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1rOHMtcHVibGljLWlwLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiB4TmN5UVdkZThMSkxCRW1yUURFYnZUQTVZTEdBejlWT2JKSU14NGlLMW9zbXJ6dGw0U3Y1bzdDYw==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "1439" + - "2636" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:53:21 GMT + - Mon, 24 Mar 2025 08:20:10 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5001,10 +5001,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 92120e50-dc6c-456c-8d5e-fe74a055809a + - 6015d318-5fb9-44d1-8b6e-52ecc57555ef status: 200 OK code: 200 - duration: 72.580583ms + duration: 125.414265ms - id: 102 request: proto: HTTP/1.1 @@ -5020,8 +5020,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/k8s/v1/regions/fr-par/clusters/2174cb82-2a48-41ac-94f0-68305bb9a28a/kubeconfig + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -5029,20 +5029,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2636 + content_length: 606 uncompressed: false - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtazhzLXB1YmxpYy1pcCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSk1VMUVSWGxPZWtWM1RrUlpNVTFXYjFoRVZFMHhUVVJGZVU1NlJYZE9SRmt4VFZadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUbmRuQ2pjeVkxUkZlbWdyVlZBcldFNUNURTE1ZUV0R01YcHlNbU5VYkdsb05YZGljeXRyZFhaNlp6WnBLMlZVTkdzemJIUTVUbmQ2ZEZKb1YyZFlMelJSV2tJS2RXcFlkVkp4YlVoa2JXdFhVRXBYUWxNclJrSkdhekZRVkV4RmFtUmFiaXRCU0dwcFZFOHdabHBVZFZWcE1uRXhhak5FTDFoamF6SnlRWG8yZFVwWFpncDBlVkI1WVhkTWJuZzBOSFpIV21sc1YydHFXVmhZYmt0WkswMU1TV05GWWxSWFJtaHplVTlyZEhwR05HSXpSa0pQUWpsa09ISmhkWGx5TkhWcVRWa3pDamxFY0dWWU0yTjBhemRtVEUxdU0xTnZkRUZsYjFCSVIyTnlOV2RTTm5ZeU5FeEJUMUpHUkZWaE5sUjBTRTFtVWt0NGRUazRLMDVDVEdsaFkxUTNlVmNLUTJsSE5VNU5VREF4T0UxMlZta3dLMWRRZEhKd1ZFTkRVek5LVGl0bllUYzJkM0pWY1Zoc1QzcDNTME5TWW01cFpHRnlNRmhvVFhKM1VuWlNZVTB5YkFwUGJGWjBNVmxXT1RkWVlYRXhlbFJsYkM5RlEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaRFVXUldVMU4xVXpOc2IwTTVjek5NY1VrNGNsRjBVVTFoVUV0TlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQk1XMWhaMGN4ZFRKTFZ6TlhVVlZaZUdkM2MwMHhZbVJrTVdkbVNESlBiSGRpSzBWTE5GUm9Va1paSzFOQ1RIRTRaUXBVUjFwSWJpOVdWbVZWUW5oemRHSXdLMkpuUm5kT1kzcEViVmRzV1Zoa0wzZENNWEJYU21wNFMwRk5XR3hHWVhwa2RsWmpLMVpNWkhaYVRtaDNXbkVyQ25ndk5WQnFOazlUUTNGVVVrSndXREpQVldseGNIZ3JjMHAzYVhSaFVIWldTMFZDV1V4bmQxUkdMMHBwY0hkelF6bGhOSFJIZUdWSVNHMDJSM0ZqV0ZNS1YwcHFNVXBMZW5oeFdrWjJaMHg2VkhoU1VVRnZabEZ5VlZsS1VrOVFhbXAwTlZSSVUxTTBaVGxrY2pWMk1XMWxTM2czU0VWV2VXOUhWRzlzYVZKd1RRb3pVVGMzVUVoSmRHRXlkek5YYml0WFNITmtORVUyY0d0R2FsWnFiMVE1V0V4dGNYQXZNelJUWW5sWFdtSXZja3cyY0Zwa1FYWkVLM0lyYkhCUVJtSmtDakpwUXl0Mk9XcDNlRlZPUnk5R2RHc3ZjbHByZVU1RlluRmpZVWxUYmpSb09YUTNRZ290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vMjE3NGNiODItMmE0OC00MWFjLTk0ZjAtNjgzMDViYjlhMjhhLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtazhzLXB1YmxpYy1pcAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1rOHMtcHVibGljLWlwIgogICAgdXNlcjogdGVzdC1rOHMtcHVibGljLWlwLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1rOHMtcHVibGljLWlwCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1rOHMtcHVibGljLWlwLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBUQ2Vqb2JWek95bXUwUWpRcmxFNm45a0M3TWVaWjRPZVhzUjlXMDVHYWJKVGtMbTZBc0kzbkVjZQ==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"ready","tags":[],"updated_at":"2025-03-24T08:20:06.970341Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - - "2636" + - "606" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:53:21 GMT + - Mon, 24 Mar 2025 08:20:10 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5050,10 +5050,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a5edd5a7-d6ec-4049-879e-f7c4289c747e + - 53e5e1d6-731b-4167-b482-a6f3bc57ec13 status: 200 OK code: 200 - duration: 71.304333ms + duration: 95.689152ms - id: 103 request: proto: HTTP/1.1 @@ -5069,8 +5069,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/clusters/2fd5d612-425f-4b4b-ae74-16eda80368e6/nodes?order_by=created_at_asc&page=1&pool_id=f0556a65-6164-4778-b0b2-2039c6164319&status=unknown method: GET response: proto: HTTP/2.0 @@ -5078,20 +5078,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 606 + content_length: 640 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"ready","tags":[],"updated_at":"2025-01-28T10:53:17.240637Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"nodes":[{"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2025-03-24T08:15:12.585532Z","error_message":"","id":"e8a66a4f-fd00-4c5d-9087-b13c53f889a9","name":"scw-test-k8s-public-i-test-k8s-public-i-e8a66a","pool_id":"f0556a65-6164-4778-b0b2-2039c6164319","provider_id":"scaleway://instance/fr-par-1/6f5502f4-0f68-4158-83bc-3a3e06c02b2c","public_ip_v4":"51.158.118.212","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2025-03-24T08:20:06.962240Z"}],"total_count":1}' headers: Content-Length: - - "606" + - "640" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:53:21 GMT + - Mon, 24 Mar 2025 08:20:10 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5099,10 +5099,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fd3ee200-755a-4446-b6ad-21a4b0f01d81 + - 1ad499d2-fa27-42d6-adfa-a865eccd13c8 status: 200 OK code: 200 - duration: 79.01825ms + duration: 105.593117ms - id: 104 request: proto: HTTP/1.1 @@ -5118,29 +5118,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2174cb82-2a48-41ac-94f0-68305bb9a28a/nodes?order_by=created_at_asc&page=1&pool_id=37cfc820-5fcd-44bd-88f8-8217f75013a0&status=unknown - method: GET + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 639 + content_length: 606 uncompressed: false - body: '{"nodes":[{"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2025-01-28T10:49:57.595147Z","error_message":"","id":"3dea235f-46a4-47ea-a974-233e8b583838","name":"scw-test-k8s-public-i-test-k8s-public-i-3dea23","pool_id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","provider_id":"scaleway://instance/fr-par-1/4e6dfdf1-8a9c-49f8-bd52-ba6efc28cd6a","public_ip_v4":"51.15.236.240","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2025-01-28T10:53:17.230057Z"}],"total_count":1}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"ready","tags":[],"updated_at":"2025-03-24T08:20:06.970341Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - - "639" + - "606" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:53:21 GMT + - Mon, 24 Mar 2025 08:20:11 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5148,10 +5148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 87f6257b-c32e-4667-b33e-8bb2a4cea753 + - 9e1a05cb-2ef2-488d-9841-02665a200cc9 status: 200 OK code: 200 - duration: 72.739792ms + duration: 139.348325ms - id: 105 request: proto: HTTP/1.1 @@ -5167,29 +5167,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 - method: DELETE + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 606 + content_length: 609 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"ready","tags":[],"updated_at":"2025-01-28T10:53:17.240637Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:20:11.539349Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - - "606" + - "609" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:53:22 GMT + - Mon, 24 Mar 2025 08:20:11 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5197,10 +5197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f590d1d4-a7d2-49c3-bb0e-daf4661e2bc8 + - e37d21d4-6139-4570-ac21-cd6167ef0895 status: 200 OK code: 200 - duration: 85.133959ms + duration: 100.747709ms - id: 106 request: proto: HTTP/1.1 @@ -5216,8 +5216,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -5227,7 +5227,7 @@ interactions: trailer: {} content_length: 609 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T10:53:22.285482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:20:11.539349Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "609" @@ -5236,9 +5236,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:53:22 GMT + - Mon, 24 Mar 2025 08:20:16 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5246,10 +5246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3b88b19c-ba16-442e-be33-76926c0a38a5 + - fb572a64-bda5-442d-b6f5-13e5e51e480f status: 200 OK code: 200 - duration: 63.644375ms + duration: 105.45613ms - id: 107 request: proto: HTTP/1.1 @@ -5265,8 +5265,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -5276,7 +5276,7 @@ interactions: trailer: {} content_length: 609 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T10:53:22.285482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:20:11.539349Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "609" @@ -5285,9 +5285,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:53:27 GMT + - Mon, 24 Mar 2025 08:20:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5295,10 +5295,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9af754d4-d381-4fe4-8833-da2a7f7a8101 + - f87c17bc-7977-4de3-9e66-eae0d7dd4ca9 status: 200 OK code: 200 - duration: 72.08775ms + duration: 104.657804ms - id: 108 request: proto: HTTP/1.1 @@ -5314,8 +5314,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -5325,7 +5325,7 @@ interactions: trailer: {} content_length: 609 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T10:53:22.285482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:20:11.539349Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "609" @@ -5334,9 +5334,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:53:32 GMT + - Mon, 24 Mar 2025 08:20:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5344,10 +5344,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - efcadc57-2e7f-4074-89a7-24bb893e3d42 + - 55017f0c-4957-4fb0-975c-47840e106844 status: 200 OK code: 200 - duration: 74.809458ms + duration: 109.137928ms - id: 109 request: proto: HTTP/1.1 @@ -5363,8 +5363,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -5374,7 +5374,7 @@ interactions: trailer: {} content_length: 609 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T10:53:22.285482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:20:11.539349Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "609" @@ -5383,9 +5383,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:53:37 GMT + - Mon, 24 Mar 2025 08:20:32 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5393,10 +5393,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 98fcd921-31de-4b83-9578-0fb45037626b + - 15e9e079-d712-4c09-a64e-6e07d2bf109b status: 200 OK code: 200 - duration: 69.88225ms + duration: 102.636411ms - id: 110 request: proto: HTTP/1.1 @@ -5412,8 +5412,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -5423,7 +5423,7 @@ interactions: trailer: {} content_length: 609 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T10:53:22.285482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:20:11.539349Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "609" @@ -5432,9 +5432,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:53:42 GMT + - Mon, 24 Mar 2025 08:20:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5442,10 +5442,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 745bbca9-cfbf-4fae-8717-46a31b20aea9 + - 946fb20a-f521-40e5-b756-5b24db29b141 status: 200 OK code: 200 - duration: 75.083583ms + duration: 121.791493ms - id: 111 request: proto: HTTP/1.1 @@ -5461,8 +5461,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -5472,7 +5472,7 @@ interactions: trailer: {} content_length: 609 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T10:53:22.285482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:20:11.539349Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "609" @@ -5481,9 +5481,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:53:47 GMT + - Mon, 24 Mar 2025 08:20:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5491,10 +5491,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 06a98171-59f8-41a1-a0b8-48fa3c618284 + - 0fc63c88-7054-49bb-a10b-4ea0f66a2da0 status: 200 OK code: 200 - duration: 71.6385ms + duration: 104.820188ms - id: 112 request: proto: HTTP/1.1 @@ -5510,8 +5510,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -5521,7 +5521,7 @@ interactions: trailer: {} content_length: 609 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T10:53:22.285482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:20:11.539349Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "609" @@ -5530,9 +5530,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:53:52 GMT + - Mon, 24 Mar 2025 08:20:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5540,10 +5540,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 92ca2127-5e5b-40e9-89cc-f874f955fe7c + - 74e7f858-6ab5-4f73-9cf1-7e584c7fe819 status: 200 OK code: 200 - duration: 65.452084ms + duration: 104.538482ms - id: 113 request: proto: HTTP/1.1 @@ -5559,8 +5559,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -5570,7 +5570,7 @@ interactions: trailer: {} content_length: 609 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T10:53:22.285482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:20:11.539349Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "609" @@ -5579,9 +5579,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:53:57 GMT + - Mon, 24 Mar 2025 08:20:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5589,10 +5589,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2ccbedbf-c723-4d98-93a7-19fb5b082923 + - aa990457-286c-40d2-a3b6-d297cb97ee3f status: 200 OK code: 200 - duration: 74.375ms + duration: 94.748749ms - id: 114 request: proto: HTTP/1.1 @@ -5608,8 +5608,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -5619,7 +5619,7 @@ interactions: trailer: {} content_length: 609 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T10:53:22.285482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:20:11.539349Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "609" @@ -5628,9 +5628,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:54:02 GMT + - Mon, 24 Mar 2025 08:20:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5638,10 +5638,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ea70b2c2-aba4-4791-a409-9f293ed6e5d0 + - a43e8a6a-0ea5-4650-ad12-08d4b8cb39fa status: 200 OK code: 200 - duration: 64.752875ms + duration: 106.246325ms - id: 115 request: proto: HTTP/1.1 @@ -5657,8 +5657,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -5668,7 +5668,7 @@ interactions: trailer: {} content_length: 609 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T10:53:22.285482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:20:11.539349Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "609" @@ -5677,9 +5677,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:54:08 GMT + - Mon, 24 Mar 2025 08:21:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5687,10 +5687,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 221381dc-b264-47a1-bc03-2dd4c40d5c9b + - ef596c16-fd72-42f8-8f15-ec43defc1265 status: 200 OK code: 200 - duration: 84.692875ms + duration: 104.658406ms - id: 116 request: proto: HTTP/1.1 @@ -5706,8 +5706,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -5717,7 +5717,7 @@ interactions: trailer: {} content_length: 609 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T10:53:22.285482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:20:11.539349Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "609" @@ -5726,9 +5726,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:54:13 GMT + - Mon, 24 Mar 2025 08:21:07 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5736,10 +5736,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c22566f3-0fc5-4c86-b0d6-57ac0611450d + - fcef80dc-0e07-4a18-9cf3-2865fce575b3 status: 200 OK code: 200 - duration: 77.425166ms + duration: 101.761371ms - id: 117 request: proto: HTTP/1.1 @@ -5755,8 +5755,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -5766,7 +5766,7 @@ interactions: trailer: {} content_length: 609 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T10:53:22.285482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:20:11.539349Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "609" @@ -5775,9 +5775,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:54:18 GMT + - Mon, 24 Mar 2025 08:21:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5785,10 +5785,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8ccbbc13-74b8-494a-9f07-27ff87c8bedc + - 3f4e680c-29c8-4dc9-9803-aba30550c164 status: 200 OK code: 200 - duration: 71.405375ms + duration: 106.372866ms - id: 118 request: proto: HTTP/1.1 @@ -5804,8 +5804,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -5815,7 +5815,7 @@ interactions: trailer: {} content_length: 609 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T10:53:22.285482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:20:11.539349Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "609" @@ -5824,9 +5824,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:54:23 GMT + - Mon, 24 Mar 2025 08:21:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5834,10 +5834,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4673b929-889b-4e33-b7c8-6ae9cb69ae61 + - 0801ef30-1a9f-446f-a033-4300050d02f5 status: 200 OK code: 200 - duration: 63.753834ms + duration: 127.491086ms - id: 119 request: proto: HTTP/1.1 @@ -5853,8 +5853,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -5864,7 +5864,7 @@ interactions: trailer: {} content_length: 609 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T10:53:22.285482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:20:11.539349Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "609" @@ -5873,9 +5873,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:54:28 GMT + - Mon, 24 Mar 2025 08:21:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5883,10 +5883,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7dd58c66-73b5-4e5f-b5f9-c9f6c6c6efad + - 7a1ea4c1-e480-4a2a-83a5-2b0cf909cba1 status: 200 OK code: 200 - duration: 68.584417ms + duration: 137.849985ms - id: 120 request: proto: HTTP/1.1 @@ -5902,8 +5902,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -5913,7 +5913,7 @@ interactions: trailer: {} content_length: 609 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T10:53:22.285482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:20:11.539349Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "609" @@ -5922,9 +5922,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:54:33 GMT + - Mon, 24 Mar 2025 08:21:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5932,10 +5932,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f9198c3d-63e0-429d-8b08-3cfc45ae1cec + - 6396d37f-75f3-45f2-850f-93e41bb6a810 status: 200 OK code: 200 - duration: 63.243208ms + duration: 113.576287ms - id: 121 request: proto: HTTP/1.1 @@ -5951,8 +5951,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -5962,7 +5962,7 @@ interactions: trailer: {} content_length: 609 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T10:53:22.285482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:20:11.539349Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "609" @@ -5971,9 +5971,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:54:38 GMT + - Mon, 24 Mar 2025 08:21:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5981,10 +5981,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 28835e82-dc37-4cc3-9852-e3d65918c26d + - 35067a96-e8ca-45dc-99b0-59a3d5280718 status: 200 OK code: 200 - duration: 64.296208ms + duration: 314.07161ms - id: 122 request: proto: HTTP/1.1 @@ -6000,8 +6000,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -6011,7 +6011,7 @@ interactions: trailer: {} content_length: 609 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T10:53:22.285482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:20:11.539349Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "609" @@ -6020,9 +6020,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:54:43 GMT + - Mon, 24 Mar 2025 08:21:38 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6030,10 +6030,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e11caa77-8a18-43da-a2b4-99b51b63f1d4 + - da18de30-f217-4731-865f-3a2880ab254e status: 200 OK code: 200 - duration: 69.504583ms + duration: 94.81174ms - id: 123 request: proto: HTTP/1.1 @@ -6049,8 +6049,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -6060,7 +6060,7 @@ interactions: trailer: {} content_length: 609 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T10:53:22.285482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:20:11.539349Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "609" @@ -6069,9 +6069,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:54:48 GMT + - Mon, 24 Mar 2025 08:21:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6079,10 +6079,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5edc96b8-0d33-4970-b9b5-635cfdc60f39 + - 2a994920-7bf9-499a-9280-fff33b18a975 status: 200 OK code: 200 - duration: 80.961875ms + duration: 99.155744ms - id: 124 request: proto: HTTP/1.1 @@ -6098,8 +6098,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -6109,7 +6109,7 @@ interactions: trailer: {} content_length: 609 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T10:53:22.285482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:20:11.539349Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "609" @@ -6118,9 +6118,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:54:53 GMT + - Mon, 24 Mar 2025 08:21:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6128,10 +6128,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c6c34e57-ce70-4ad7-8f29-05b3a394f4f3 + - d116de25-c742-4aba-bd6f-c39f2099b57b status: 200 OK code: 200 - duration: 69.672583ms + duration: 104.774337ms - id: 125 request: proto: HTTP/1.1 @@ -6147,8 +6147,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -6158,7 +6158,7 @@ interactions: trailer: {} content_length: 609 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T10:53:22.285482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:20:11.539349Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "609" @@ -6167,9 +6167,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:54:58 GMT + - Mon, 24 Mar 2025 08:21:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6177,10 +6177,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2ba5016d-b247-48c5-a574-709694451cdd + - d87c880e-3f91-4f93-a0a5-42780ef11077 status: 200 OK code: 200 - duration: 72.909667ms + duration: 117.832045ms - id: 126 request: proto: HTTP/1.1 @@ -6196,8 +6196,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -6207,7 +6207,7 @@ interactions: trailer: {} content_length: 609 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T10:53:22.285482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:20:11.539349Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "609" @@ -6216,9 +6216,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:55:03 GMT + - Mon, 24 Mar 2025 08:21:59 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6226,10 +6226,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 408bca25-671e-4056-9bcd-c978cfff3e2a + - 0a2ca77f-b6c7-4046-8fec-2c3c057879f9 status: 200 OK code: 200 - duration: 68.154125ms + duration: 105.540571ms - id: 127 request: proto: HTTP/1.1 @@ -6245,8 +6245,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -6256,7 +6256,7 @@ interactions: trailer: {} content_length: 609 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T10:53:22.285482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:20:11.539349Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "609" @@ -6265,9 +6265,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:55:08 GMT + - Mon, 24 Mar 2025 08:22:04 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6275,10 +6275,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bd5cfc46-7ea7-4fbe-9a8f-dd202e661a99 + - ca302329-91e7-4191-a5c8-919d1245723e status: 200 OK code: 200 - duration: 71.084166ms + duration: 142.504067ms - id: 128 request: proto: HTTP/1.1 @@ -6294,8 +6294,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -6305,7 +6305,7 @@ interactions: trailer: {} content_length: 609 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T10:53:22.285482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:20:11.539349Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "609" @@ -6314,9 +6314,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:55:13 GMT + - Mon, 24 Mar 2025 08:22:09 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6324,10 +6324,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9da9608d-4ef8-4a54-ab3b-c6b88138c037 + - fa6b62e3-a3b9-406d-b99d-0e4aab59c9eb status: 200 OK code: 200 - duration: 67.331209ms + duration: 116.64918ms - id: 129 request: proto: HTTP/1.1 @@ -6343,8 +6343,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -6354,7 +6354,7 @@ interactions: trailer: {} content_length: 609 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T10:53:22.285482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:20:11.539349Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "609" @@ -6363,9 +6363,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:55:19 GMT + - Mon, 24 Mar 2025 08:22:14 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6373,10 +6373,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b7ec065d-ee8b-4991-b676-29361ad17ecc + - 947dbc24-111a-4f4a-b460-2b40f6140645 status: 200 OK code: 200 - duration: 66.879959ms + duration: 100.969626ms - id: 130 request: proto: HTTP/1.1 @@ -6392,8 +6392,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -6403,7 +6403,7 @@ interactions: trailer: {} content_length: 609 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T10:53:22.285482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:20:11.539349Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "609" @@ -6412,9 +6412,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:55:24 GMT + - Mon, 24 Mar 2025 08:22:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6422,10 +6422,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df405e35-bf8d-4b15-b913-6e671e3ed519 + - 257e83d6-9177-434a-aebf-b732bf1a5f0f status: 200 OK code: 200 - duration: 63.681125ms + duration: 178.797145ms - id: 131 request: proto: HTTP/1.1 @@ -6441,8 +6441,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -6452,7 +6452,7 @@ interactions: trailer: {} content_length: 609 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T10:53:22.285482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:20:11.539349Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "609" @@ -6461,9 +6461,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:55:29 GMT + - Mon, 24 Mar 2025 08:22:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6471,10 +6471,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8e2fcf67-c8d8-45df-9a1d-8f7d29d03ec6 + - 4bd07b9d-029a-4678-9d26-b8c1260f4cd3 status: 200 OK code: 200 - duration: 81.395042ms + duration: 107.452211ms - id: 132 request: proto: HTTP/1.1 @@ -6490,8 +6490,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -6501,7 +6501,7 @@ interactions: trailer: {} content_length: 609 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T10:53:22.285482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:20:11.539349Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "609" @@ -6510,9 +6510,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:55:34 GMT + - Mon, 24 Mar 2025 08:22:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6520,10 +6520,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b86122f3-d8b6-4a96-9ac4-e992d731c636 + - fc13bc6c-dc43-4ba9-9ea1-d98e2f171799 status: 200 OK code: 200 - duration: 66.646333ms + duration: 115.305071ms - id: 133 request: proto: HTTP/1.1 @@ -6539,8 +6539,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -6550,7 +6550,7 @@ interactions: trailer: {} content_length: 609 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T10:53:22.285482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:20:11.539349Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "609" @@ -6559,9 +6559,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:55:39 GMT + - Mon, 24 Mar 2025 08:22:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6569,10 +6569,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c98fdde4-3821-4f6a-8efa-7459330feae1 + - 37863da7-450b-4a6b-a379-d0329dad00a5 status: 200 OK code: 200 - duration: 69.183334ms + duration: 101.282558ms - id: 134 request: proto: HTTP/1.1 @@ -6588,8 +6588,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -6599,7 +6599,7 @@ interactions: trailer: {} content_length: 609 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T10:53:22.285482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:20:11.539349Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "609" @@ -6608,9 +6608,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:55:44 GMT + - Mon, 24 Mar 2025 08:22:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6618,10 +6618,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0d2750ec-4b1f-4ced-8284-203497458bbc + - 4d0ebd0d-73dd-4817-9d77-52e1e6f448bf status: 200 OK code: 200 - duration: 78.015875ms + duration: 120.993826ms - id: 135 request: proto: HTTP/1.1 @@ -6637,8 +6637,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -6648,7 +6648,7 @@ interactions: trailer: {} content_length: 609 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T10:53:22.285482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:20:11.539349Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "609" @@ -6657,9 +6657,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:55:49 GMT + - Mon, 24 Mar 2025 08:22:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6667,10 +6667,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f8ab8366-eb0a-474a-88b3-0bbd384ed557 + - eaf0ae3d-2a47-47b8-b94a-740a14a53e2e status: 200 OK code: 200 - duration: 71.125958ms + duration: 112.505771ms - id: 136 request: proto: HTTP/1.1 @@ -6686,8 +6686,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -6697,7 +6697,7 @@ interactions: trailer: {} content_length: 609 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T10:53:22.285482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:20:11.539349Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "609" @@ -6706,9 +6706,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:55:54 GMT + - Mon, 24 Mar 2025 08:22:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6716,10 +6716,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 703558f0-adc7-4f92-b2a6-06818301da7c + - 103685d3-8273-4df8-adf9-13ff00a66427 status: 200 OK code: 200 - duration: 67.366958ms + duration: 101.190937ms - id: 137 request: proto: HTTP/1.1 @@ -6735,8 +6735,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -6746,7 +6746,7 @@ interactions: trailer: {} content_length: 609 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T10:53:22.285482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:20:11.539349Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "609" @@ -6755,9 +6755,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:55:59 GMT + - Mon, 24 Mar 2025 08:22:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6765,10 +6765,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2c0721ec-cfe0-48a0-9bf3-b04c4e780f49 + - fa8f684d-4f33-40e7-b0ea-51d92c67fc6e status: 200 OK code: 200 - duration: 60.320833ms + duration: 281.909221ms - id: 138 request: proto: HTTP/1.1 @@ -6784,8 +6784,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -6795,7 +6795,7 @@ interactions: trailer: {} content_length: 609 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T10:53:22.285482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:20:11.539349Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "609" @@ -6804,9 +6804,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:56:04 GMT + - Mon, 24 Mar 2025 08:23:00 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6814,10 +6814,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 40519880-accc-45cf-8053-bc83b4d83228 + - 63f48051-905e-4cd0-90c3-919e2714429e status: 200 OK code: 200 - duration: 56.884333ms + duration: 104.250407ms - id: 139 request: proto: HTTP/1.1 @@ -6833,8 +6833,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -6844,7 +6844,7 @@ interactions: trailer: {} content_length: 609 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T10:53:22.285482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:20:11.539349Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "609" @@ -6853,9 +6853,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:56:09 GMT + - Mon, 24 Mar 2025 08:23:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6863,10 +6863,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cd8a12b9-8886-43bd-89ea-c00e963dd752 + - c26f5ee6-4ddc-460f-b8e5-b5b8845458d3 status: 200 OK code: 200 - duration: 69.21575ms + duration: 116.752309ms - id: 140 request: proto: HTTP/1.1 @@ -6882,8 +6882,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -6893,7 +6893,7 @@ interactions: trailer: {} content_length: 609 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T10:53:22.285482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:20:11.539349Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "609" @@ -6902,9 +6902,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:56:14 GMT + - Mon, 24 Mar 2025 08:23:11 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6912,10 +6912,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 917532fb-62ee-4e8f-b9f0-1fd198a7708c + - 911572d8-35a8-4da0-a759-2e047729e0ce status: 200 OK code: 200 - duration: 133.944834ms + duration: 125.692799ms - id: 141 request: proto: HTTP/1.1 @@ -6931,8 +6931,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -6942,7 +6942,7 @@ interactions: trailer: {} content_length: 609 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T10:53:22.285482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:20:11.539349Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "609" @@ -6951,9 +6951,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:56:19 GMT + - Mon, 24 Mar 2025 08:23:16 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6961,10 +6961,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fbacc540-916c-4016-838d-2d11fcea2a45 + - 853cd54d-e61f-4e99-a988-9a4c6ff03bcf status: 200 OK code: 200 - duration: 68.683541ms + duration: 103.749575ms - id: 142 request: proto: HTTP/1.1 @@ -6980,8 +6980,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -6991,7 +6991,7 @@ interactions: trailer: {} content_length: 609 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T10:53:22.285482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:20:11.539349Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "609" @@ -7000,9 +7000,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:56:25 GMT + - Mon, 24 Mar 2025 08:23:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7010,10 +7010,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d6d750b-4081-4c5c-9525-6044af2a772a + - c0265e8d-31f5-403a-8182-ddb8899eb660 status: 200 OK code: 200 - duration: 67.1295ms + duration: 104.116033ms - id: 143 request: proto: HTTP/1.1 @@ -7029,8 +7029,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -7040,7 +7040,7 @@ interactions: trailer: {} content_length: 609 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T10:53:22.285482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:20:11.539349Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "609" @@ -7049,9 +7049,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:56:30 GMT + - Mon, 24 Mar 2025 08:23:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7059,10 +7059,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ff32b27e-27fd-4e6a-b621-b9cf2cedb041 + - 23bd564e-d52b-4211-951b-a473e3fdbc7f status: 200 OK code: 200 - duration: 68.694375ms + duration: 106.355674ms - id: 144 request: proto: HTTP/1.1 @@ -7078,8 +7078,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -7089,7 +7089,7 @@ interactions: trailer: {} content_length: 609 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T10:53:22.285482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:20:11.539349Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "609" @@ -7098,9 +7098,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:56:35 GMT + - Mon, 24 Mar 2025 08:23:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7108,10 +7108,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e381391d-61db-48a1-9a51-fb668d336f0a + - beafdd24-574d-473d-931f-00b3d95f9b53 status: 200 OK code: 200 - duration: 64.400334ms + duration: 110.513775ms - id: 145 request: proto: HTTP/1.1 @@ -7127,8 +7127,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -7138,7 +7138,7 @@ interactions: trailer: {} content_length: 609 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T10:53:22.285482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:20:11.539349Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "609" @@ -7147,9 +7147,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:56:40 GMT + - Mon, 24 Mar 2025 08:23:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7157,10 +7157,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1f8b5b87-c53d-4ac2-8e59-59af0c0fd0e1 + - e13a18cd-be56-4692-a811-2640bc7de80b status: 200 OK code: 200 - duration: 78.533583ms + duration: 121.302627ms - id: 146 request: proto: HTTP/1.1 @@ -7176,8 +7176,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -7187,7 +7187,7 @@ interactions: trailer: {} content_length: 609 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T10:53:22.285482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:20:11.539349Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "609" @@ -7196,9 +7196,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:56:45 GMT + - Mon, 24 Mar 2025 08:23:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7206,10 +7206,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 860f773e-dc5c-4888-a88c-3a60cc6e9c99 + - d762c0e4-2818-4bae-a1e2-05a21b7be472 status: 200 OK code: 200 - duration: 66.904708ms + duration: 103.48524ms - id: 147 request: proto: HTTP/1.1 @@ -7225,8 +7225,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -7236,7 +7236,7 @@ interactions: trailer: {} content_length: 609 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T10:53:22.285482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:20:11.539349Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "609" @@ -7245,9 +7245,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:56:50 GMT + - Mon, 24 Mar 2025 08:23:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7255,10 +7255,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 78061586-67d9-46b4-96fc-ae76c3a114cd + - 1d1bbc94-2f92-4ff2-9f31-fc3b55a938a2 status: 200 OK code: 200 - duration: 89.684375ms + duration: 108.902762ms - id: 148 request: proto: HTTP/1.1 @@ -7274,8 +7274,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -7285,7 +7285,7 @@ interactions: trailer: {} content_length: 609 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T10:53:22.285482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:20:11.539349Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "609" @@ -7294,9 +7294,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:56:55 GMT + - Mon, 24 Mar 2025 08:23:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7304,10 +7304,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2937a753-355e-4e4f-a653-c867f587dc25 + - b3243395-70c5-4437-9894-c59127892ed3 status: 200 OK code: 200 - duration: 87.860125ms + duration: 106.337964ms - id: 149 request: proto: HTTP/1.1 @@ -7323,8 +7323,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -7334,7 +7334,7 @@ interactions: trailer: {} content_length: 609 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T10:53:22.285482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:20:11.539349Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "609" @@ -7343,9 +7343,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:57:00 GMT + - Mon, 24 Mar 2025 08:23:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7353,10 +7353,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 23d927d9-a474-413e-a231-a9a35c0141cd + - d9c8df15-0427-471e-ba68-3b082877b4dc status: 200 OK code: 200 - duration: 103.258792ms + duration: 99.317568ms - id: 150 request: proto: HTTP/1.1 @@ -7372,8 +7372,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -7383,7 +7383,7 @@ interactions: trailer: {} content_length: 609 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T10:53:22.285482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:20:11.539349Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "609" @@ -7392,9 +7392,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:57:05 GMT + - Mon, 24 Mar 2025 08:24:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7402,10 +7402,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d4e83e1f-4181-4d31-a032-e26ef711eb94 + - ddbff35a-16bb-4309-b4cb-f3165a102fc2 status: 200 OK code: 200 - duration: 64.020625ms + duration: 121.359983ms - id: 151 request: proto: HTTP/1.1 @@ -7421,8 +7421,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -7432,7 +7432,7 @@ interactions: trailer: {} content_length: 609 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T10:53:22.285482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:20:11.539349Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "609" @@ -7441,9 +7441,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:57:10 GMT + - Mon, 24 Mar 2025 08:24:07 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7451,10 +7451,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e4d8207a-86a2-4b95-995a-1f7440e72e2b + - ac6972a7-dfdc-4af2-806f-b754c5244f6e status: 200 OK code: 200 - duration: 71.784125ms + duration: 108.432717ms - id: 152 request: proto: HTTP/1.1 @@ -7470,8 +7470,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -7481,7 +7481,7 @@ interactions: trailer: {} content_length: 609 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T10:53:22.285482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:20:11.539349Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "609" @@ -7490,9 +7490,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:57:15 GMT + - Mon, 24 Mar 2025 08:24:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7500,10 +7500,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d09c014-ef76-4ccb-9c24-6a5731a6deec + - 4a22ae95-0c5b-4701-997f-c768037c4fbc status: 200 OK code: 200 - duration: 75.252583ms + duration: 108.405936ms - id: 153 request: proto: HTTP/1.1 @@ -7519,8 +7519,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -7530,7 +7530,7 @@ interactions: trailer: {} content_length: 609 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T10:53:22.285482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:20:11.539349Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "609" @@ -7539,9 +7539,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:57:20 GMT + - Mon, 24 Mar 2025 08:24:17 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7549,10 +7549,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f4e355b4-798a-497d-8e83-2e0e224ab086 + - 9fe18344-23e2-4850-9f7e-7a63320169ca status: 200 OK code: 200 - duration: 65.943458ms + duration: 104.910781ms - id: 154 request: proto: HTTP/1.1 @@ -7568,8 +7568,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -7579,7 +7579,7 @@ interactions: trailer: {} content_length: 609 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T10:53:22.285482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:20:11.539349Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "609" @@ -7588,9 +7588,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:57:26 GMT + - Mon, 24 Mar 2025 08:24:22 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7598,10 +7598,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aab4f967-8114-4864-9b3e-c576a279ea4b + - 43929820-769c-4808-8d02-32a9e0652269 status: 200 OK code: 200 - duration: 81.885625ms + duration: 98.623677ms - id: 155 request: proto: HTTP/1.1 @@ -7617,8 +7617,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -7628,7 +7628,7 @@ interactions: trailer: {} content_length: 609 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T10:53:22.285482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:13:47.980909Z","id":"f0556a65-6164-4778-b0b2-2039c6164319","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:20:11.539349Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "609" @@ -7637,9 +7637,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:57:31 GMT + - Mon, 24 Mar 2025 08:24:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7647,10 +7647,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2edf30c0-6fc4-4196-9a8f-9d57cec67568 + - 4cdc674c-188d-4c42-9b95-12bc126554e7 status: 200 OK code: 200 - duration: 84.885334ms + duration: 102.237423ms - id: 156 request: proto: HTTP/1.1 @@ -7666,8 +7666,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - 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/k8s/v1/regions/fr-par/pools/f0556a65-6164-4778-b0b2-2039c6164319 method: GET response: proto: HTTP/2.0 @@ -7675,20 +7675,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 609 + content_length: 125 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T10:53:22.285482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"message":"resource is not found","resource":"pool","resource_id":"f0556a65-6164-4778-b0b2-2039c6164319","type":"not_found"}' headers: Content-Length: - - "609" + - "125" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:57:36 GMT + - Mon, 24 Mar 2025 08:24:32 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7696,48 +7696,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b5fcffd9-b0da-4154-8157-5f4e2cba8abf - status: 200 OK - code: 200 - duration: 60.393959ms + - a8a34804-9b60-46d4-8e51-391adb8e4db5 + status: 404 Not Found + code: 404 + duration: 86.630716ms - id: 157 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 152 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"test-k8s-public-ip","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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-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: 609 + content_length: 892 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:46:56.127375Z","id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T10:53:22.285482Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T08:24:34.029175Z","gateway_networks":[],"id":"1145fd31-3b8f-463d-9619-deadccd4509a","ipv4":{"address":"51.15.244.79","created_at":"2025-03-24T08:24:34.007617Z","gateway_id":"1145fd31-3b8f-463d-9619-deadccd4509a","id":"609cc4ed-e6f5-4492-b760-c2bb8d63d89c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"79-244-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T08:24:34.007617Z","zone":"fr-par-1"},"is_legacy":false,"name":"test-k8s-public-ip","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-03-24T08:24:34.029175Z","zone":"fr-par-1"}' headers: Content-Length: - - "609" + - "892" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:57:41 GMT + - Mon, 24 Mar 2025 08:24:34 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7745,10 +7747,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f4c6ad5f-c620-48c3-bb2f-a30420362eb5 + - cb280255-0f01-44c9-81e2-9e594f7f4dc2 status: 200 OK code: 200 - duration: 73.009584ms + duration: 1.352759495s - id: 158 request: proto: HTTP/1.1 @@ -7764,8 +7766,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/k8s/v1/regions/fr-par/pools/37cfc820-5fcd-44bd-88f8-8217f75013a0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/1145fd31-3b8f-463d-9619-deadccd4509a method: GET response: proto: HTTP/2.0 @@ -7773,20 +7775,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 125 + content_length: 910 uncompressed: false - body: '{"message":"resource is not found","resource":"pool","resource_id":"37cfc820-5fcd-44bd-88f8-8217f75013a0","type":"not_found"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T08:24:34.029175Z","gateway_networks":[],"id":"1145fd31-3b8f-463d-9619-deadccd4509a","ipv4":{"address":"51.15.244.79","created_at":"2025-03-24T08:24:34.007617Z","gateway_id":"1145fd31-3b8f-463d-9619-deadccd4509a","id":"609cc4ed-e6f5-4492-b760-c2bb8d63d89c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"79-244-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T08:24:34.007617Z","zone":"fr-par-1"},"is_legacy":false,"name":"test-k8s-public-ip","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-03-24T08:24:34.070278Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "125" + - "910" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:57:46 GMT + - Mon, 24 Mar 2025 08:24:34 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7794,50 +7796,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 801f5657-6c7d-44af-b5c2-6d7a0c3300b7 - status: 404 Not Found - code: 404 - duration: 25.899833ms + - 3881e515-b6cd-41b6-9e1b-199e4b88c3a1 + status: 200 OK + code: 200 + duration: 99.100726ms - id: 159 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 105 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"192.168.0.0/22","push_default_route":true}' + 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-gw/v1/zones/fr-par-1/dhcps - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/1145fd31-3b8f-463d-9619-deadccd4509a + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 568 + content_length: 907 uncompressed: false - body: '{"address":"192.168.0.1","created_at":"2025-01-28T10:57:46.417152Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"5a90a96f-ded2-4c5f-89a0-f0ed9a5404a8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2025-01-28T10:57:46.417152Z","valid_lifetime":"3600s","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T08:24:34.029175Z","gateway_networks":[],"id":"1145fd31-3b8f-463d-9619-deadccd4509a","ipv4":{"address":"51.15.244.79","created_at":"2025-03-24T08:24:34.007617Z","gateway_id":"1145fd31-3b8f-463d-9619-deadccd4509a","id":"609cc4ed-e6f5-4492-b760-c2bb8d63d89c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"79-244-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T08:24:34.007617Z","zone":"fr-par-1"},"is_legacy":false,"name":"test-k8s-public-ip","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-03-24T08:24:38.913909Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "568" + - "907" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:57:46 GMT + - Mon, 24 Mar 2025 08:24:39 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7845,10 +7845,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 98243c09-63fa-4b6f-8bdf-aa0d08f9f33e + - 2e63733b-5211-4f7e-8043-1ff071e66c95 status: 200 OK code: 200 - duration: 94.374ms + duration: 99.031273ms - id: 160 request: proto: HTTP/1.1 @@ -7864,8 +7864,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-gw/v1/zones/fr-par-1/dhcps/5a90a96f-ded2-4c5f-89a0-f0ed9a5404a8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/1145fd31-3b8f-463d-9619-deadccd4509a method: GET response: proto: HTTP/2.0 @@ -7873,20 +7873,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 568 + content_length: 907 uncompressed: false - body: '{"address":"192.168.0.1","created_at":"2025-01-28T10:57:46.417152Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"5a90a96f-ded2-4c5f-89a0-f0ed9a5404a8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2025-01-28T10:57:46.417152Z","valid_lifetime":"3600s","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T08:24:34.029175Z","gateway_networks":[],"id":"1145fd31-3b8f-463d-9619-deadccd4509a","ipv4":{"address":"51.15.244.79","created_at":"2025-03-24T08:24:34.007617Z","gateway_id":"1145fd31-3b8f-463d-9619-deadccd4509a","id":"609cc4ed-e6f5-4492-b760-c2bb8d63d89c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"79-244-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T08:24:34.007617Z","zone":"fr-par-1"},"is_legacy":false,"name":"test-k8s-public-ip","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-03-24T08:24:38.913909Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "568" + - "907" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:57:46 GMT + - Mon, 24 Mar 2025 08:24:39 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7894,50 +7894,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6314a117-cad9-46b2-af74-ebdc6a559797 + - b000bc98-1413-419b-8d81-7b83e3bb772e status: 200 OK code: 200 - duration: 74.297541ms + duration: 101.744668ms - id: 161 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 178 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"test-k8s-public-ip","tags":[],"type":"VPC-GW-S","upstream_dns_servers":[],"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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/1145fd31-3b8f-463d-9619-deadccd4509a + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 978 + content_length: 907 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-28T10:57:47.540138Z","gateway_networks":[],"id":"cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5","ip":{"address":"51.15.255.93","created_at":"2025-01-28T10:57:47.521305Z","gateway_id":"cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5","id":"0b2dc034-88ec-4a16-addf-35b6b9d4b496","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"93-255-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-28T10:57:47.521305Z","zone":"fr-par-1"},"ip_mobility_enabled":false,"is_legacy":false,"name":"test-k8s-public-ip","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-28T10:57:47.540138Z","upstream_dns_servers":[],"version":null,"zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T08:24:34.029175Z","gateway_networks":[],"id":"1145fd31-3b8f-463d-9619-deadccd4509a","ipv4":{"address":"51.15.244.79","created_at":"2025-03-24T08:24:34.007617Z","gateway_id":"1145fd31-3b8f-463d-9619-deadccd4509a","id":"609cc4ed-e6f5-4492-b760-c2bb8d63d89c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"79-244-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T08:24:34.007617Z","zone":"fr-par-1"},"is_legacy":false,"name":"test-k8s-public-ip","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-03-24T08:24:38.913909Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "978" + - "907" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:57:47 GMT + - Mon, 24 Mar 2025 08:24:39 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7945,48 +7943,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0cf38291-89ec-499b-896f-6bc87d0cc26a + - bf6e7ba9-6fc2-40ab-8cc0-4e85dc634691 status: 200 OK code: 200 - duration: 1.444362833s + duration: 97.443473ms - id: 162 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":"1145fd31-3b8f-463d-9619-deadccd4509a","private_network_id":"2177e306-fcad-4127-ba67-ba1abe0d58cb","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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-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: 981 + content_length: 384 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-28T10:57:47.540138Z","gateway_networks":[],"id":"cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5","ip":{"address":"51.15.255.93","created_at":"2025-01-28T10:57:47.521305Z","gateway_id":"cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5","id":"0b2dc034-88ec-4a16-addf-35b6b9d4b496","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"93-255-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-28T10:57:47.521305Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"test-k8s-public-ip","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-28T10:57:47.791143Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-24T08:24:40.139725Z","gateway_id":"1145fd31-3b8f-463d-9619-deadccd4509a","id":"2abc0259-8211-43f6-a20f-e539ba8ef8f9","ipam_ip_id":"efb1ff2a-f554-409c-bf2b-061db36a95b7","masquerade_enabled":true,"private_network_id":"2177e306-fcad-4127-ba67-ba1abe0d58cb","push_default_route":true,"status":"created","updated_at":"2025-03-24T08:24:40.139725Z","zone":"fr-par-1"}' headers: Content-Length: - - "981" + - "384" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:57:47 GMT + - Mon, 24 Mar 2025 08:24:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7994,10 +7994,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 619be73c-cf59-4a7f-b6d8-a8f1d4a2bdbd + - 4ba4341c-6726-4e5a-ac30-940373dea90e status: 200 OK code: 200 - duration: 73.577041ms + duration: 698.534296ms - id: 163 request: proto: HTTP/1.1 @@ -8013,8 +8013,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-gw/v1/zones/fr-par-1/gateways/cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/1145fd31-3b8f-463d-9619-deadccd4509a method: GET response: proto: HTTP/2.0 @@ -8022,20 +8022,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 977 + content_length: 1295 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-28T10:57:47.540138Z","gateway_networks":[],"id":"cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5","ip":{"address":"51.15.255.93","created_at":"2025-01-28T10:57:47.521305Z","gateway_id":"cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5","id":"0b2dc034-88ec-4a16-addf-35b6b9d4b496","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"93-255-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-28T10:57:47.521305Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"test-k8s-public-ip","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-28T10:57:52.137693Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T08:24:34.029175Z","gateway_networks":[{"created_at":"2025-03-24T08:24:40.139725Z","gateway_id":"1145fd31-3b8f-463d-9619-deadccd4509a","id":"2abc0259-8211-43f6-a20f-e539ba8ef8f9","ipam_ip_id":"efb1ff2a-f554-409c-bf2b-061db36a95b7","masquerade_enabled":true,"private_network_id":"2177e306-fcad-4127-ba67-ba1abe0d58cb","push_default_route":true,"status":"created","updated_at":"2025-03-24T08:24:40.139725Z","zone":"fr-par-1"}],"id":"1145fd31-3b8f-463d-9619-deadccd4509a","ipv4":{"address":"51.15.244.79","created_at":"2025-03-24T08:24:34.007617Z","gateway_id":"1145fd31-3b8f-463d-9619-deadccd4509a","id":"609cc4ed-e6f5-4492-b760-c2bb8d63d89c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"79-244-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T08:24:34.007617Z","zone":"fr-par-1"},"is_legacy":false,"name":"test-k8s-public-ip","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-03-24T08:24:40.252043Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "977" + - "1295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:57:52 GMT + - Mon, 24 Mar 2025 08:24:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8043,10 +8043,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7d162136-f39a-424d-8574-b79c8e75757f + - d0c42bbd-6d7d-4050-a0cd-e54474e69326 status: 200 OK code: 200 - duration: 78.662834ms + duration: 96.16988ms - id: 164 request: proto: HTTP/1.1 @@ -8062,8 +8062,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-gw/v1/zones/fr-par-1/gateways/cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/1145fd31-3b8f-463d-9619-deadccd4509a method: GET response: proto: HTTP/2.0 @@ -8071,20 +8071,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 977 + content_length: 1295 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-28T10:57:47.540138Z","gateway_networks":[],"id":"cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5","ip":{"address":"51.15.255.93","created_at":"2025-01-28T10:57:47.521305Z","gateway_id":"cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5","id":"0b2dc034-88ec-4a16-addf-35b6b9d4b496","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"93-255-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-28T10:57:47.521305Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"test-k8s-public-ip","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-28T10:57:52.137693Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T08:24:34.029175Z","gateway_networks":[{"created_at":"2025-03-24T08:24:40.139725Z","gateway_id":"1145fd31-3b8f-463d-9619-deadccd4509a","id":"2abc0259-8211-43f6-a20f-e539ba8ef8f9","ipam_ip_id":"efb1ff2a-f554-409c-bf2b-061db36a95b7","masquerade_enabled":true,"private_network_id":"2177e306-fcad-4127-ba67-ba1abe0d58cb","push_default_route":true,"status":"created","updated_at":"2025-03-24T08:24:40.139725Z","zone":"fr-par-1"}],"id":"1145fd31-3b8f-463d-9619-deadccd4509a","ipv4":{"address":"51.15.244.79","created_at":"2025-03-24T08:24:34.007617Z","gateway_id":"1145fd31-3b8f-463d-9619-deadccd4509a","id":"609cc4ed-e6f5-4492-b760-c2bb8d63d89c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"79-244-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T08:24:34.007617Z","zone":"fr-par-1"},"is_legacy":false,"name":"test-k8s-public-ip","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-03-24T08:24:40.252043Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "977" + - "1295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:57:52 GMT + - Mon, 24 Mar 2025 08:24:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8092,10 +8092,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b53dc791-d997-4c26-8ec5-4e700834e22a + - 61d7275f-7bf9-4898-b2d9-db925b9943d4 status: 200 OK code: 200 - duration: 31.246375ms + duration: 140.049254ms - id: 165 request: proto: HTTP/1.1 @@ -8111,8 +8111,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-gw/v1/zones/fr-par-1/gateways/cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/1145fd31-3b8f-463d-9619-deadccd4509a method: GET response: proto: HTTP/2.0 @@ -8120,20 +8120,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 977 + content_length: 1327 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-28T10:57:47.540138Z","gateway_networks":[],"id":"cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5","ip":{"address":"51.15.255.93","created_at":"2025-01-28T10:57:47.521305Z","gateway_id":"cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5","id":"0b2dc034-88ec-4a16-addf-35b6b9d4b496","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"93-255-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-28T10:57:47.521305Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"test-k8s-public-ip","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-28T10:57:52.137693Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T08:24:34.029175Z","gateway_networks":[{"created_at":"2025-03-24T08:24:40.139725Z","gateway_id":"1145fd31-3b8f-463d-9619-deadccd4509a","id":"2abc0259-8211-43f6-a20f-e539ba8ef8f9","ipam_ip_id":"efb1ff2a-f554-409c-bf2b-061db36a95b7","mac_address":"02:00:00:14:F8:6B","masquerade_enabled":true,"private_network_id":"2177e306-fcad-4127-ba67-ba1abe0d58cb","push_default_route":true,"status":"ready","updated_at":"2025-03-24T08:24:50.577797Z","zone":"fr-par-1"}],"id":"1145fd31-3b8f-463d-9619-deadccd4509a","ipv4":{"address":"51.15.244.79","created_at":"2025-03-24T08:24:34.007617Z","gateway_id":"1145fd31-3b8f-463d-9619-deadccd4509a","id":"609cc4ed-e6f5-4492-b760-c2bb8d63d89c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"79-244-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T08:24:34.007617Z","zone":"fr-par-1"},"is_legacy":false,"name":"test-k8s-public-ip","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-03-24T08:24:40.252043Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "977" + - "1327" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:57:53 GMT + - Mon, 24 Mar 2025 08:24:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8141,50 +8141,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 528f29f3-3869-4667-ae13-40efa8fe524b + - b91922ff-7d5d-4201-a6c2-a778faa39b95 status: 200 OK code: 200 - duration: 27.904875ms + duration: 93.546649ms - id: 166 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 206 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"gateway_id":"cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5","private_network_id":"8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d","enable_masquerade":true,"enable_dhcp":true,"dhcp_id":"5a90a96f-ded2-4c5f-89a0-f0ed9a5404a8"}' + 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-gw/v1/zones/fr-par-1/gateway-networks - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/1145fd31-3b8f-463d-9619-deadccd4509a + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 953 + content_length: 1323 uncompressed: false - body: '{"address":null,"created_at":"2025-01-28T10:57:55.340591Z","dhcp":{"address":"192.168.0.1","created_at":"2025-01-28T10:57:46.417152Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"5a90a96f-ded2-4c5f-89a0-f0ed9a5404a8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2025-01-28T10:57:46.417152Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5","id":"3e88db28-c513-41e5-9a53-eed54a3db4ee","ipam_config":null,"mac_address":null,"private_network_id":"8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d","status":"created","updated_at":"2025-01-28T10:57:55.340591Z","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T08:24:34.029175Z","gateway_networks":[{"created_at":"2025-03-24T08:24:40.139725Z","gateway_id":"1145fd31-3b8f-463d-9619-deadccd4509a","id":"2abc0259-8211-43f6-a20f-e539ba8ef8f9","ipam_ip_id":"efb1ff2a-f554-409c-bf2b-061db36a95b7","mac_address":"02:00:00:14:F8:6B","masquerade_enabled":true,"private_network_id":"2177e306-fcad-4127-ba67-ba1abe0d58cb","push_default_route":true,"status":"ready","updated_at":"2025-03-24T08:24:50.577797Z","zone":"fr-par-1"}],"id":"1145fd31-3b8f-463d-9619-deadccd4509a","ipv4":{"address":"51.15.244.79","created_at":"2025-03-24T08:24:34.007617Z","gateway_id":"1145fd31-3b8f-463d-9619-deadccd4509a","id":"609cc4ed-e6f5-4492-b760-c2bb8d63d89c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"79-244-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T08:24:34.007617Z","zone":"fr-par-1"},"is_legacy":false,"name":"test-k8s-public-ip","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-03-24T08:24:50.763266Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "953" + - "1323" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:57:55 GMT + - Mon, 24 Mar 2025 08:24:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8192,10 +8190,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e8ccbf83-bdcb-4867-a3df-b8075839b8aa + - 74b745cc-95aa-4eff-a336-cc06abe3666a status: 200 OK code: 200 - duration: 2.509141208s + duration: 88.722076ms - id: 167 request: proto: HTTP/1.1 @@ -8211,8 +8209,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-gw/v1/zones/fr-par-1/gateways/cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/2abc0259-8211-43f6-a20f-e539ba8ef8f9 method: GET response: proto: HTTP/2.0 @@ -8220,20 +8218,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1933 + content_length: 416 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-28T10:57:47.540138Z","gateway_networks":[{"address":null,"created_at":"2025-01-28T10:57:55.340591Z","dhcp":{"address":"192.168.0.1","created_at":"2025-01-28T10:57:46.417152Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"5a90a96f-ded2-4c5f-89a0-f0ed9a5404a8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2025-01-28T10:57:46.417152Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5","id":"3e88db28-c513-41e5-9a53-eed54a3db4ee","ipam_config":null,"mac_address":null,"private_network_id":"8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d","status":"created","updated_at":"2025-01-28T10:57:55.340591Z","zone":"fr-par-1"}],"id":"cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5","ip":{"address":"51.15.255.93","created_at":"2025-01-28T10:57:47.521305Z","gateway_id":"cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5","id":"0b2dc034-88ec-4a16-addf-35b6b9d4b496","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"93-255-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-28T10:57:47.521305Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"test-k8s-public-ip","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-28T10:57:55.530981Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-24T08:24:40.139725Z","gateway_id":"1145fd31-3b8f-463d-9619-deadccd4509a","id":"2abc0259-8211-43f6-a20f-e539ba8ef8f9","ipam_ip_id":"efb1ff2a-f554-409c-bf2b-061db36a95b7","mac_address":"02:00:00:14:F8:6B","masquerade_enabled":true,"private_network_id":"2177e306-fcad-4127-ba67-ba1abe0d58cb","push_default_route":true,"status":"ready","updated_at":"2025-03-24T08:24:50.577797Z","zone":"fr-par-1"}' headers: Content-Length: - - "1933" + - "416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:57:55 GMT + - Mon, 24 Mar 2025 08:24:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8241,10 +8239,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 95708bdc-5f8b-428a-9fa0-a9b80f7d43cc + - 713c4ba2-a636-4181-b8eb-9c83af8c24c9 status: 200 OK code: 200 - duration: 47.611958ms + duration: 117.124853ms - id: 168 request: proto: HTTP/1.1 @@ -8260,8 +8258,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-gw/v1/zones/fr-par-1/gateways/cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/2abc0259-8211-43f6-a20f-e539ba8ef8f9 method: GET response: proto: HTTP/2.0 @@ -8269,20 +8267,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1933 + content_length: 416 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-28T10:57:47.540138Z","gateway_networks":[{"address":null,"created_at":"2025-01-28T10:57:55.340591Z","dhcp":{"address":"192.168.0.1","created_at":"2025-01-28T10:57:46.417152Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"5a90a96f-ded2-4c5f-89a0-f0ed9a5404a8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2025-01-28T10:57:46.417152Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5","id":"3e88db28-c513-41e5-9a53-eed54a3db4ee","ipam_config":null,"mac_address":null,"private_network_id":"8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d","status":"created","updated_at":"2025-01-28T10:57:55.340591Z","zone":"fr-par-1"}],"id":"cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5","ip":{"address":"51.15.255.93","created_at":"2025-01-28T10:57:47.521305Z","gateway_id":"cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5","id":"0b2dc034-88ec-4a16-addf-35b6b9d4b496","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"93-255-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-28T10:57:47.521305Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"test-k8s-public-ip","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-28T10:57:55.530981Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-24T08:24:40.139725Z","gateway_id":"1145fd31-3b8f-463d-9619-deadccd4509a","id":"2abc0259-8211-43f6-a20f-e539ba8ef8f9","ipam_ip_id":"efb1ff2a-f554-409c-bf2b-061db36a95b7","mac_address":"02:00:00:14:F8:6B","masquerade_enabled":true,"private_network_id":"2177e306-fcad-4127-ba67-ba1abe0d58cb","push_default_route":true,"status":"ready","updated_at":"2025-03-24T08:24:50.577797Z","zone":"fr-par-1"}' headers: Content-Length: - - "1933" + - "416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:58:00 GMT + - Mon, 24 Mar 2025 08:24:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8290,10 +8288,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 81bd8829-9dbc-49eb-9350-db9915365980 + - 8f899a3a-13c9-4078-a07f-c1c357665313 status: 200 OK code: 200 - duration: 169.512875ms + duration: 128.125433ms - id: 169 request: proto: HTTP/1.1 @@ -8309,8 +8307,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-gw/v1/zones/fr-par-1/gateways/cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5 + - 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/k8s/v1/regions/fr-par/clusters/2fd5d612-425f-4b4b-ae74-16eda80368e6 method: GET response: proto: HTTP/2.0 @@ -8318,20 +8316,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1952 + content_length: 1506 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-28T10:57:47.540138Z","gateway_networks":[{"address":null,"created_at":"2025-01-28T10:57:55.340591Z","dhcp":{"address":"192.168.0.1","created_at":"2025-01-28T10:57:46.417152Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"5a90a96f-ded2-4c5f-89a0-f0ed9a5404a8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2025-01-28T10:57:46.417152Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5","id":"3e88db28-c513-41e5-9a53-eed54a3db4ee","ipam_config":null,"mac_address":"02:00:00:19:1C:B1","private_network_id":"8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d","status":"configuring","updated_at":"2025-01-28T10:58:01.245197Z","zone":"fr-par-1"}],"id":"cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5","ip":{"address":"51.15.255.93","created_at":"2025-01-28T10:57:47.521305Z","gateway_id":"cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5","id":"0b2dc034-88ec-4a16-addf-35b6b9d4b496","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"93-255-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-28T10:57:47.521305Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"test-k8s-public-ip","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-28T10:57:55.530981Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"acl_available":true,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2fd5d612-425f-4b4b-ae74-16eda80368e6.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-03-24T08:13:42.105610Z","created_at":"2025-03-24T08:13:42.105600Z","description":"","dns_wildcard":"*.2fd5d612-425f-4b4b-ae74-16eda80368e6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"iam_nodes_group_id":"2ad98fd4-b1c1-438c-971f-d6152cfe2fbe","id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_id":"2177e306-fcad-4127-ba67-ba1abe0d58cb","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","sbs_csi_enabled":true,"status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2025-03-24T08:24:32.787366Z","upgrade_available":false,"version":"1.32.3"}' headers: Content-Length: - - "1952" + - "1506" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:58:05 GMT + - Mon, 24 Mar 2025 08:24:56 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8339,48 +8337,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2f8da507-2bcf-4891-8e12-2f9ef4287f27 + - be5ed1ec-674a-4969-9c48-303d290959eb status: 200 OK code: 200 - duration: 36.57075ms + duration: 120.905479ms - id: 170 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 272 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"test-k8s-public-ip","node_type":"pro2_xxs","autoscaling":false,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":[],"kubelet_args":{},"zone":"fr-par-1","root_volume_type":"default_volume_type","public_ip_disabled":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-gw/v1/zones/fr-par-1/gateways/cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5 - method: GET + - 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/k8s/v1/regions/fr-par/clusters/2fd5d612-425f-4b4b-ae74-16eda80368e6/pools + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1942 + content_length: 607 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-28T10:57:47.540138Z","gateway_networks":[{"address":null,"created_at":"2025-01-28T10:57:55.340591Z","dhcp":{"address":"192.168.0.1","created_at":"2025-01-28T10:57:46.417152Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"5a90a96f-ded2-4c5f-89a0-f0ed9a5404a8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2025-01-28T10:57:46.417152Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5","id":"3e88db28-c513-41e5-9a53-eed54a3db4ee","ipam_config":null,"mac_address":"02:00:00:19:1C:B1","private_network_id":"8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d","status":"ready","updated_at":"2025-01-28T10:58:06.050540Z","zone":"fr-par-1"}],"id":"cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5","ip":{"address":"51.15.255.93","created_at":"2025-01-28T10:57:47.521305Z","gateway_id":"cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5","id":"0b2dc034-88ec-4a16-addf-35b6b9d4b496","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"93-255-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-28T10:57:47.521305Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"test-k8s-public-ip","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-28T10:58:06.250449Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - - "1942" + - "607" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:58:10 GMT + - Mon, 24 Mar 2025 08:24:56 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8388,10 +8388,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 537852ab-9f23-4c42-b0b4-71b800ccc268 + - 3f6c1d38-eab9-45dc-a1d0-c1693e10102d status: 200 OK code: 200 - duration: 50.076208ms + duration: 448.427417ms - id: 171 request: proto: HTTP/1.1 @@ -8407,8 +8407,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-gw/v1/zones/fr-par-1/gateway-networks/3e88db28-c513-41e5-9a53-eed54a3db4ee + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -8416,20 +8416,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 966 + content_length: 607 uncompressed: false - body: '{"address":null,"created_at":"2025-01-28T10:57:55.340591Z","dhcp":{"address":"192.168.0.1","created_at":"2025-01-28T10:57:46.417152Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"5a90a96f-ded2-4c5f-89a0-f0ed9a5404a8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2025-01-28T10:57:46.417152Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5","id":"3e88db28-c513-41e5-9a53-eed54a3db4ee","ipam_config":null,"mac_address":"02:00:00:19:1C:B1","private_network_id":"8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d","status":"ready","updated_at":"2025-01-28T10:58:06.050540Z","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - - "966" + - "607" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:58:10 GMT + - Mon, 24 Mar 2025 08:24:56 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8437,10 +8437,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 97de3e62-e754-4b24-bb0e-48b5bfec0d60 + - 29f3d305-586e-4f95-bfb2-ecbd5e1d9baf status: 200 OK code: 200 - duration: 97.501458ms + duration: 106.228509ms - id: 172 request: proto: HTTP/1.1 @@ -8456,8 +8456,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-gw/v1/zones/fr-par-1/gateway-networks/3e88db28-c513-41e5-9a53-eed54a3db4ee + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -8465,20 +8465,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 966 + content_length: 607 uncompressed: false - body: '{"address":null,"created_at":"2025-01-28T10:57:55.340591Z","dhcp":{"address":"192.168.0.1","created_at":"2025-01-28T10:57:46.417152Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"5a90a96f-ded2-4c5f-89a0-f0ed9a5404a8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2025-01-28T10:57:46.417152Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5","id":"3e88db28-c513-41e5-9a53-eed54a3db4ee","ipam_config":null,"mac_address":"02:00:00:19:1C:B1","private_network_id":"8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d","status":"ready","updated_at":"2025-01-28T10:58:06.050540Z","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - - "966" + - "607" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:58:11 GMT + - Mon, 24 Mar 2025 08:25:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8486,10 +8486,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 66be84f3-a4c7-46d7-8345-f31e8e433cb9 + - 4f9801ea-6ac1-47f2-9bee-cf7b99beff35 status: 200 OK code: 200 - duration: 59.432417ms + duration: 105.737513ms - id: 173 request: proto: HTTP/1.1 @@ -8505,8 +8505,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-gw/v1/zones/fr-par-1/gateways/cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -8514,20 +8514,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1942 + content_length: 607 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-28T10:57:47.540138Z","gateway_networks":[{"address":null,"created_at":"2025-01-28T10:57:55.340591Z","dhcp":{"address":"192.168.0.1","created_at":"2025-01-28T10:57:46.417152Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"5a90a96f-ded2-4c5f-89a0-f0ed9a5404a8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2025-01-28T10:57:46.417152Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5","id":"3e88db28-c513-41e5-9a53-eed54a3db4ee","ipam_config":null,"mac_address":"02:00:00:19:1C:B1","private_network_id":"8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d","status":"ready","updated_at":"2025-01-28T10:58:06.050540Z","zone":"fr-par-1"}],"id":"cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5","ip":{"address":"51.15.255.93","created_at":"2025-01-28T10:57:47.521305Z","gateway_id":"cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5","id":"0b2dc034-88ec-4a16-addf-35b6b9d4b496","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"93-255-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-28T10:57:47.521305Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"test-k8s-public-ip","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-28T10:58:06.250449Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - - "1942" + - "607" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:58:11 GMT + - Mon, 24 Mar 2025 08:25:06 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8535,10 +8535,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 507be46c-723e-4515-8e83-4544551b5331 + - 8817ac47-e947-42ff-88fd-d0f5c797be27 status: 200 OK code: 200 - duration: 39.043333ms + duration: 97.632808ms - id: 174 request: proto: HTTP/1.1 @@ -8554,8 +8554,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-gw/v1/zones/fr-par-1/gateway-networks/3e88db28-c513-41e5-9a53-eed54a3db4ee + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -8563,20 +8563,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 966 + content_length: 607 uncompressed: false - body: '{"address":null,"created_at":"2025-01-28T10:57:55.340591Z","dhcp":{"address":"192.168.0.1","created_at":"2025-01-28T10:57:46.417152Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"5a90a96f-ded2-4c5f-89a0-f0ed9a5404a8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2025-01-28T10:57:46.417152Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5","id":"3e88db28-c513-41e5-9a53-eed54a3db4ee","ipam_config":null,"mac_address":"02:00:00:19:1C:B1","private_network_id":"8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d","status":"ready","updated_at":"2025-01-28T10:58:06.050540Z","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - - "966" + - "607" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:58:11 GMT + - Mon, 24 Mar 2025 08:25:11 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8584,10 +8584,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a8a68f8b-5cee-4a35-b67a-344d2ac591b0 + - 8b643bb1-4a57-43e3-a4ce-d90d9ba2b86c status: 200 OK code: 200 - duration: 58.543125ms + duration: 99.304714ms - id: 175 request: proto: HTTP/1.1 @@ -8603,8 +8603,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/k8s/v1/regions/fr-par/clusters/2174cb82-2a48-41ac-94f0-68305bb9a28a + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -8612,20 +8612,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1447 + content_length: 607 uncompressed: false - body: '{"acl_available":false,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2174cb82-2a48-41ac-94f0-68305bb9a28a.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-01-28T10:46:50.481031Z","created_at":"2025-01-28T10:46:50.481019Z","description":"","dns_wildcard":"*.2174cb82-2a48-41ac-94f0-68305bb9a28a.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sbs_csi_enabled":true,"status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2025-01-28T10:57:42.465800Z","upgrade_available":false,"version":"1.31.2"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - - "1447" + - "607" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:58:11 GMT + - Mon, 24 Mar 2025 08:25:17 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8633,30 +8633,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d986efd0-afed-43e4-bc61-40638b5c0a57 + - 2e5932ed-42c8-4de7-b27c-a8d635f26170 status: 200 OK code: 200 - duration: 59.145292ms + duration: 114.167511ms - id: 176 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 272 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"test-k8s-public-ip","node_type":"pro2_xxs","autoscaling":false,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":[],"kubelet_args":{},"zone":"fr-par-1","root_volume_type":"default_volume_type","public_ip_disabled":true}' + 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/k8s/v1/regions/fr-par/clusters/2174cb82-2a48-41ac-94f0-68305bb9a28a/pools - method: POST + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 + method: GET response: proto: HTTP/2.0 proto_major: 2 @@ -8665,7 +8663,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -8674,9 +8672,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:58:11 GMT + - Mon, 24 Mar 2025 08:25:22 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8684,10 +8682,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5060adfa-39dd-4186-90f5-ff91e6965c25 + - 8761b17a-63a8-4bcb-9551-e905bdfac2d5 status: 200 OK code: 200 - duration: 448.331083ms + duration: 118.296799ms - id: 177 request: proto: HTTP/1.1 @@ -8703,8 +8701,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -8714,7 +8712,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -8723,9 +8721,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:58:11 GMT + - Mon, 24 Mar 2025 08:25:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8733,10 +8731,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f3e0779-5e83-4cb7-9fe8-5c1c0d98927c + - dc065b80-e677-4e6e-b44a-2564cb933a45 status: 200 OK code: 200 - duration: 89.114ms + duration: 110.885829ms - id: 178 request: proto: HTTP/1.1 @@ -8752,8 +8750,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -8763,7 +8761,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -8772,9 +8770,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:58:16 GMT + - Mon, 24 Mar 2025 08:25:32 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8782,10 +8780,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4253819e-1edf-4636-b4df-8b57589b1ef1 + - 7c6dada9-0cf7-4a86-82b9-132a30e9a55d status: 200 OK code: 200 - duration: 63.876792ms + duration: 103.020472ms - id: 179 request: proto: HTTP/1.1 @@ -8801,8 +8799,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -8812,7 +8810,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -8821,9 +8819,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:58:21 GMT + - Mon, 24 Mar 2025 08:25:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8831,10 +8829,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ce2da592-7bb0-4f90-b5da-59ca529e4ccb + - aa8074cd-1eec-4891-9819-b33fd36d7ef2 status: 200 OK code: 200 - duration: 75.925542ms + duration: 99.746607ms - id: 180 request: proto: HTTP/1.1 @@ -8850,8 +8848,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -8861,7 +8859,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -8870,9 +8868,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:58:26 GMT + - Mon, 24 Mar 2025 08:25:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8880,10 +8878,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - be5ce458-d423-4107-8d25-b3924226827d + - ef71f9f8-3d52-488f-b395-83c5c5fab9b6 status: 200 OK code: 200 - duration: 69.446333ms + duration: 112.80982ms - id: 181 request: proto: HTTP/1.1 @@ -8899,8 +8897,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -8910,7 +8908,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -8919,9 +8917,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:58:32 GMT + - Mon, 24 Mar 2025 08:25:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8929,10 +8927,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 20479e22-27fc-43fd-8bbb-74f00858a0a3 + - 6d7b35f7-ea0f-429c-aa5e-1c534f6ef8f4 status: 200 OK code: 200 - duration: 70.022458ms + duration: 116.129808ms - id: 182 request: proto: HTTP/1.1 @@ -8948,8 +8946,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -8959,7 +8957,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -8968,9 +8966,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:58:37 GMT + - Mon, 24 Mar 2025 08:25:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8978,10 +8976,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fd7e36b3-e6f0-408c-ba1f-c3a97455e9b5 + - 261ab403-fcce-4d8f-ab06-16dd65d557b9 status: 200 OK code: 200 - duration: 135.157542ms + duration: 112.53816ms - id: 183 request: proto: HTTP/1.1 @@ -8997,8 +8995,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -9008,7 +9006,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -9017,9 +9015,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:58:42 GMT + - Mon, 24 Mar 2025 08:25:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9027,10 +9025,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b86f9269-05f4-4c7c-a9c7-f8bf079a95bf + - 4d4bbf8e-f3fd-4435-aaf1-d82e7802e53e status: 200 OK code: 200 - duration: 72.563708ms + duration: 110.255809ms - id: 184 request: proto: HTTP/1.1 @@ -9046,8 +9044,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -9057,7 +9055,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -9066,9 +9064,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:58:47 GMT + - Mon, 24 Mar 2025 08:26:03 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9076,10 +9074,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 09852011-c99f-4c73-9adf-c72e262c87e8 + - ef06af4a-2c64-4312-8dd6-d5961338dfae status: 200 OK code: 200 - duration: 73.435334ms + duration: 107.908259ms - id: 185 request: proto: HTTP/1.1 @@ -9095,8 +9093,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -9106,7 +9104,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -9115,9 +9113,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:58:52 GMT + - Mon, 24 Mar 2025 08:26:08 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9125,10 +9123,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 632323c4-6f97-4df9-8917-b93f2bbb184c + - 3467814c-c046-43c5-8d72-d582b713b484 status: 200 OK code: 200 - duration: 74.271291ms + duration: 123.150515ms - id: 186 request: proto: HTTP/1.1 @@ -9144,8 +9142,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -9155,7 +9153,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -9164,9 +9162,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:58:57 GMT + - Mon, 24 Mar 2025 08:26:13 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9174,10 +9172,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3fc50618-aa9d-44bb-8b2e-2df89beb01a6 + - 6c687c20-b556-46b6-9f41-505e40c75fc4 status: 200 OK code: 200 - duration: 73.659042ms + duration: 97.407689ms - id: 187 request: proto: HTTP/1.1 @@ -9193,8 +9191,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -9204,7 +9202,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -9213,9 +9211,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:59:02 GMT + - Mon, 24 Mar 2025 08:26:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9223,10 +9221,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7094dbbd-cf9f-4ebc-b28a-bfa4816bb650 + - 9f427294-c5fd-4358-913a-96a2a974a6bd status: 200 OK code: 200 - duration: 86.282375ms + duration: 118.757413ms - id: 188 request: proto: HTTP/1.1 @@ -9242,8 +9240,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -9253,7 +9251,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -9262,9 +9260,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:59:07 GMT + - Mon, 24 Mar 2025 08:26:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9272,10 +9270,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f93f80e3-befe-45e8-8d75-6e23aed95631 + - 2fdb28fb-71e4-4ef6-8b6d-f956caf32616 status: 200 OK code: 200 - duration: 448.807958ms + duration: 122.221578ms - id: 189 request: proto: HTTP/1.1 @@ -9291,8 +9289,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -9302,7 +9300,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -9311,9 +9309,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:59:13 GMT + - Mon, 24 Mar 2025 08:26:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9321,10 +9319,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 62b137cf-8337-4b5e-ba19-1027f829f411 + - 9f44a652-50bc-4ac7-aed9-43a35cc8bd45 status: 200 OK code: 200 - duration: 146.2985ms + duration: 108.399796ms - id: 190 request: proto: HTTP/1.1 @@ -9340,8 +9338,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -9351,7 +9349,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -9360,9 +9358,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:59:18 GMT + - Mon, 24 Mar 2025 08:26:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9370,10 +9368,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 69128263-9f90-40c9-a71f-c26e13f9c50b + - 6de2779e-175d-44cd-98ed-9973c615eb3e status: 200 OK code: 200 - duration: 68.670542ms + duration: 95.018592ms - id: 191 request: proto: HTTP/1.1 @@ -9389,8 +9387,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -9400,7 +9398,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -9409,9 +9407,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:59:23 GMT + - Mon, 24 Mar 2025 08:26:38 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9419,10 +9417,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - de403be1-d18d-4106-8369-3f4eafcb418c + - cd5dcd67-21c8-434f-9587-1fe0d57908a4 status: 200 OK code: 200 - duration: 74.333875ms + duration: 104.788761ms - id: 192 request: proto: HTTP/1.1 @@ -9438,8 +9436,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -9449,7 +9447,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -9458,9 +9456,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:59:28 GMT + - Mon, 24 Mar 2025 08:26:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9468,10 +9466,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4997fec7-4280-49e5-a885-34263c307a17 + - 581a4623-73eb-42c9-8afc-bd2c2503706f status: 200 OK code: 200 - duration: 62.450125ms + duration: 115.506777ms - id: 193 request: proto: HTTP/1.1 @@ -9487,8 +9485,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -9498,7 +9496,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -9507,9 +9505,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:59:33 GMT + - Mon, 24 Mar 2025 08:26:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9517,10 +9515,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d21cafa0-2b53-42f1-aed6-798cd30b5a1e + - 69131f76-382e-42b8-8698-edf6a720b9df status: 200 OK code: 200 - duration: 68.507958ms + duration: 119.893633ms - id: 194 request: proto: HTTP/1.1 @@ -9536,8 +9534,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -9547,7 +9545,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -9556,9 +9554,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:59:38 GMT + - Mon, 24 Mar 2025 08:26:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9566,10 +9564,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 40f746e9-fb31-49f9-b780-c342297e550c + - b88a1887-7b7f-4437-ad4e-6b9b104ac0de status: 200 OK code: 200 - duration: 113.191917ms + duration: 103.429573ms - id: 195 request: proto: HTTP/1.1 @@ -9585,8 +9583,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -9596,7 +9594,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -9605,9 +9603,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:59:43 GMT + - Mon, 24 Mar 2025 08:26:59 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9615,10 +9613,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4c2664a4-1f80-4175-8555-cb9781f7c87e + - 3d3ac3ae-635f-42fa-a0e0-ce0244e86be0 status: 200 OK code: 200 - duration: 75.693917ms + duration: 101.570764ms - id: 196 request: proto: HTTP/1.1 @@ -9634,8 +9632,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -9645,7 +9643,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -9654,9 +9652,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:59:48 GMT + - Mon, 24 Mar 2025 08:27:04 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9664,10 +9662,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dc943ee2-ae9f-4805-af42-8392099cc3df + - 50d0fe38-b2f2-4cd5-ae3b-6a49524f2c83 status: 200 OK code: 200 - duration: 68.494833ms + duration: 111.881056ms - id: 197 request: proto: HTTP/1.1 @@ -9683,8 +9681,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -9694,7 +9692,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -9703,9 +9701,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:59:53 GMT + - Mon, 24 Mar 2025 08:27:09 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9713,10 +9711,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 99bdd1e6-b118-4c27-a9f9-40edddb9ddc2 + - 09075269-8694-4d8c-85cf-f633bb220af8 status: 200 OK code: 200 - duration: 82.999125ms + duration: 106.686055ms - id: 198 request: proto: HTTP/1.1 @@ -9732,8 +9730,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -9743,7 +9741,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -9752,9 +9750,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:59:58 GMT + - Mon, 24 Mar 2025 08:27:14 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9762,10 +9760,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 35266e7a-0570-430b-9d33-955227f8c099 + - d70a562d-9e25-4f7e-8138-a4c0627d657b status: 200 OK code: 200 - duration: 63.508833ms + duration: 131.487905ms - id: 199 request: proto: HTTP/1.1 @@ -9781,8 +9779,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -9792,7 +9790,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -9801,9 +9799,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:00:03 GMT + - Mon, 24 Mar 2025 08:27:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9811,10 +9809,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7d4c6571-1131-44f5-8a84-ed0b4810a252 + - a7323969-429d-4254-a4ac-29e2cdca8a95 status: 200 OK code: 200 - duration: 58.47825ms + duration: 91.570911ms - id: 200 request: proto: HTTP/1.1 @@ -9830,8 +9828,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -9841,7 +9839,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -9850,9 +9848,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:00:08 GMT + - Mon, 24 Mar 2025 08:27:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9860,10 +9858,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a250accc-8181-498e-b8fc-4a72165687a2 + - f09e9cf1-1534-4d33-af15-3becf3a92d75 status: 200 OK code: 200 - duration: 72.611958ms + duration: 113.947245ms - id: 201 request: proto: HTTP/1.1 @@ -9879,8 +9877,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -9890,7 +9888,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -9899,9 +9897,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:00:14 GMT + - Mon, 24 Mar 2025 08:27:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9909,10 +9907,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8e48a9f5-b703-4055-9576-8310d7f073de + - 6c0a320d-d9f6-4cfd-8562-5846526441c6 status: 200 OK code: 200 - duration: 69.349334ms + duration: 111.338845ms - id: 202 request: proto: HTTP/1.1 @@ -9928,8 +9926,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -9939,7 +9937,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -9948,9 +9946,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:00:19 GMT + - Mon, 24 Mar 2025 08:27:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9958,10 +9956,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 38b8b015-31b5-4f52-8124-c4e846ed85cf + - 25c2c3d5-72ce-4479-8e91-65e7a81e81f6 status: 200 OK code: 200 - duration: 64.506125ms + duration: 117.850382ms - id: 203 request: proto: HTTP/1.1 @@ -9977,8 +9975,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -9988,7 +9986,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -9997,9 +9995,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:00:24 GMT + - Mon, 24 Mar 2025 08:27:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -10007,10 +10005,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 974b0112-13ac-4529-a6a9-647748f4ee4d + - d245289e-ee4e-47d4-80c6-e5286d69ce4e status: 200 OK code: 200 - duration: 62.166833ms + duration: 113.168534ms - id: 204 request: proto: HTTP/1.1 @@ -10026,8 +10024,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -10037,7 +10035,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -10046,9 +10044,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:00:29 GMT + - Mon, 24 Mar 2025 08:27:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -10056,10 +10054,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2146d23b-5076-4a66-b0d9-55d3b0af9d88 + - 05bc3dff-3834-4b9d-b3d1-b27afa549756 status: 200 OK code: 200 - duration: 70.839709ms + duration: 135.252938ms - id: 205 request: proto: HTTP/1.1 @@ -10075,8 +10073,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -10086,7 +10084,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -10095,9 +10093,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:00:34 GMT + - Mon, 24 Mar 2025 08:27:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -10105,10 +10103,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 710cc063-5236-42d4-84fa-b787b321e88a + - 33001bbd-b53b-480a-a71a-48b56b40633c status: 200 OK code: 200 - duration: 66.936917ms + duration: 109.614454ms - id: 206 request: proto: HTTP/1.1 @@ -10124,8 +10122,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -10135,7 +10133,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -10144,9 +10142,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:00:39 GMT + - Mon, 24 Mar 2025 08:27:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -10154,10 +10152,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 727635ed-4f98-45cc-8124-86b9aac2882e + - 4c826665-1c98-4604-8a6f-b379b5b67a22 status: 200 OK code: 200 - duration: 73.334083ms + duration: 106.957621ms - id: 207 request: proto: HTTP/1.1 @@ -10173,8 +10171,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -10184,7 +10182,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -10193,9 +10191,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:00:44 GMT + - Mon, 24 Mar 2025 08:28:00 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -10203,10 +10201,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 64f08a9d-f7a3-4337-96c4-318d793b5996 + - 69977c9a-290c-4608-8641-12305930dfb6 status: 200 OK code: 200 - duration: 118.847709ms + duration: 111.600717ms - id: 208 request: proto: HTTP/1.1 @@ -10222,8 +10220,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -10233,7 +10231,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -10242,9 +10240,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:00:49 GMT + - Mon, 24 Mar 2025 08:28:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -10252,10 +10250,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ed23c53-e1ee-4374-b852-1c1bfd3bed5d + - 36360537-e379-4bde-a8c3-4d94a46e153c status: 200 OK code: 200 - duration: 71.363667ms + duration: 117.947937ms - id: 209 request: proto: HTTP/1.1 @@ -10271,8 +10269,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -10282,7 +10280,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -10291,9 +10289,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:00:54 GMT + - Mon, 24 Mar 2025 08:28:10 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -10301,10 +10299,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6587cd85-a46f-4f8b-aeec-d70a2c76cdf3 + - 95648049-cc94-4cb9-91fe-8e813a394478 status: 200 OK code: 200 - duration: 119.647458ms + duration: 129.825328ms - id: 210 request: proto: HTTP/1.1 @@ -10320,8 +10318,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -10331,7 +10329,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -10340,9 +10338,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:00:59 GMT + - Mon, 24 Mar 2025 08:28:16 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -10350,10 +10348,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eb46c13f-63dc-4f9e-b301-fb70e8b91343 + - e1d9bcc1-41bd-4527-a274-74a6ae9813c4 status: 200 OK code: 200 - duration: 71.336792ms + duration: 118.245973ms - id: 211 request: proto: HTTP/1.1 @@ -10369,8 +10367,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -10380,7 +10378,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -10389,9 +10387,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:01:04 GMT + - Mon, 24 Mar 2025 08:28:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -10399,10 +10397,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 71fb8ee3-69df-4b40-8b9e-ef421018b94a + - 5bc5cb13-8030-4abb-9e56-ae136a8f631a status: 200 OK code: 200 - duration: 68.969333ms + duration: 105.37599ms - id: 212 request: proto: HTTP/1.1 @@ -10418,8 +10416,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -10429,7 +10427,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -10438,9 +10436,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:01:09 GMT + - Mon, 24 Mar 2025 08:28:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -10448,10 +10446,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 63782ec2-9eb8-499f-84c8-4a799f9ffb5d + - 81a752ef-4f57-4dc7-809b-b36312595605 status: 200 OK code: 200 - duration: 74.391375ms + duration: 102.198157ms - id: 213 request: proto: HTTP/1.1 @@ -10467,8 +10465,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -10478,7 +10476,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -10487,9 +10485,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:01:15 GMT + - Mon, 24 Mar 2025 08:28:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -10497,10 +10495,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fd42c3e8-5f5f-46de-a7fb-97e7365cdc6c + - 38d5b9b5-08d1-4eea-a419-f99af5ef328c status: 200 OK code: 200 - duration: 77.251875ms + duration: 105.528957ms - id: 214 request: proto: HTTP/1.1 @@ -10516,8 +10514,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -10527,7 +10525,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -10536,9 +10534,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:01:20 GMT + - Mon, 24 Mar 2025 08:28:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -10546,10 +10544,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bbb4e822-9016-4181-ae61-39a93be01ea1 + - c255f6d4-9fd3-4b1e-bd4b-2f69aef0d479 status: 200 OK code: 200 - duration: 130.961042ms + duration: 107.172114ms - id: 215 request: proto: HTTP/1.1 @@ -10565,8 +10563,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -10576,7 +10574,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -10585,9 +10583,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:01:25 GMT + - Mon, 24 Mar 2025 08:28:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -10595,10 +10593,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 58a0fa9f-f579-4c49-bda8-69cdcd7f0a67 + - 93b69e61-ab61-492d-8e66-f5761192d8e4 status: 200 OK code: 200 - duration: 61.975708ms + duration: 105.764984ms - id: 216 request: proto: HTTP/1.1 @@ -10614,8 +10612,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -10625,7 +10623,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -10634,9 +10632,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:01:30 GMT + - Mon, 24 Mar 2025 08:28:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -10644,10 +10642,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 42d36a97-1732-4089-95ac-7fd29d84c5c4 + - f1820239-6a52-4a22-b969-629eae2e9e4b status: 200 OK code: 200 - duration: 69.301583ms + duration: 101.263819ms - id: 217 request: proto: HTTP/1.1 @@ -10663,8 +10661,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -10674,7 +10672,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -10683,9 +10681,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:01:35 GMT + - Mon, 24 Mar 2025 08:28:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -10693,10 +10691,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 950176f5-8ed8-4199-ba31-19d62933f13e + - ca2fa1ec-7a36-42d7-ae2c-4e8ab5620647 status: 200 OK code: 200 - duration: 69.755791ms + duration: 117.411941ms - id: 218 request: proto: HTTP/1.1 @@ -10712,8 +10710,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -10723,7 +10721,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -10732,9 +10730,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:01:40 GMT + - Mon, 24 Mar 2025 08:28:56 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -10742,10 +10740,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3ca18096-987d-48df-9386-d02e5b86d3e2 + - b9a4e344-0e4b-4242-a738-8d862b840b70 status: 200 OK code: 200 - duration: 72.678917ms + duration: 120.443272ms - id: 219 request: proto: HTTP/1.1 @@ -10761,8 +10759,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -10772,7 +10770,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -10781,9 +10779,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:01:45 GMT + - Mon, 24 Mar 2025 08:29:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -10791,10 +10789,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6a1f8124-555a-4157-b858-c4e45011cafb + - 1e00897e-e4cb-4ae7-a300-e0f3b6a33b30 status: 200 OK code: 200 - duration: 68.284583ms + duration: 106.516254ms - id: 220 request: proto: HTTP/1.1 @@ -10810,8 +10808,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -10821,7 +10819,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -10830,9 +10828,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:01:50 GMT + - Mon, 24 Mar 2025 08:29:07 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -10840,10 +10838,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1047820a-28a6-4f64-836e-692e5ee230b7 + - 8ceb836a-4863-4c88-903e-4dd9d79ee590 status: 200 OK code: 200 - duration: 69.538458ms + duration: 120.667397ms - id: 221 request: proto: HTTP/1.1 @@ -10859,8 +10857,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -10870,7 +10868,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -10879,9 +10877,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:01:55 GMT + - Mon, 24 Mar 2025 08:29:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -10889,10 +10887,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1157e9fa-f95f-4835-9fa7-e44047485606 + - 42abbf46-9889-4b9e-aa02-14315b5bd3b1 status: 200 OK code: 200 - duration: 73.130541ms + duration: 112.809146ms - id: 222 request: proto: HTTP/1.1 @@ -10908,8 +10906,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -10919,7 +10917,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -10928,9 +10926,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:02:00 GMT + - Mon, 24 Mar 2025 08:29:17 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -10938,10 +10936,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f5847e7d-b880-4edc-a9be-c4ccd4cdb6a6 + - 80d709ab-7793-496b-b820-fd286e31bcdd status: 200 OK code: 200 - duration: 71.957834ms + duration: 99.166683ms - id: 223 request: proto: HTTP/1.1 @@ -10957,8 +10955,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -10968,7 +10966,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -10977,9 +10975,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:02:05 GMT + - Mon, 24 Mar 2025 08:29:22 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -10987,10 +10985,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 813cab8a-a9fd-444f-b8bb-cb5a9c5060e4 + - 3c7d737b-0d0b-4588-9977-4c9392787164 status: 200 OK code: 200 - duration: 73.794625ms + duration: 110.981285ms - id: 224 request: proto: HTTP/1.1 @@ -11006,8 +11004,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -11017,7 +11015,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -11026,9 +11024,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:02:10 GMT + - Mon, 24 Mar 2025 08:29:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -11036,10 +11034,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c3dffc05-3802-4f01-8a47-9916f884f195 + - 7099639d-0a0a-492b-bc83-e0b0065221b4 status: 200 OK code: 200 - duration: 73.538083ms + duration: 116.789696ms - id: 225 request: proto: HTTP/1.1 @@ -11055,8 +11053,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -11066,7 +11064,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -11075,9 +11073,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:02:15 GMT + - Mon, 24 Mar 2025 08:29:32 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -11085,10 +11083,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a32de33a-cfa8-4d30-ab87-1f9231e27090 + - bb325a05-bab6-4147-84e3-b9a2002b36f2 status: 200 OK code: 200 - duration: 172.7325ms + duration: 99.198787ms - id: 226 request: proto: HTTP/1.1 @@ -11104,8 +11102,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -11115,7 +11113,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -11124,9 +11122,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:02:21 GMT + - Mon, 24 Mar 2025 08:29:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -11134,10 +11132,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c9b3e16a-a657-4d19-a149-f07a62352c5b + - c9f2167f-a4ce-4dd7-a19e-2baedc789b3f status: 200 OK code: 200 - duration: 75.75825ms + duration: 109.571267ms - id: 227 request: proto: HTTP/1.1 @@ -11153,8 +11151,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -11164,7 +11162,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -11173,9 +11171,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:02:26 GMT + - Mon, 24 Mar 2025 08:29:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -11183,10 +11181,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4edc6e68-2982-4527-9954-51725d2efac8 + - ce09e937-a6a2-44b3-85b1-9d65f459d2c3 status: 200 OK code: 200 - duration: 67.970459ms + duration: 115.108461ms - id: 228 request: proto: HTTP/1.1 @@ -11202,8 +11200,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -11213,7 +11211,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -11222,9 +11220,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:02:31 GMT + - Mon, 24 Mar 2025 08:29:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -11232,10 +11230,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1156daa1-98b0-4b77-b57f-935c55b81b31 + - 8aaaab8b-bf80-4670-b8e5-4bfe06d44e7e status: 200 OK code: 200 - duration: 68.210583ms + duration: 100.364027ms - id: 229 request: proto: HTTP/1.1 @@ -11251,8 +11249,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -11262,7 +11260,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -11271,9 +11269,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:02:36 GMT + - Mon, 24 Mar 2025 08:29:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -11281,10 +11279,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 16fb92d9-8a70-46e1-bf83-33571e536aed + - 63861b32-949f-43e3-b881-2b09d8cb4177 status: 200 OK code: 200 - duration: 63.093291ms + duration: 116.974762ms - id: 230 request: proto: HTTP/1.1 @@ -11300,8 +11298,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -11311,7 +11309,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -11320,9 +11318,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:02:41 GMT + - Mon, 24 Mar 2025 08:29:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -11330,10 +11328,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5f1b4f14-d7f2-432b-9540-5323dca11492 + - dde096fc-52e0-4911-b986-d727f9c6f797 status: 200 OK code: 200 - duration: 75.548583ms + duration: 125.58223ms - id: 231 request: proto: HTTP/1.1 @@ -11349,8 +11347,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -11360,7 +11358,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -11369,9 +11367,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:02:46 GMT + - Mon, 24 Mar 2025 08:30:03 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -11379,10 +11377,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7c03472a-89be-4392-b530-2bfae0772f3a + - 248b56a2-32c0-44bc-94cc-007bb665b827 status: 200 OK code: 200 - duration: 73.386ms + duration: 103.727808ms - id: 232 request: proto: HTTP/1.1 @@ -11398,8 +11396,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -11409,7 +11407,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -11418,9 +11416,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:02:51 GMT + - Mon, 24 Mar 2025 08:30:08 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -11428,10 +11426,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e0e4de1c-205e-4c69-b0b9-6b30ef5c5b4d + - cba873f0-056a-4c09-a61a-94435310ef53 status: 200 OK code: 200 - duration: 60.50675ms + duration: 116.405528ms - id: 233 request: proto: HTTP/1.1 @@ -11447,8 +11445,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -11458,7 +11456,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -11467,9 +11465,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:02:56 GMT + - Mon, 24 Mar 2025 08:30:13 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -11477,10 +11475,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7b9ec7c0-05aa-42a9-a6a3-17a3c42dda0d + - fa6c3502-2edb-49fe-860e-5de04c2293e7 status: 200 OK code: 200 - duration: 70.017625ms + duration: 117.688691ms - id: 234 request: proto: HTTP/1.1 @@ -11496,8 +11494,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -11507,7 +11505,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -11516,9 +11514,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:03:01 GMT + - Mon, 24 Mar 2025 08:30:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -11526,10 +11524,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4fe87291-8388-4a2d-b4a5-9e82cf6fbb84 + - 5535cfb4-f8a3-405d-8459-da9544f86c53 status: 200 OK code: 200 - duration: 69.220041ms + duration: 108.88043ms - id: 235 request: proto: HTTP/1.1 @@ -11545,8 +11543,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -11556,7 +11554,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -11565,9 +11563,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:03:06 GMT + - Mon, 24 Mar 2025 08:30:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -11575,10 +11573,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - da3a4313-7032-45d5-acc0-789c40a51432 + - 94f0d052-fef5-43e9-95e1-b3bfc425eda1 status: 200 OK code: 200 - duration: 60.863ms + duration: 101.310409ms - id: 236 request: proto: HTTP/1.1 @@ -11594,8 +11592,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -11605,7 +11603,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -11614,9 +11612,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:03:11 GMT + - Mon, 24 Mar 2025 08:30:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -11624,10 +11622,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f7a4045-c4bf-4be7-8b01-5b9fa3c6d082 + - d1e71b71-0c95-4437-a28b-b5fa51c25ee1 status: 200 OK code: 200 - duration: 75.971208ms + duration: 116.843858ms - id: 237 request: proto: HTTP/1.1 @@ -11643,8 +11641,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -11654,7 +11652,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -11663,9 +11661,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:03:16 GMT + - Mon, 24 Mar 2025 08:30:34 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -11673,10 +11671,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b2919e03-20bc-4f99-941e-b160c35f2d6e + - e93e233c-f5de-4398-8a51-5b7cdbc56f09 status: 200 OK code: 200 - duration: 78.652709ms + duration: 104.570342ms - id: 238 request: proto: HTTP/1.1 @@ -11692,8 +11690,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -11703,7 +11701,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -11712,9 +11710,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:03:22 GMT + - Mon, 24 Mar 2025 08:30:39 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -11722,10 +11720,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2807bdc4-52ef-4c4d-936e-349a7d302aaa + - beb8e3b3-cc10-46f0-b6d2-1011adb6e7fc status: 200 OK code: 200 - duration: 69.342708ms + duration: 108.070095ms - id: 239 request: proto: HTTP/1.1 @@ -11741,8 +11739,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -11752,7 +11750,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -11761,9 +11759,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:03:27 GMT + - Mon, 24 Mar 2025 08:30:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -11771,10 +11769,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1de526e5-e23f-40fd-a27a-c59255e45695 + - 388f0dc0-dbc4-4a4e-a0f1-8bdf4e2b56f0 status: 200 OK code: 200 - duration: 82.443375ms + duration: 111.456609ms - id: 240 request: proto: HTTP/1.1 @@ -11790,8 +11788,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -11801,7 +11799,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -11810,9 +11808,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:03:32 GMT + - Mon, 24 Mar 2025 08:30:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -11820,10 +11818,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c97e15c2-9ff7-4210-8e65-57ba23a505a3 + - 9b414a9a-d8f9-446b-abc8-400d018360f4 status: 200 OK code: 200 - duration: 75.625625ms + duration: 122.140613ms - id: 241 request: proto: HTTP/1.1 @@ -11839,8 +11837,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -11850,7 +11848,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -11859,9 +11857,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:03:37 GMT + - Mon, 24 Mar 2025 08:30:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -11869,10 +11867,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c9cc1b54-e682-4bf8-b8b0-df81d871b791 + - f63bfe65-d77a-4f7a-bdbd-efc933d9559d status: 200 OK code: 200 - duration: 73.275417ms + duration: 106.706583ms - id: 242 request: proto: HTTP/1.1 @@ -11888,8 +11886,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -11899,7 +11897,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -11908,9 +11906,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:03:42 GMT + - Mon, 24 Mar 2025 08:30:59 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -11918,10 +11916,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 12d9a5e5-dd6b-4c2a-bfa1-d4eabfa92c2a + - 3c1efcb8-c1d4-4acc-96af-e809a977a419 status: 200 OK code: 200 - duration: 83.035625ms + duration: 98.840006ms - id: 243 request: proto: HTTP/1.1 @@ -11937,8 +11935,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -11948,7 +11946,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -11957,9 +11955,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:03:47 GMT + - Mon, 24 Mar 2025 08:31:04 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -11967,10 +11965,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 68408b50-1323-4a76-800f-8277c9692803 + - a68e5089-c73d-4646-86c2-e12eee076fd8 status: 200 OK code: 200 - duration: 86.685667ms + duration: 99.504101ms - id: 244 request: proto: HTTP/1.1 @@ -11986,8 +11984,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -11997,7 +11995,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -12006,9 +12004,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:03:52 GMT + - Mon, 24 Mar 2025 08:31:09 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -12016,10 +12014,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - faf686bb-5cec-4058-852b-3b761ff807e4 + - bdf3771c-5fe0-4c25-a200-86963981c969 status: 200 OK code: 200 - duration: 71.388083ms + duration: 139.692908ms - id: 245 request: proto: HTTP/1.1 @@ -12035,8 +12033,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -12046,7 +12044,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -12055,9 +12053,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:03:57 GMT + - Mon, 24 Mar 2025 08:31:14 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -12065,10 +12063,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b81e0e10-27d8-429e-aaa0-7a47adb8604f + - ffd101c3-429e-463c-8570-a9a4ba764d22 status: 200 OK code: 200 - duration: 67.883916ms + duration: 101.44402ms - id: 246 request: proto: HTTP/1.1 @@ -12084,8 +12082,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -12095,7 +12093,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -12104,9 +12102,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:04:02 GMT + - Mon, 24 Mar 2025 08:31:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -12114,10 +12112,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cca30a5b-81e2-407f-b22f-30c3815114c1 + - 9d17558a-c571-49ec-83e9-7bf502526d27 status: 200 OK code: 200 - duration: 87.469792ms + duration: 110.445089ms - id: 247 request: proto: HTTP/1.1 @@ -12133,8 +12131,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -12144,7 +12142,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -12153,9 +12151,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:04:07 GMT + - Mon, 24 Mar 2025 08:31:25 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -12163,10 +12161,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 06990f1c-0f35-453e-90c2-f8bf0a3c299b + - 2ace4f33-a132-4201-9981-589fe33305e6 status: 200 OK code: 200 - duration: 62.714917ms + duration: 108.64794ms - id: 248 request: proto: HTTP/1.1 @@ -12182,8 +12180,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -12193,7 +12191,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -12202,9 +12200,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:04:12 GMT + - Mon, 24 Mar 2025 08:31:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -12212,10 +12210,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4991ce0a-9c33-407f-b50b-c293694f4af7 + - a877176e-c3a7-4ac3-899c-8d45d190be54 status: 200 OK code: 200 - duration: 70.148042ms + duration: 107.094961ms - id: 249 request: proto: HTTP/1.1 @@ -12231,8 +12229,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -12242,7 +12240,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -12251,9 +12249,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:04:17 GMT + - Mon, 24 Mar 2025 08:31:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -12261,10 +12259,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b33d4513-5efd-45fd-ba39-b80c619a7b65 + - 192f6fc4-e9a9-485f-8f15-d07a2aea4ee7 status: 200 OK code: 200 - duration: 80.018875ms + duration: 115.832376ms - id: 250 request: proto: HTTP/1.1 @@ -12280,8 +12278,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -12291,7 +12289,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -12300,9 +12298,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:04:22 GMT + - Mon, 24 Mar 2025 08:31:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -12310,10 +12308,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 272b62e1-3722-4737-8dc4-231f4008bc51 + - da498bde-5c6d-4e40-90d7-6d4a41785f58 status: 200 OK code: 200 - duration: 71.991166ms + duration: 114.000629ms - id: 251 request: proto: HTTP/1.1 @@ -12329,8 +12327,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -12340,7 +12338,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -12349,9 +12347,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:04:28 GMT + - Mon, 24 Mar 2025 08:31:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -12359,10 +12357,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3af6057b-4a2e-40c7-871e-8d35704c5588 + - 1359ddb5-8ad6-4444-a6cf-e47520660fb3 status: 200 OK code: 200 - duration: 103.003041ms + duration: 102.798561ms - id: 252 request: proto: HTTP/1.1 @@ -12378,8 +12376,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -12389,7 +12387,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -12398,9 +12396,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:04:33 GMT + - Mon, 24 Mar 2025 08:31:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -12408,10 +12406,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 820ebf7e-3a40-412c-a1f8-aad428f56c6b + - 2f9eb59e-7737-4292-b85c-24a26a877e2a status: 200 OK code: 200 - duration: 75.156125ms + duration: 107.328666ms - id: 253 request: proto: HTTP/1.1 @@ -12427,8 +12425,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -12438,7 +12436,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-03-24T08:24:56.202623Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "607" @@ -12447,9 +12445,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:04:38 GMT + - Mon, 24 Mar 2025 08:31:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -12457,10 +12455,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1d7f2fdc-8f21-4183-a4d1-7c8772308db0 + - 4d2b52dd-bc16-4ef9-8ab1-facafce8f07d status: 200 OK code: 200 - duration: 67.020791ms + duration: 124.086253ms - id: 254 request: proto: HTTP/1.1 @@ -12476,8 +12474,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -12485,20 +12483,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 607 + content_length: 605 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"ready","tags":[],"updated_at":"2025-03-24T08:31:59.543105Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - - "607" + - "605" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:04:43 GMT + - Mon, 24 Mar 2025 08:32:00 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -12506,10 +12504,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f8fa4f09-1b7e-4d2f-8fd8-2173fe2a2520 + - 5da37d88-0800-4240-95ba-34cb5e005c08 status: 200 OK code: 200 - duration: 184.013625ms + duration: 100.510989ms - id: 255 request: proto: HTTP/1.1 @@ -12525,8 +12523,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/clusters/2fd5d612-425f-4b4b-ae74-16eda80368e6 method: GET response: proto: HTTP/2.0 @@ -12534,20 +12532,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 607 + content_length: 1498 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"acl_available":true,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2fd5d612-425f-4b4b-ae74-16eda80368e6.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-03-24T08:13:42.105610Z","created_at":"2025-03-24T08:13:42.105600Z","description":"","dns_wildcard":"*.2fd5d612-425f-4b4b-ae74-16eda80368e6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"iam_nodes_group_id":"2ad98fd4-b1c1-438c-971f-d6152cfe2fbe","id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_id":"2177e306-fcad-4127-ba67-ba1abe0d58cb","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","sbs_csi_enabled":true,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2025-03-24T08:26:33.481110Z","upgrade_available":false,"version":"1.32.3"}' headers: Content-Length: - - "607" + - "1498" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:04:48 GMT + - Mon, 24 Mar 2025 08:32:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -12555,10 +12553,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e435bedc-3b8b-42a2-8978-c792bce0c952 + - dfc7aca9-59e2-4d19-b16b-7041ff3296d1 status: 200 OK code: 200 - duration: 75.746959ms + duration: 105.340685ms - id: 256 request: proto: HTTP/1.1 @@ -12574,8 +12572,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -12583,20 +12581,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 607 + content_length: 605 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"ready","tags":[],"updated_at":"2025-03-24T08:31:59.543105Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - - "607" + - "605" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:04:53 GMT + - Mon, 24 Mar 2025 08:32:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -12604,10 +12602,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 920f4411-b514-479d-a050-f2e45e778c22 + - 0c7224cf-1b93-43c5-af81-59906a10f10d status: 200 OK code: 200 - duration: 77.10775ms + duration: 111.52918ms - id: 257 request: proto: HTTP/1.1 @@ -12623,8 +12621,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/clusters/2fd5d612-425f-4b4b-ae74-16eda80368e6/nodes?order_by=created_at_asc&page=1&pool_id=2f840514-c14f-4ad9-9f5a-74d1a2348251&status=unknown method: GET response: proto: HTTP/2.0 @@ -12632,20 +12630,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 607 + content_length: 626 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"nodes":[{"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2025-03-24T08:27:04.920855Z","error_message":"","id":"954098d7-bde5-48f9-aa47-3a448ee4d00b","name":"scw-test-k8s-public-i-test-k8s-public-i-954098","pool_id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","provider_id":"scaleway://instance/fr-par-1/c3f70017-7e3e-4089-820b-3e100d022675","public_ip_v4":"","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2025-03-24T08:31:59.531702Z"}],"total_count":1}' headers: Content-Length: - - "607" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:04:58 GMT + - Mon, 24 Mar 2025 08:32:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -12653,10 +12651,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0904372e-97e2-4943-ac3f-9667acb3892c + - e0e8d9c0-da97-4f17-97fa-7fd5ff37a7a1 status: 200 OK code: 200 - duration: 80.704167ms + duration: 97.418537ms - id: 258 request: proto: HTTP/1.1 @@ -12672,8 +12670,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/clusters/2fd5d612-425f-4b4b-ae74-16eda80368e6 method: GET response: proto: HTTP/2.0 @@ -12681,20 +12679,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 607 + content_length: 1498 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"acl_available":true,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2fd5d612-425f-4b4b-ae74-16eda80368e6.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-03-24T08:13:42.105610Z","created_at":"2025-03-24T08:13:42.105600Z","description":"","dns_wildcard":"*.2fd5d612-425f-4b4b-ae74-16eda80368e6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"iam_nodes_group_id":"2ad98fd4-b1c1-438c-971f-d6152cfe2fbe","id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_id":"2177e306-fcad-4127-ba67-ba1abe0d58cb","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","sbs_csi_enabled":true,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2025-03-24T08:26:33.481110Z","upgrade_available":false,"version":"1.32.3"}' headers: Content-Length: - - "607" + - "1498" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:05:03 GMT + - Mon, 24 Mar 2025 08:32:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -12702,10 +12700,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 91940f54-76c6-47ea-bf4b-d3a24dd1796a + - ab5a4a06-ce2d-4d32-896f-d632be835a4f status: 200 OK code: 200 - duration: 90.797125ms + duration: 108.2014ms - id: 259 request: proto: HTTP/1.1 @@ -12721,8 +12719,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2177e306-fcad-4127-ba67-ba1abe0d58cb method: GET response: proto: HTTP/2.0 @@ -12730,20 +12728,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 607 + content_length: 1022 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-24T08:13:40.115789Z","dhcp_enabled":true,"id":"2177e306-fcad-4127-ba67-ba1abe0d58cb","name":"test-k8s-public-ip","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-03-24T08:13:40.115789Z","id":"75b9567d-37a3-4569-8d17-afedfcc4befa","private_network_id":"2177e306-fcad-4127-ba67-ba1abe0d58cb","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.56.0/22","updated_at":"2025-03-24T08:13:40.115789Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-03-24T08:13:40.115789Z","id":"866214a1-7134-45c3-9414-b914c8766708","private_network_id":"2177e306-fcad-4127-ba67-ba1abe0d58cb","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:ec3b::/64","updated_at":"2025-03-24T08:13:40.115789Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-03-24T08:24:46.613597Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "607" + - "1022" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:05:08 GMT + - Mon, 24 Mar 2025 08:32:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -12751,10 +12749,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a554f4f2-1bde-4840-9505-a67c82c26b26 + - 561f345c-a5c2-4b6a-a9e9-8960a5b1bf5e status: 200 OK code: 200 - duration: 63.061917ms + duration: 96.363261ms - id: 260 request: proto: HTTP/1.1 @@ -12770,8 +12768,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -12779,20 +12777,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 607 + content_length: 605 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"ready","tags":[],"updated_at":"2025-03-24T08:31:59.543105Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - - "607" + - "605" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:05:13 GMT + - Mon, 24 Mar 2025 08:32:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -12800,10 +12798,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1dab973a-211f-44f4-af59-9e14aa9083e7 + - 8f160d09-75e5-4017-9fc5-ba4d872a6ddb status: 200 OK code: 200 - duration: 74.907667ms + duration: 102.50552ms - id: 261 request: proto: HTTP/1.1 @@ -12819,8 +12817,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/clusters/2fd5d612-425f-4b4b-ae74-16eda80368e6/nodes?order_by=created_at_asc&pool_id=2f840514-c14f-4ad9-9f5a-74d1a2348251&status=unknown method: GET response: proto: HTTP/2.0 @@ -12828,20 +12826,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 607 + content_length: 626 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"nodes":[{"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2025-03-24T08:27:04.920855Z","error_message":"","id":"954098d7-bde5-48f9-aa47-3a448ee4d00b","name":"scw-test-k8s-public-i-test-k8s-public-i-954098","pool_id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","provider_id":"scaleway://instance/fr-par-1/c3f70017-7e3e-4089-820b-3e100d022675","public_ip_v4":"","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2025-03-24T08:31:59.531702Z"}],"total_count":1}' headers: Content-Length: - - "607" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:05:18 GMT + - Mon, 24 Mar 2025 08:32:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -12849,10 +12847,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 635ade92-c246-4654-8465-2693ef83387c + - 1a9fc16a-fb4c-41f2-bd30-45dcd3ed7bc6 status: 200 OK code: 200 - duration: 99.913417ms + duration: 114.311436ms - id: 262 request: proto: HTTP/1.1 @@ -12868,8 +12866,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/instance/v1/zones/fr-par-1/servers/c3f70017-7e3e-4089-820b-3e100d022675 method: GET response: proto: HTTP/2.0 @@ -12877,20 +12875,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 607 + content_length: 2591 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","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":"PRO2-XXS","creation_date":"2025-03-24T08:27:05.436366+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"filesystems":[],"hostname":"scw-test-k8s-public-i-test-k8s-public-i-954098","id":"c3f70017-7e3e-4089-820b-3e100d022675","image":{"arch":"x86_64","creation_date":"2024-12-13T14:25:42.929071+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"f587416b-3d51-4582-808f-dbbaa617a61a","modification_date":"2024-12-13T14:25:42.929071+00:00","name":"k8s_base_node_2024-12-13_sbs","organization":"a6c1e019-9bc0-49c8-81c6-1d7e6d25426d","project":"a6c1e019-9bc0-49c8-81c6-1d7e6d25426d","public":true,"root_volume":{"id":"164c4014-2874-481f-b194-ce63ab76f0da","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"20","hypervisor_id":"801","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:9e:8a:33","maintenances":[],"modification_date":"2025-03-24T08:27:11.006164+00:00","name":"scw-test-k8s-public-i-test-k8s-public-i-954098","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-03-24T08:27:06.116928+00:00","id":"b0e904df-7c43-49b6-97cb-95f0f109b03c","ipam_ip_ids":["9b0607f0-8c98-4f5f-a2a9-b4ca6f755d94","469cc098-9027-4c76-84c4-f02bb7af5af3"],"mac_address":"02:00:00:1b:6f:26","modification_date":"2025-03-24T08:27:06.260784+00:00","private_network_id":"2177e306-fcad-4127-ba67-ba1abe0d58cb","server_id":"c3f70017-7e3e-4089-820b-3e100d022675","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":"5d95afbd-06ce-4334-b477-ee883e89524b","name":"kubernetes 2fd5d612-425f-4b4b-ae74-16eda80368e6"},"state":"running","state_detail":"booting kernel","tags":["kapsule=2fd5d612-425f-4b4b-ae74-16eda80368e6","pool=2f840514-c14f-4ad9-9f5a-74d1a2348251","pool-name=test-k8s-public-ip","runtime=containerd","managed=true","node=954098d7-bde5-48f9-aa47-3a448ee4d00b"],"volumes":{"0":{"boot":true,"id":"b48c16ea-e547-43a6-94df-43560cfe2c29","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "607" + - "2591" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:05:24 GMT + - Mon, 24 Mar 2025 08:32:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -12898,10 +12896,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7d35ccd3-d256-4284-a075-770129947068 + - 06bcc6e2-519e-4b73-8b5c-674fb00fddc9 status: 200 OK code: 200 - duration: 60.583416ms + duration: 230.477319ms - id: 263 request: proto: HTTP/1.1 @@ -12917,8 +12915,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2177e306-fcad-4127-ba67-ba1abe0d58cb method: GET response: proto: HTTP/2.0 @@ -12926,20 +12924,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 607 + content_length: 1022 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"scaling","tags":[],"updated_at":"2025-01-28T10:58:11.260467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-24T08:13:40.115789Z","dhcp_enabled":true,"id":"2177e306-fcad-4127-ba67-ba1abe0d58cb","name":"test-k8s-public-ip","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-03-24T08:13:40.115789Z","id":"75b9567d-37a3-4569-8d17-afedfcc4befa","private_network_id":"2177e306-fcad-4127-ba67-ba1abe0d58cb","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.56.0/22","updated_at":"2025-03-24T08:13:40.115789Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-03-24T08:13:40.115789Z","id":"866214a1-7134-45c3-9414-b914c8766708","private_network_id":"2177e306-fcad-4127-ba67-ba1abe0d58cb","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:ec3b::/64","updated_at":"2025-03-24T08:13:40.115789Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-03-24T08:24:46.613597Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "607" + - "1022" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:05:29 GMT + - Mon, 24 Mar 2025 08:32:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -12947,10 +12945,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3356b7c9-26e1-4535-854b-16bbba601ac2 + - be5d7537-2f61-4ed6-885a-8598311327a9 status: 200 OK code: 200 - duration: 201.6145ms + duration: 104.867078ms - id: 264 request: proto: HTTP/1.1 @@ -12966,8 +12964,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/1145fd31-3b8f-463d-9619-deadccd4509a method: GET response: proto: HTTP/2.0 @@ -12975,20 +12973,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 605 + content_length: 1323 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"ready","tags":[],"updated_at":"2025-01-28T11:05:30.988710Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T08:24:34.029175Z","gateway_networks":[{"created_at":"2025-03-24T08:24:40.139725Z","gateway_id":"1145fd31-3b8f-463d-9619-deadccd4509a","id":"2abc0259-8211-43f6-a20f-e539ba8ef8f9","ipam_ip_id":"efb1ff2a-f554-409c-bf2b-061db36a95b7","mac_address":"02:00:00:14:F8:6B","masquerade_enabled":true,"private_network_id":"2177e306-fcad-4127-ba67-ba1abe0d58cb","push_default_route":true,"status":"ready","updated_at":"2025-03-24T08:24:50.577797Z","zone":"fr-par-1"}],"id":"1145fd31-3b8f-463d-9619-deadccd4509a","ipv4":{"address":"51.15.244.79","created_at":"2025-03-24T08:24:34.007617Z","gateway_id":"1145fd31-3b8f-463d-9619-deadccd4509a","id":"609cc4ed-e6f5-4492-b760-c2bb8d63d89c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"79-244-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T08:24:34.007617Z","zone":"fr-par-1"},"is_legacy":false,"name":"test-k8s-public-ip","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-03-24T08:24:50.763266Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "605" + - "1323" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:05:34 GMT + - Mon, 24 Mar 2025 08:32:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -12996,10 +12994,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 10951f85-4566-4393-826e-5b88bc9220e3 + - 2aee17ae-dd94-44ee-b4ea-54a864f2f5f1 status: 200 OK code: 200 - duration: 65.618875ms + duration: 129.987555ms - id: 265 request: proto: HTTP/1.1 @@ -13015,8 +13013,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/k8s/v1/regions/fr-par/clusters/2174cb82-2a48-41ac-94f0-68305bb9a28a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/2abc0259-8211-43f6-a20f-e539ba8ef8f9 method: GET response: proto: HTTP/2.0 @@ -13024,20 +13022,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1439 + content_length: 416 uncompressed: false - body: '{"acl_available":false,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2174cb82-2a48-41ac-94f0-68305bb9a28a.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-01-28T10:46:50.481031Z","created_at":"2025-01-28T10:46:50.481019Z","description":"","dns_wildcard":"*.2174cb82-2a48-41ac-94f0-68305bb9a28a.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sbs_csi_enabled":true,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2025-01-28T11:00:07.437061Z","upgrade_available":false,"version":"1.31.2"}' + body: '{"created_at":"2025-03-24T08:24:40.139725Z","gateway_id":"1145fd31-3b8f-463d-9619-deadccd4509a","id":"2abc0259-8211-43f6-a20f-e539ba8ef8f9","ipam_ip_id":"efb1ff2a-f554-409c-bf2b-061db36a95b7","mac_address":"02:00:00:14:F8:6B","masquerade_enabled":true,"private_network_id":"2177e306-fcad-4127-ba67-ba1abe0d58cb","push_default_route":true,"status":"ready","updated_at":"2025-03-24T08:24:50.577797Z","zone":"fr-par-1"}' headers: Content-Length: - - "1439" + - "416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:05:34 GMT + - Mon, 24 Mar 2025 08:32:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -13045,10 +13043,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c5c03fcc-701b-4849-b50c-bb1cf1391eaa + - 1a5cd469-6267-4b00-9cec-292d467e2a74 status: 200 OK code: 200 - duration: 175.556625ms + duration: 253.120251ms - id: 266 request: proto: HTTP/1.1 @@ -13064,8 +13062,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/clusters/2fd5d612-425f-4b4b-ae74-16eda80368e6 method: GET response: proto: HTTP/2.0 @@ -13073,20 +13071,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 605 + content_length: 1498 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"ready","tags":[],"updated_at":"2025-01-28T11:05:30.988710Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"acl_available":true,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2fd5d612-425f-4b4b-ae74-16eda80368e6.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-03-24T08:13:42.105610Z","created_at":"2025-03-24T08:13:42.105600Z","description":"","dns_wildcard":"*.2fd5d612-425f-4b4b-ae74-16eda80368e6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"iam_nodes_group_id":"2ad98fd4-b1c1-438c-971f-d6152cfe2fbe","id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_id":"2177e306-fcad-4127-ba67-ba1abe0d58cb","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","sbs_csi_enabled":true,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2025-03-24T08:26:33.481110Z","upgrade_available":false,"version":"1.32.3"}' headers: Content-Length: - - "605" + - "1498" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:05:34 GMT + - Mon, 24 Mar 2025 08:32:03 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -13094,10 +13092,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b37cb45c-be4b-4f9b-9141-d0bf95bb26a7 + - 84797cc2-4c8b-4c66-a08c-2c1a01742ba4 status: 200 OK code: 200 - duration: 68.09675ms + duration: 332.344973ms - id: 267 request: proto: HTTP/1.1 @@ -13113,8 +13111,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/k8s/v1/regions/fr-par/clusters/2174cb82-2a48-41ac-94f0-68305bb9a28a/nodes?order_by=created_at_asc&page=1&pool_id=75b5e350-ee35-4f2d-b823-5cec51fb9510&status=unknown + - 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/k8s/v1/regions/fr-par/clusters/2fd5d612-425f-4b4b-ae74-16eda80368e6/kubeconfig method: GET response: proto: HTTP/2.0 @@ -13122,20 +13120,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 626 + content_length: 2636 uncompressed: false - body: '{"nodes":[{"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2025-01-28T11:00:08.938816Z","error_message":"","id":"a0a45807-c2f5-4440-b59f-19054d0572d6","name":"scw-test-k8s-public-i-test-k8s-public-i-a0a458","pool_id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","provider_id":"scaleway://instance/fr-par-1/b8771299-3ddc-4633-9daa-ca6fb1fdfc52","public_ip_v4":"","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2025-01-28T11:05:30.977809Z"}],"total_count":1}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtazhzLXB1YmxpYy1pcCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSk1VMUVUWGxOZWtFMFRWUk5NRTB4YjFoRVZFMHhUVVJOZVUxNlFUUk5WRTB3VFRGdmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUVVYxQ2xNNGRUTlpRbTFPTWsxR1VWWnFXVTFJUnpkRFdWbGFjalJFVlZCNU5FOVFkR1ZDVFhob1pIY3dhREZOUkdsRU9YY3hjREEyUkVwaWFXcHlZVGh2Y0VnS2RuRmFNbE0zV1hJclVtZG9ZblZ1T1hkTFpVcHVjRE5QU1ZaWWVtMXRTR2hKVkhwVE5XVjBlRlozV25oNk5HTlphR1F6Y1VSdFJXRlNSbXM0VG1aTFpBcEZkWE4wWVdKNmIwdEdjVVFyY3psR0wxQkZiRVpzZGt0RmNUZ3diWFZUVjBSdFRFcGhVR3BJWm5oVVYyNVdNV3RwYWtaeWQwdzJla3RsVTFBd2REbHBDbUp3ZEN0c2FWaERXRGhOVlVaNk9YcGhUMmc1YUhOTk5ISkVObXBwWkVsRWRWcDJjMHh6YlZacFR5ODFZaXN3ZFdSeVpXOTJURzUzVmpGcFNHNURVeklLUjBSQmVqSlhUVk55VFRGRFMydGpaVzVWTW5Zd2VuQjNjMlZPY0ROTk1HczBPSGhsVDNZMlNsRkxhRmd2YTA1b2F6RnFNSGxNU1ZSRVp6TlhlVzVHVFFwUE5VUnBkVWRpVlVWMFZIRkJlVmQ2V0hGelEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaT1ZISlRRWFJJVjNocmNreGtaVFZ3T1dOdWNVOWxXVzAxUzFCTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ05XZGhla014TVc1SlYwSldWVWxXUVhWM1YxbFZPVUpJUlRKM1dXcEZXbW8wYjA5c1ZHbHdka0kxYTJ4dVdGTlVWUXB5VERneFVrczJWaTk2TDI1MGVrSk9VM2RoWnpCdVZUQndkbEZDV0d4MlJXTmxTRTR3Y2t4aWJYQnJaSEp3VEZvNFNtSnRZM0JsZGtReVFraGFWelV4Q2pWamMxWjNMMmhKZFVSdFNEZFRaa0ZPYUc5QlJ6bDZlVmx5YjFJeFNVcE1PR2Q1WnpCRFYzcHBXWGtyWVhsbGVEUjBka3RzVld4RWFUbDZUa3NyVldJS1pGSlRLMHN6TWxGRVpHRkVjMkpoVW5NNFVYcG9RMUJhYm1ONVowNW1hek56VUZoUmMyaE5hekUyZWxoMk9ETXliWHB3T1dKeFdGTlNMelo2YVZCQlVBcFdja2xCTDI1bWVHcG5Sa3NyUWpKNWRFeDRjV04xZFdoSlJ5dDVVbVJ5YlhoQldXcFZUa04yVkhwNFdtVXlibWhZU0ZsT0sxQnRaa2RYT1hSaFZXSTNDbEpCYVdkVmIyTjFOVXB2WkZGUVlXUnVabTU0Y25ZNFVqWnJaVU5KTlRseFoxaFBXUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vMmZkNWQ2MTItNDI1Zi00YjRiLWFlNzQtMTZlZGE4MDM2OGU2LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtazhzLXB1YmxpYy1pcAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1rOHMtcHVibGljLWlwIgogICAgdXNlcjogdGVzdC1rOHMtcHVibGljLWlwLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1rOHMtcHVibGljLWlwCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1rOHMtcHVibGljLWlwLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiB4TmN5UVdkZThMSkxCRW1yUURFYnZUQTVZTEdBejlWT2JKSU14NGlLMW9zbXJ6dGw0U3Y1bzdDYw==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "626" + - "2636" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:05:34 GMT + - Mon, 24 Mar 2025 08:32:03 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -13143,10 +13141,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6d739a1b-a528-4358-a7e9-3dcb11348b7f + - fa5fd1b3-4925-43ea-80c2-1907a72fdd4a status: 200 OK code: 200 - duration: 81.176917ms + duration: 316.495053ms - id: 268 request: proto: HTTP/1.1 @@ -13162,8 +13160,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/k8s/v1/regions/fr-par/clusters/2174cb82-2a48-41ac-94f0-68305bb9a28a + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -13171,20 +13169,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1439 + content_length: 605 uncompressed: false - body: '{"acl_available":false,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2174cb82-2a48-41ac-94f0-68305bb9a28a.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-01-28T10:46:50.481031Z","created_at":"2025-01-28T10:46:50.481019Z","description":"","dns_wildcard":"*.2174cb82-2a48-41ac-94f0-68305bb9a28a.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sbs_csi_enabled":true,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2025-01-28T11:00:07.437061Z","upgrade_available":false,"version":"1.31.2"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"ready","tags":[],"updated_at":"2025-03-24T08:31:59.543105Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - - "1439" + - "605" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:05:35 GMT + - Mon, 24 Mar 2025 08:32:04 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -13192,10 +13190,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4ceeef78-4981-4256-a09b-a6db4c7c60ee + - 39ce5be4-bbdc-4191-b669-2b650829ac27 status: 200 OK code: 200 - duration: 72.03875ms + duration: 609.362106ms - id: 269 request: proto: HTTP/1.1 @@ -13211,8 +13209,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/8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d + - 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/k8s/v1/regions/fr-par/clusters/2fd5d612-425f-4b4b-ae74-16eda80368e6/nodes?order_by=created_at_asc&page=1&pool_id=2f840514-c14f-4ad9-9f5a-74d1a2348251&status=unknown method: GET response: proto: HTTP/2.0 @@ -13220,20 +13218,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1022 + content_length: 626 uncompressed: false - body: '{"created_at":"2025-01-28T10:46:49.038912Z","dhcp_enabled":true,"id":"8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d","name":"test-k8s-public-ip","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:46:49.038912Z","id":"3db6da28-f723-46f3-9bb4-782831943e11","private_network_id":"8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"192.168.0.0/22","updated_at":"2025-01-28T10:57:53.397750Z","vpc_id":"104b1c7a-80e9-403f-8730-f6849c4a1149"},{"created_at":"2025-01-28T10:46:49.038912Z","id":"02dcd8f7-49ca-46a9-a94e-3dc3859187f9","private_network_id":"8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:faec::/64","updated_at":"2025-01-28T10:57:53.400763Z","vpc_id":"104b1c7a-80e9-403f-8730-f6849c4a1149"}],"tags":[],"updated_at":"2025-01-28T10:58:02.174714Z","vpc_id":"104b1c7a-80e9-403f-8730-f6849c4a1149"}' + body: '{"nodes":[{"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2025-03-24T08:27:04.920855Z","error_message":"","id":"954098d7-bde5-48f9-aa47-3a448ee4d00b","name":"scw-test-k8s-public-i-test-k8s-public-i-954098","pool_id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","provider_id":"scaleway://instance/fr-par-1/c3f70017-7e3e-4089-820b-3e100d022675","public_ip_v4":"","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2025-03-24T08:31:59.531702Z"}],"total_count":1}' headers: Content-Length: - - "1022" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:05:35 GMT + - Mon, 24 Mar 2025 08:32:04 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -13241,10 +13239,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bdbe1bc0-f3d0-4262-a313-fcc109e81499 + - 57c6281c-17d0-4af8-b538-8ea360ff817b status: 200 OK code: 200 - duration: 69.409834ms + duration: 348.963776ms - id: 270 request: proto: HTTP/1.1 @@ -13260,9 +13258,9 @@ interactions: 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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 - method: GET + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 @@ -13271,7 +13269,7 @@ interactions: trailer: {} content_length: 605 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"ready","tags":[],"updated_at":"2025-01-28T11:05:30.988710Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"ready","tags":[],"updated_at":"2025-03-24T08:31:59.543105Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "605" @@ -13280,9 +13278,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:05:35 GMT + - Mon, 24 Mar 2025 08:32:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -13290,10 +13288,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 22a4564b-8b5c-4698-ba3a-e8cc258bccec + - 3c75d1ce-e4d6-4bde-b6b8-bc863da0418f status: 200 OK code: 200 - duration: 66.467208ms + duration: 495.746103ms - id: 271 request: proto: HTTP/1.1 @@ -13309,8 +13307,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/k8s/v1/regions/fr-par/clusters/2174cb82-2a48-41ac-94f0-68305bb9a28a/nodes?order_by=created_at_asc&pool_id=75b5e350-ee35-4f2d-b823-5cec51fb9510&status=unknown + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -13318,20 +13316,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 626 + content_length: 608 uncompressed: false - body: '{"nodes":[{"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2025-01-28T11:00:08.938816Z","error_message":"","id":"a0a45807-c2f5-4440-b59f-19054d0572d6","name":"scw-test-k8s-public-i-test-k8s-public-i-a0a458","pool_id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","provider_id":"scaleway://instance/fr-par-1/b8771299-3ddc-4633-9daa-ca6fb1fdfc52","public_ip_v4":"","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2025-01-28T11:05:30.977809Z"}],"total_count":1}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:32:05.638874Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - - "626" + - "608" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:05:35 GMT + - Mon, 24 Mar 2025 08:32:06 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -13339,10 +13337,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ee1459ae-73d0-458b-aa81-03d32cd6c0bf + - 670c62e4-e2bf-41f5-acaa-0e586aaf4e49 status: 200 OK code: 200 - duration: 68.903834ms + duration: 117.44051ms - id: 272 request: proto: HTTP/1.1 @@ -13358,8 +13356,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/instance/v1/zones/fr-par-1/servers/b8771299-3ddc-4633-9daa-ca6fb1fdfc52 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -13367,20 +13365,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2573 + content_length: 608 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-01-28T11:00:09.666990+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scw-test-k8s-public-i-test-k8s-public-i-a0a458","id":"b8771299-3ddc-4633-9daa-ca6fb1fdfc52","image":{"arch":"x86_64","creation_date":"2024-12-13T14:25:42.929071+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"f587416b-3d51-4582-808f-dbbaa617a61a","modification_date":"2024-12-13T14:25:42.929071+00:00","name":"k8s_base_node_2024-12-13_sbs","organization":"a6c1e019-9bc0-49c8-81c6-1d7e6d25426d","project":"a6c1e019-9bc0-49c8-81c6-1d7e6d25426d","public":true,"root_volume":{"id":"164c4014-2874-481f-b194-ce63ab76f0da","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"28","hypervisor_id":"1001","node_id":"22","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:90:37:fb","maintenances":[],"modification_date":"2025-01-28T11:00:16.012123+00:00","name":"scw-test-k8s-public-i-test-k8s-public-i-a0a458","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-01-28T11:00:10.487942+00:00","id":"09a31d80-7b00-470e-869f-f761b97200f4","ipam_ip_ids":["0dcf04fd-88fb-4385-941f-228a07348f8f","32ce2d81-be01-4211-9e15-1b14df28b22e"],"mac_address":"02:00:00:18:a6:b6","modification_date":"2025-01-28T11:00:10.638516+00:00","private_network_id":"8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d","server_id":"b8771299-3ddc-4633-9daa-ca6fb1fdfc52","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":"3a97a5d7-420e-4eea-b29e-53f154037db5","name":"kubernetes 2174cb82-2a48-41ac-94f0-68305bb9a28a"},"state":"running","state_detail":"booting kernel","tags":["kapsule=2174cb82-2a48-41ac-94f0-68305bb9a28a","pool=75b5e350-ee35-4f2d-b823-5cec51fb9510","pool-name=test-k8s-public-ip","runtime=containerd","managed=true","node=a0a45807-c2f5-4440-b59f-19054d0572d6"],"volumes":{"0":{"boot":true,"id":"ebe08ea8-5497-4162-bdda-404e56dccfda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:32:05.638874Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - - "2573" + - "608" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:05:35 GMT + - Mon, 24 Mar 2025 08:32:11 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -13388,10 +13386,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c5416120-4dda-4266-85ce-c662021b4a49 + - ced542fa-002d-4861-8dc6-02d692964b37 status: 200 OK code: 200 - duration: 306.413333ms + duration: 110.162652ms - id: 273 request: proto: HTTP/1.1 @@ -13407,8 +13405,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-gw/v1/zones/fr-par-1/dhcps/5a90a96f-ded2-4c5f-89a0-f0ed9a5404a8 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -13416,20 +13414,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 568 + content_length: 608 uncompressed: false - body: '{"address":"192.168.0.1","created_at":"2025-01-28T10:57:46.417152Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"5a90a96f-ded2-4c5f-89a0-f0ed9a5404a8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2025-01-28T10:57:46.417152Z","valid_lifetime":"3600s","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:32:05.638874Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - - "568" + - "608" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:05:36 GMT + - Mon, 24 Mar 2025 08:32:16 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -13437,10 +13435,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4e5cc584-5ba4-4592-8745-f2105de20f84 + - 4febe30f-fb5e-4101-a995-36bde2e5eeb9 status: 200 OK code: 200 - duration: 23.479167ms + duration: 118.646469ms - id: 274 request: proto: HTTP/1.1 @@ -13456,8 +13454,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/8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -13465,20 +13463,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1022 + content_length: 608 uncompressed: false - body: '{"created_at":"2025-01-28T10:46:49.038912Z","dhcp_enabled":true,"id":"8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d","name":"test-k8s-public-ip","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:46:49.038912Z","id":"3db6da28-f723-46f3-9bb4-782831943e11","private_network_id":"8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"192.168.0.0/22","updated_at":"2025-01-28T10:57:53.397750Z","vpc_id":"104b1c7a-80e9-403f-8730-f6849c4a1149"},{"created_at":"2025-01-28T10:46:49.038912Z","id":"02dcd8f7-49ca-46a9-a94e-3dc3859187f9","private_network_id":"8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:faec::/64","updated_at":"2025-01-28T10:57:53.400763Z","vpc_id":"104b1c7a-80e9-403f-8730-f6849c4a1149"}],"tags":[],"updated_at":"2025-01-28T10:58:02.174714Z","vpc_id":"104b1c7a-80e9-403f-8730-f6849c4a1149"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:32:05.638874Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - - "1022" + - "608" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:05:36 GMT + - Mon, 24 Mar 2025 08:32:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -13486,10 +13484,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b99962d8-72f2-423c-8095-ea1acb03a431 + - d8000d26-4b7d-453d-bcab-2a47d132db3d status: 200 OK code: 200 - duration: 36.567375ms + duration: 126.80529ms - id: 275 request: proto: HTTP/1.1 @@ -13505,8 +13503,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-gw/v1/zones/fr-par-1/gateways/cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -13514,20 +13512,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1942 + content_length: 608 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-28T10:57:47.540138Z","gateway_networks":[{"address":null,"created_at":"2025-01-28T10:57:55.340591Z","dhcp":{"address":"192.168.0.1","created_at":"2025-01-28T10:57:46.417152Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"5a90a96f-ded2-4c5f-89a0-f0ed9a5404a8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2025-01-28T10:57:46.417152Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5","id":"3e88db28-c513-41e5-9a53-eed54a3db4ee","ipam_config":null,"mac_address":"02:00:00:19:1C:B1","private_network_id":"8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d","status":"ready","updated_at":"2025-01-28T10:58:06.050540Z","zone":"fr-par-1"}],"id":"cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5","ip":{"address":"51.15.255.93","created_at":"2025-01-28T10:57:47.521305Z","gateway_id":"cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5","id":"0b2dc034-88ec-4a16-addf-35b6b9d4b496","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"93-255-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-28T10:57:47.521305Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"test-k8s-public-ip","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-28T10:58:06.250449Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:32:05.638874Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - - "1942" + - "608" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:05:36 GMT + - Mon, 24 Mar 2025 08:32:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -13535,10 +13533,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 241b5e29-74ef-4e09-98b8-0f72075166ed + - ba50cd8e-6d45-43c0-84d6-b955009ad059 status: 200 OK code: 200 - duration: 38.892292ms + duration: 102.529246ms - id: 276 request: proto: HTTP/1.1 @@ -13554,8 +13552,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-gw/v1/zones/fr-par-1/gateway-networks/3e88db28-c513-41e5-9a53-eed54a3db4ee + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -13563,20 +13561,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 966 + content_length: 608 uncompressed: false - body: '{"address":null,"created_at":"2025-01-28T10:57:55.340591Z","dhcp":{"address":"192.168.0.1","created_at":"2025-01-28T10:57:46.417152Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"5a90a96f-ded2-4c5f-89a0-f0ed9a5404a8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2025-01-28T10:57:46.417152Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5","id":"3e88db28-c513-41e5-9a53-eed54a3db4ee","ipam_config":null,"mac_address":"02:00:00:19:1C:B1","private_network_id":"8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d","status":"ready","updated_at":"2025-01-28T10:58:06.050540Z","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:32:05.638874Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - - "966" + - "608" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:05:36 GMT + - Mon, 24 Mar 2025 08:32:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -13584,10 +13582,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df97ece5-4e72-4208-bf56-998abe2135af + - 4b650535-c5a7-4d21-be55-b29edb7a88c4 status: 200 OK code: 200 - duration: 88.685833ms + duration: 117.913338ms - id: 277 request: proto: HTTP/1.1 @@ -13603,8 +13601,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-gw/v1/zones/fr-par-1/gateways/cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -13612,20 +13610,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1942 + content_length: 608 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-28T10:57:47.540138Z","gateway_networks":[{"address":null,"created_at":"2025-01-28T10:57:55.340591Z","dhcp":{"address":"192.168.0.1","created_at":"2025-01-28T10:57:46.417152Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"5a90a96f-ded2-4c5f-89a0-f0ed9a5404a8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2025-01-28T10:57:46.417152Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5","id":"3e88db28-c513-41e5-9a53-eed54a3db4ee","ipam_config":null,"mac_address":"02:00:00:19:1C:B1","private_network_id":"8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d","status":"ready","updated_at":"2025-01-28T10:58:06.050540Z","zone":"fr-par-1"}],"id":"cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5","ip":{"address":"51.15.255.93","created_at":"2025-01-28T10:57:47.521305Z","gateway_id":"cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5","id":"0b2dc034-88ec-4a16-addf-35b6b9d4b496","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"93-255-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-28T10:57:47.521305Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"test-k8s-public-ip","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-28T10:58:06.250449Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:32:05.638874Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - - "1942" + - "608" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:05:36 GMT + - Mon, 24 Mar 2025 08:32:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -13633,10 +13631,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 60a85c59-b75d-4a8f-a8e8-e98ed39529e3 + - d98cfc98-93f7-4479-bf82-9462185eb3bd status: 200 OK code: 200 - duration: 34.513875ms + duration: 115.457317ms - id: 278 request: proto: HTTP/1.1 @@ -13652,8 +13650,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-gw/v1/zones/fr-par-1/gateway-networks/3e88db28-c513-41e5-9a53-eed54a3db4ee + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -13661,20 +13659,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 966 + content_length: 608 uncompressed: false - body: '{"address":null,"created_at":"2025-01-28T10:57:55.340591Z","dhcp":{"address":"192.168.0.1","created_at":"2025-01-28T10:57:46.417152Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"5a90a96f-ded2-4c5f-89a0-f0ed9a5404a8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2025-01-28T10:57:46.417152Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5","id":"3e88db28-c513-41e5-9a53-eed54a3db4ee","ipam_config":null,"mac_address":"02:00:00:19:1C:B1","private_network_id":"8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d","status":"ready","updated_at":"2025-01-28T10:58:06.050540Z","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:32:05.638874Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - - "966" + - "608" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:05:36 GMT + - Mon, 24 Mar 2025 08:32:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -13682,10 +13680,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 59fe5bd2-4f30-420d-8a10-6b6e260f3ae3 + - 2c0be034-2b8d-4931-b7ec-efbadf7171ef status: 200 OK code: 200 - duration: 48.929834ms + duration: 106.441742ms - id: 279 request: proto: HTTP/1.1 @@ -13701,8 +13699,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/k8s/v1/regions/fr-par/clusters/2174cb82-2a48-41ac-94f0-68305bb9a28a + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -13710,20 +13708,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1439 + content_length: 608 uncompressed: false - body: '{"acl_available":false,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2174cb82-2a48-41ac-94f0-68305bb9a28a.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-01-28T10:46:50.481031Z","created_at":"2025-01-28T10:46:50.481019Z","description":"","dns_wildcard":"*.2174cb82-2a48-41ac-94f0-68305bb9a28a.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sbs_csi_enabled":true,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2025-01-28T11:00:07.437061Z","upgrade_available":false,"version":"1.31.2"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:32:05.638874Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - - "1439" + - "608" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:05:36 GMT + - Mon, 24 Mar 2025 08:32:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -13731,10 +13729,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 802e0724-24ed-4577-8fe8-4a4b391680bd + - d3faa5fd-6e05-4250-b773-aeb5d028a3be status: 200 OK code: 200 - duration: 62.62225ms + duration: 101.583547ms - id: 280 request: proto: HTTP/1.1 @@ -13750,8 +13748,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/k8s/v1/regions/fr-par/clusters/2174cb82-2a48-41ac-94f0-68305bb9a28a/kubeconfig + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -13759,20 +13757,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2636 + content_length: 608 uncompressed: false - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtazhzLXB1YmxpYy1pcCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSk1VMUVSWGxPZWtWM1RrUlpNVTFXYjFoRVZFMHhUVVJGZVU1NlJYZE9SRmt4VFZadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUbmRuQ2pjeVkxUkZlbWdyVlZBcldFNUNURTE1ZUV0R01YcHlNbU5VYkdsb05YZGljeXRyZFhaNlp6WnBLMlZVTkdzemJIUTVUbmQ2ZEZKb1YyZFlMelJSV2tJS2RXcFlkVkp4YlVoa2JXdFhVRXBYUWxNclJrSkdhekZRVkV4RmFtUmFiaXRCU0dwcFZFOHdabHBVZFZWcE1uRXhhak5FTDFoamF6SnlRWG8yZFVwWFpncDBlVkI1WVhkTWJuZzBOSFpIV21sc1YydHFXVmhZYmt0WkswMU1TV05GWWxSWFJtaHplVTlyZEhwR05HSXpSa0pQUWpsa09ISmhkWGx5TkhWcVRWa3pDamxFY0dWWU0yTjBhemRtVEUxdU0xTnZkRUZsYjFCSVIyTnlOV2RTTm5ZeU5FeEJUMUpHUkZWaE5sUjBTRTFtVWt0NGRUazRLMDVDVEdsaFkxUTNlVmNLUTJsSE5VNU5VREF4T0UxMlZta3dLMWRRZEhKd1ZFTkRVek5LVGl0bllUYzJkM0pWY1Zoc1QzcDNTME5TWW01cFpHRnlNRmhvVFhKM1VuWlNZVTB5YkFwUGJGWjBNVmxXT1RkWVlYRXhlbFJsYkM5RlEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaRFVXUldVMU4xVXpOc2IwTTVjek5NY1VrNGNsRjBVVTFoVUV0TlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQk1XMWhaMGN4ZFRKTFZ6TlhVVlZaZUdkM2MwMHhZbVJrTVdkbVNESlBiSGRpSzBWTE5GUm9Va1paSzFOQ1RIRTRaUXBVUjFwSWJpOVdWbVZWUW5oemRHSXdLMkpuUm5kT1kzcEViVmRzV1Zoa0wzZENNWEJYU21wNFMwRk5XR3hHWVhwa2RsWmpLMVpNWkhaYVRtaDNXbkVyQ25ndk5WQnFOazlUUTNGVVVrSndXREpQVldseGNIZ3JjMHAzYVhSaFVIWldTMFZDV1V4bmQxUkdMMHBwY0hkelF6bGhOSFJIZUdWSVNHMDJSM0ZqV0ZNS1YwcHFNVXBMZW5oeFdrWjJaMHg2VkhoU1VVRnZabEZ5VlZsS1VrOVFhbXAwTlZSSVUxTTBaVGxrY2pWMk1XMWxTM2czU0VWV2VXOUhWRzlzYVZKd1RRb3pVVGMzVUVoSmRHRXlkek5YYml0WFNITmtORVUyY0d0R2FsWnFiMVE1V0V4dGNYQXZNelJUWW5sWFdtSXZja3cyY0Zwa1FYWkVLM0lyYkhCUVJtSmtDakpwUXl0Mk9XcDNlRlZPUnk5R2RHc3ZjbHByZVU1RlluRmpZVWxUYmpSb09YUTNRZ290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vMjE3NGNiODItMmE0OC00MWFjLTk0ZjAtNjgzMDViYjlhMjhhLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtazhzLXB1YmxpYy1pcAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1rOHMtcHVibGljLWlwIgogICAgdXNlcjogdGVzdC1rOHMtcHVibGljLWlwLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1rOHMtcHVibGljLWlwCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1rOHMtcHVibGljLWlwLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBUQ2Vqb2JWek95bXUwUWpRcmxFNm45a0M3TWVaWjRPZVhzUjlXMDVHYWJKVGtMbTZBc0kzbkVjZQ==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:32:05.638874Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - - "2636" + - "608" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:05:36 GMT + - Mon, 24 Mar 2025 08:32:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -13780,10 +13778,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a161fc6f-652c-4a57-9c2c-2736302c745b + - 25f5b639-a505-4d67-ad01-01f91fcbc3e2 status: 200 OK code: 200 - duration: 69.009834ms + duration: 120.037905ms - id: 281 request: proto: HTTP/1.1 @@ -13799,8 +13797,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -13808,20 +13806,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 605 + content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"ready","tags":[],"updated_at":"2025-01-28T11:05:30.988710Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:32:05.638874Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - - "605" + - "608" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:05:36 GMT + - Mon, 24 Mar 2025 08:32:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -13829,10 +13827,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 82dff134-1386-4417-9a8f-2ef9b750509e + - 1f7f93c2-5267-490b-8081-3ec3f451a52a status: 200 OK code: 200 - duration: 72.951041ms + duration: 111.141486ms - id: 282 request: proto: HTTP/1.1 @@ -13848,8 +13846,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/k8s/v1/regions/fr-par/clusters/2174cb82-2a48-41ac-94f0-68305bb9a28a/nodes?order_by=created_at_asc&page=1&pool_id=75b5e350-ee35-4f2d-b823-5cec51fb9510&status=unknown + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -13857,20 +13855,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 626 + content_length: 608 uncompressed: false - body: '{"nodes":[{"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2025-01-28T11:00:08.938816Z","error_message":"","id":"a0a45807-c2f5-4440-b59f-19054d0572d6","name":"scw-test-k8s-public-i-test-k8s-public-i-a0a458","pool_id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","provider_id":"scaleway://instance/fr-par-1/b8771299-3ddc-4633-9daa-ca6fb1fdfc52","public_ip_v4":"","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2025-01-28T11:05:30.977809Z"}],"total_count":1}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:32:05.638874Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - - "626" + - "608" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:05:36 GMT + - Mon, 24 Mar 2025 08:33:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -13878,10 +13876,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d11d64eb-87ba-4003-a2c7-7d62b7981807 + - 0d0dc3a6-dcb1-4234-b0b6-3a22f9b8a1b6 status: 200 OK code: 200 - duration: 66.389292ms + duration: 191.116941ms - id: 283 request: proto: HTTP/1.1 @@ -13897,29 +13895,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 - method: DELETE + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 605 + content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"ready","tags":[],"updated_at":"2025-01-28T11:05:30.988710Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:32:05.638874Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - - "605" + - "608" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:05:37 GMT + - Mon, 24 Mar 2025 08:33:07 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -13927,10 +13925,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d68205a6-9b9a-4bf1-9933-3326669253b8 + - 9b057754-d26d-4b5c-9852-933c97410acc status: 200 OK code: 200 - duration: 81.2555ms + duration: 393.319816ms - id: 284 request: proto: HTTP/1.1 @@ -13946,8 +13944,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -13957,7 +13955,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T11:05:37.645664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:32:05.638874Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -13966,9 +13964,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:05:37 GMT + - Mon, 24 Mar 2025 08:33:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -13976,10 +13974,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 53558223-a807-4f86-b3ba-789d217b24b5 + - c25c1d25-e2e5-4f62-8f2b-0ee6fae6f161 status: 200 OK code: 200 - duration: 65.716375ms + duration: 328.624664ms - id: 285 request: proto: HTTP/1.1 @@ -13995,8 +13993,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -14006,7 +14004,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T11:05:37.645664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:32:05.638874Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -14015,9 +14013,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:05:42 GMT + - Mon, 24 Mar 2025 08:33:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -14025,10 +14023,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 217f2f00-171f-4e82-a060-b65ffac71eba + - 4260f35c-368e-411a-8193-2fac54d6efb2 status: 200 OK code: 200 - duration: 59.397ms + duration: 240.039113ms - id: 286 request: proto: HTTP/1.1 @@ -14044,8 +14042,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -14055,7 +14053,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T11:05:37.645664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:32:05.638874Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -14064,9 +14062,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:05:47 GMT + - Mon, 24 Mar 2025 08:33:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -14074,10 +14072,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 664833d5-5be2-43e2-98e8-62a4301ada8f + - 40add5b2-4062-4c6b-ba02-952ff076aa35 status: 200 OK code: 200 - duration: 67.497542ms + duration: 176.993342ms - id: 287 request: proto: HTTP/1.1 @@ -14093,8 +14091,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -14104,7 +14102,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T11:05:37.645664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:32:05.638874Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -14113,9 +14111,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:05:52 GMT + - Mon, 24 Mar 2025 08:33:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -14123,10 +14121,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b6cae601-46b1-43b3-875c-b41ed6a5a2e9 + - f86a41dc-5a54-4e67-9ac3-2cd9f0d22595 status: 200 OK code: 200 - duration: 72.7485ms + duration: 109.310666ms - id: 288 request: proto: HTTP/1.1 @@ -14142,8 +14140,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -14153,7 +14151,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T11:05:37.645664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:32:05.638874Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -14162,9 +14160,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:05:58 GMT + - Mon, 24 Mar 2025 08:33:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -14172,10 +14170,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8401fd3e-9373-4d04-b912-8e3faccf98f9 + - 59975846-2f99-4ba5-b509-8b5eeafee875 status: 200 OK code: 200 - duration: 72.017875ms + duration: 107.663142ms - id: 289 request: proto: HTTP/1.1 @@ -14191,8 +14189,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -14202,7 +14200,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T11:05:37.645664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:32:05.638874Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -14211,9 +14209,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:06:03 GMT + - Mon, 24 Mar 2025 08:33:38 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -14221,10 +14219,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bd180f2e-ff34-48be-9fc4-f6446fcb710d + - eb00f59e-e085-4099-8b3f-c0e578bf5e4c status: 200 OK code: 200 - duration: 77.971166ms + duration: 129.227833ms - id: 290 request: proto: HTTP/1.1 @@ -14240,8 +14238,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -14251,7 +14249,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T11:05:37.645664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:32:05.638874Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -14260,9 +14258,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:06:08 GMT + - Mon, 24 Mar 2025 08:33:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -14270,10 +14268,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ea22027f-2349-41f9-b6ea-c875aebb1504 + - 194f431b-0da9-4119-9f4a-6c8b75e2b0d3 status: 200 OK code: 200 - duration: 58.485042ms + duration: 111.578119ms - id: 291 request: proto: HTTP/1.1 @@ -14289,8 +14287,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -14300,7 +14298,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T11:05:37.645664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:32:05.638874Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -14309,9 +14307,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:06:13 GMT + - Mon, 24 Mar 2025 08:33:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -14319,10 +14317,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 37a5317f-25e6-4c8a-bff4-a96d0f5edf8b + - c48381bf-1568-4db9-a018-8668793802a7 status: 200 OK code: 200 - duration: 82.542084ms + duration: 107.579233ms - id: 292 request: proto: HTTP/1.1 @@ -14338,8 +14336,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -14349,7 +14347,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T11:05:37.645664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:32:05.638874Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -14358,9 +14356,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:06:18 GMT + - Mon, 24 Mar 2025 08:33:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -14368,10 +14366,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 25ae3931-b4bb-4a43-8bbd-c7bfffb18aad + - b94965aa-0491-42bc-a9ff-5b81140016ca status: 200 OK code: 200 - duration: 77.157708ms + duration: 126.782075ms - id: 293 request: proto: HTTP/1.1 @@ -14387,8 +14385,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -14398,7 +14396,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T11:05:37.645664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:32:05.638874Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -14407,9 +14405,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:06:23 GMT + - Mon, 24 Mar 2025 08:33:59 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -14417,10 +14415,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cf218711-001a-4823-8be5-d4eeffe04965 + - f093ea4b-bd85-412f-9e3f-ab28c3b35bb6 status: 200 OK code: 200 - duration: 84.30725ms + duration: 112.977335ms - id: 294 request: proto: HTTP/1.1 @@ -14436,8 +14434,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -14447,7 +14445,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T11:05:37.645664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:32:05.638874Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -14456,9 +14454,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:06:28 GMT + - Mon, 24 Mar 2025 08:34:04 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -14466,10 +14464,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b9e6bf7c-b5e0-4119-9b61-35bc8a36cec6 + - ea84e1e7-993d-459f-8a0b-98a72e653cde status: 200 OK code: 200 - duration: 74.664917ms + duration: 103.793798ms - id: 295 request: proto: HTTP/1.1 @@ -14485,8 +14483,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -14496,7 +14494,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T11:05:37.645664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:32:05.638874Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -14505,9 +14503,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:06:33 GMT + - Mon, 24 Mar 2025 08:34:09 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -14515,10 +14513,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 56c1b1aa-4a70-4478-8126-9d449d31611a + - d3596d4b-acee-45f6-83c9-2c21d0c58e7e status: 200 OK code: 200 - duration: 70.560125ms + duration: 100.877205ms - id: 296 request: proto: HTTP/1.1 @@ -14534,8 +14532,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -14545,7 +14543,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T11:05:37.645664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:32:05.638874Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -14554,9 +14552,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:06:38 GMT + - Mon, 24 Mar 2025 08:34:14 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -14564,10 +14562,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b5669c6-1bbf-4826-bb29-64085c519b05 + - 6b18d34f-9574-431d-8b06-246b11220409 status: 200 OK code: 200 - duration: 73.543875ms + duration: 685.788592ms - id: 297 request: proto: HTTP/1.1 @@ -14583,8 +14581,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -14594,7 +14592,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T11:05:37.645664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:32:05.638874Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -14603,9 +14601,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:06:43 GMT + - Mon, 24 Mar 2025 08:34:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -14613,10 +14611,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 95b40f14-a785-4081-b1c2-93099b601a47 + - 4dce017d-6ddb-42f6-a5fd-7097fe3a542d status: 200 OK code: 200 - duration: 75.299791ms + duration: 107.639907ms - id: 298 request: proto: HTTP/1.1 @@ -14632,8 +14630,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -14643,7 +14641,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T11:05:37.645664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:32:05.638874Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -14652,9 +14650,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:06:49 GMT + - Mon, 24 Mar 2025 08:34:25 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -14662,10 +14660,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 557c937f-1568-4b6d-a923-c6bb35128c95 + - 1f264254-79b2-48cf-91d0-31468f16f9f2 status: 200 OK code: 200 - duration: 687.913333ms + duration: 92.141771ms - id: 299 request: proto: HTTP/1.1 @@ -14681,8 +14679,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -14692,7 +14690,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T11:05:37.645664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:32:05.638874Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -14701,9 +14699,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:06:54 GMT + - Mon, 24 Mar 2025 08:34:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -14711,10 +14709,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 36b8c58d-899a-43d1-910d-3bf39541c90e + - 413733ce-0735-4f62-be30-b0c82956683b status: 200 OK code: 200 - duration: 56.528042ms + duration: 103.703315ms - id: 300 request: proto: HTTP/1.1 @@ -14730,8 +14728,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -14741,7 +14739,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T11:05:37.645664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:32:05.638874Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -14750,9 +14748,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:06:59 GMT + - Mon, 24 Mar 2025 08:34:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -14760,10 +14758,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 58ee0532-d07b-4507-a58e-b3c5a41d78fe + - e7aad456-87e0-4f30-8ee3-ae35aa4ac98d status: 200 OK code: 200 - duration: 102.094833ms + duration: 1.551187267s - id: 301 request: proto: HTTP/1.1 @@ -14779,8 +14777,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -14790,7 +14788,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T11:05:37.645664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:32:05.638874Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -14799,9 +14797,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:07:04 GMT + - Mon, 24 Mar 2025 08:34:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -14809,10 +14807,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 190da219-63f0-462c-96e0-a6b0cdef55a7 + - 7929b7e2-6a0e-4dca-b064-d9fe1bfb73e4 status: 200 OK code: 200 - duration: 80.479625ms + duration: 112.662668ms - id: 302 request: proto: HTTP/1.1 @@ -14828,8 +14826,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -14839,7 +14837,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T11:05:37.645664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:32:05.638874Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -14848,9 +14846,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:07:09 GMT + - Mon, 24 Mar 2025 08:34:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -14858,10 +14856,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 00acbbf9-555c-43fd-8e20-7d044821b34a + - 3f260d8c-6547-49a3-8c00-09dbce49f591 status: 200 OK code: 200 - duration: 75.364584ms + duration: 129.838074ms - id: 303 request: proto: HTTP/1.1 @@ -14877,8 +14875,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -14888,7 +14886,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T11:05:37.645664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:32:05.638874Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -14897,9 +14895,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:07:14 GMT + - Mon, 24 Mar 2025 08:34:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -14907,10 +14905,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 77e82752-35ae-44eb-bbcd-870b869bdc06 + - bf111257-65b7-44cb-b049-93ba2af683ee status: 200 OK code: 200 - duration: 76.748791ms + duration: 99.889092ms - id: 304 request: proto: HTTP/1.1 @@ -14926,8 +14924,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -14937,7 +14935,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T11:05:37.645664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:32:05.638874Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -14946,9 +14944,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:07:19 GMT + - Mon, 24 Mar 2025 08:34:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -14956,10 +14954,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 27307109-e24f-453e-ada8-70f678bcdec2 + - 21a0a1c9-5f3e-495b-838e-d4214bbbb4d6 status: 200 OK code: 200 - duration: 76.262125ms + duration: 111.794714ms - id: 305 request: proto: HTTP/1.1 @@ -14975,8 +14973,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -14986,7 +14984,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T11:05:37.645664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:32:05.638874Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -14995,9 +14993,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:07:24 GMT + - Mon, 24 Mar 2025 08:35:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -15005,10 +15003,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3201ac53-cda4-4229-866c-d44ea449b9d4 + - c24f41fa-e77d-4d18-a5c6-b9b011d5bfa5 status: 200 OK code: 200 - duration: 73.246458ms + duration: 99.463538ms - id: 306 request: proto: HTTP/1.1 @@ -15024,8 +15022,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -15035,7 +15033,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T11:05:37.645664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:32:05.638874Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -15044,9 +15042,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:07:30 GMT + - Mon, 24 Mar 2025 08:35:07 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -15054,10 +15052,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 08e250d0-9f51-4d82-8e49-9f3917b7f319 + - 5d683239-bf1d-4d64-9e74-620c1b2b956c status: 200 OK code: 200 - duration: 67.86725ms + duration: 121.25627ms - id: 307 request: proto: HTTP/1.1 @@ -15073,8 +15071,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -15084,7 +15082,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T11:05:37.645664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:32:05.638874Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -15093,9 +15091,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:07:35 GMT + - Mon, 24 Mar 2025 08:35:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -15103,10 +15101,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e39b8f69-de13-42d2-b40a-5f12119b64e4 + - 4957a167-6a2f-42c1-8262-c320d7b536b0 status: 200 OK code: 200 - duration: 76.954958ms + duration: 105.477393ms - id: 308 request: proto: HTTP/1.1 @@ -15122,8 +15120,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -15133,7 +15131,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T11:05:37.645664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:32:05.638874Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -15142,9 +15140,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:07:40 GMT + - Mon, 24 Mar 2025 08:35:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -15152,10 +15150,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a2a1ae67-47d4-4c13-91b8-5800abf5db20 + - ce1c31e4-e47c-4ac3-b5ed-d1ac40f477ec status: 200 OK code: 200 - duration: 76.630291ms + duration: 492.92606ms - id: 309 request: proto: HTTP/1.1 @@ -15171,8 +15169,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -15182,7 +15180,7 @@ interactions: trailer: {} content_length: 608 uncompressed: false - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","container_runtime":"containerd","created_at":"2025-01-28T10:58:11.260467Z","id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-01-28T11:05:37.645664Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.31.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:32:05.638874Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - "608" @@ -15191,9 +15189,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:07:45 GMT + - Mon, 24 Mar 2025 08:35:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -15201,10 +15199,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 39413791-44d0-4efb-9cac-4494351795a3 + - f6ec51d2-abd5-4ee3-a367-e513ce017d60 status: 200 OK code: 200 - duration: 75.3815ms + duration: 98.02581ms - id: 310 request: proto: HTTP/1.1 @@ -15220,8 +15218,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -15229,20 +15227,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 125 + content_length: 608 uncompressed: false - body: '{"message":"resource is not found","resource":"pool","resource_id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","type":"not_found"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:32:05.638874Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - - "125" + - "608" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:07:50 GMT + - Mon, 24 Mar 2025 08:35:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -15250,10 +15248,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 00b62967-654c-4e98-a759-f70ac243cd6a - status: 404 Not Found - code: 404 - duration: 35.744958ms + - efcb6e3c-f6fb-4dcf-9b6c-5e5f7e842360 + status: 200 OK + code: 200 + duration: 100.204244ms - id: 311 request: proto: HTTP/1.1 @@ -15269,29 +15267,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2174cb82-2a48-41ac-94f0-68305bb9a28a?with_additional_resources=false - method: DELETE + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1442 + content_length: 608 uncompressed: false - body: '{"acl_available":false,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2174cb82-2a48-41ac-94f0-68305bb9a28a.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-01-28T10:46:50.481031Z","created_at":"2025-01-28T10:46:50.481019Z","description":"","dns_wildcard":"*.2174cb82-2a48-41ac-94f0-68305bb9a28a.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sbs_csi_enabled":true,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2025-01-28T11:07:50.472411Z","upgrade_available":false,"version":"1.31.2"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:32:05.638874Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - - "1442" + - "608" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:07:50 GMT + - Mon, 24 Mar 2025 08:35:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -15299,10 +15297,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 70db67d7-d9f1-4d3f-979b-dcf54d4bf8cc + - 739af0a1-0eb2-47fb-b5c3-ea1c2ffbd73f status: 200 OK code: 200 - duration: 193.994541ms + duration: 110.115902ms - id: 312 request: proto: HTTP/1.1 @@ -15318,8 +15316,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/k8s/v1/regions/fr-par/clusters/2174cb82-2a48-41ac-94f0-68305bb9a28a + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -15327,20 +15325,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1442 + content_length: 608 uncompressed: false - body: '{"acl_available":false,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2174cb82-2a48-41ac-94f0-68305bb9a28a.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-01-28T10:46:50.481031Z","created_at":"2025-01-28T10:46:50.481019Z","description":"","dns_wildcard":"*.2174cb82-2a48-41ac-94f0-68305bb9a28a.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sbs_csi_enabled":true,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2025-01-28T11:07:50.472411Z","upgrade_available":false,"version":"1.31.2"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:32:05.638874Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - - "1442" + - "608" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:07:50 GMT + - Mon, 24 Mar 2025 08:35:38 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -15348,10 +15346,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 59326e71-6717-4f08-8f48-ae88d3e3dd96 + - c6af6c97-a20f-4605-a649-d20e6644e95d status: 200 OK code: 200 - duration: 59.512375ms + duration: 107.178848ms - id: 313 request: proto: HTTP/1.1 @@ -15367,8 +15365,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/k8s/v1/regions/fr-par/clusters/2174cb82-2a48-41ac-94f0-68305bb9a28a + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -15376,20 +15374,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 128 + content_length: 608 uncompressed: false - body: '{"message":"resource is not found","resource":"cluster","resource_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","type":"not_found"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:32:05.638874Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - - "128" + - "608" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:07:55 GMT + - Mon, 24 Mar 2025 08:35:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -15397,10 +15395,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b9b2978c-6797-4f0d-bd14-5c4a092fe226 - status: 404 Not Found - code: 404 - duration: 31.899167ms + - 082b7e7b-5985-4390-a6b8-4dcd6021f055 + status: 200 OK + code: 200 + duration: 105.290015ms - id: 314 request: proto: HTTP/1.1 @@ -15416,8 +15414,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-gw/v1/zones/fr-par-1/gateway-networks/3e88db28-c513-41e5-9a53-eed54a3db4ee + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -15425,20 +15423,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 966 + content_length: 608 uncompressed: false - body: '{"address":null,"created_at":"2025-01-28T10:57:55.340591Z","dhcp":{"address":"192.168.0.1","created_at":"2025-01-28T10:57:46.417152Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"5a90a96f-ded2-4c5f-89a0-f0ed9a5404a8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2025-01-28T10:57:46.417152Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5","id":"3e88db28-c513-41e5-9a53-eed54a3db4ee","ipam_config":null,"mac_address":"02:00:00:19:1C:B1","private_network_id":"8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d","status":"ready","updated_at":"2025-01-28T10:58:06.050540Z","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:32:05.638874Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - - "966" + - "608" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:07:55 GMT + - Mon, 24 Mar 2025 08:35:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -15446,10 +15444,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0a393691-b274-4006-a44d-9eb740ae7cb8 + - 5cc5582c-3e2e-48e4-81f6-20969714eea2 status: 200 OK code: 200 - duration: 51.559708ms + duration: 122.134539ms - id: 315 request: proto: HTTP/1.1 @@ -15465,27 +15463,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/3e88db28-c513-41e5-9a53-eed54a3db4ee?cleanup_dhcp=false - method: DELETE + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 608 uncompressed: false - body: "" + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:32:05.638874Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: + Content-Length: + - "608" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:07:55 GMT + - Mon, 24 Mar 2025 08:35:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -15493,10 +15493,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 35bf5a51-cb82-4e68-aeee-e1cda3c11a34 - status: 204 No Content - code: 204 - duration: 78.153583ms + - 9d644202-1a3d-4fe7-aec9-6527a2fb895b + status: 200 OK + code: 200 + duration: 168.465489ms - id: 316 request: proto: HTTP/1.1 @@ -15512,8 +15512,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-gw/v1/zones/fr-par-1/gateway-networks/3e88db28-c513-41e5-9a53-eed54a3db4ee + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -15521,20 +15521,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 970 + content_length: 608 uncompressed: false - body: '{"address":null,"created_at":"2025-01-28T10:57:55.340591Z","dhcp":{"address":"192.168.0.1","created_at":"2025-01-28T10:57:46.417152Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"5a90a96f-ded2-4c5f-89a0-f0ed9a5404a8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2025-01-28T10:57:46.417152Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5","id":"3e88db28-c513-41e5-9a53-eed54a3db4ee","ipam_config":null,"mac_address":"02:00:00:19:1C:B1","private_network_id":"8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d","status":"detaching","updated_at":"2025-01-28T11:07:55.749609Z","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:32:05.638874Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - - "970" + - "608" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:07:55 GMT + - Mon, 24 Mar 2025 08:35:59 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -15542,10 +15542,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2bd9d63e-72f6-43d3-b99d-d49af1e8ad68 + - e11e5ff7-63bf-4023-9d0c-c1d7750000e0 status: 200 OK code: 200 - duration: 43.99625ms + duration: 106.259891ms - id: 317 request: proto: HTTP/1.1 @@ -15561,8 +15561,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-gw/v1/zones/fr-par-1/gateway-networks/3e88db28-c513-41e5-9a53-eed54a3db4ee + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -15570,20 +15570,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 136 + content_length: 608 uncompressed: false - body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"3e88db28-c513-41e5-9a53-eed54a3db4ee","type":"not_found"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:32:05.638874Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - - "136" + - "608" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:08:00 GMT + - Mon, 24 Mar 2025 08:36:04 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -15591,10 +15591,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0e723dfe-360d-425a-b35e-2b2852aea589 - status: 404 Not Found - code: 404 - duration: 40.775125ms + - 8ba0c10a-64a6-4f65-bb3e-1711b531e2ff + status: 200 OK + code: 200 + duration: 105.103765ms - id: 318 request: proto: HTTP/1.1 @@ -15610,8 +15610,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-gw/v1/zones/fr-par-1/gateways/cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -15619,20 +15619,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 976 + content_length: 608 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-28T10:57:47.540138Z","gateway_networks":[],"id":"cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5","ip":{"address":"51.15.255.93","created_at":"2025-01-28T10:57:47.521305Z","gateway_id":"cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5","id":"0b2dc034-88ec-4a16-addf-35b6b9d4b496","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"93-255-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-28T10:57:47.521305Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"test-k8s-public-ip","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-28T10:58:06.250449Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:32:05.638874Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - - "976" + - "608" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:08:00 GMT + - Mon, 24 Mar 2025 08:36:09 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -15640,10 +15640,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5aac726e-762a-4065-a45e-cd84cedacee5 + - 2b3d7f0f-3afe-4fc7-882f-1e15a93b4195 status: 200 OK code: 200 - duration: 31.459708ms + duration: 125.565665ms - id: 319 request: proto: HTTP/1.1 @@ -15659,8 +15659,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-gw/v1/zones/fr-par-1/gateways/cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5 + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -15668,20 +15668,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 976 + content_length: 608 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-28T10:57:47.540138Z","gateway_networks":[],"id":"cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5","ip":{"address":"51.15.255.93","created_at":"2025-01-28T10:57:47.521305Z","gateway_id":"cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5","id":"0b2dc034-88ec-4a16-addf-35b6b9d4b496","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"93-255-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-28T10:57:47.521305Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"test-k8s-public-ip","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-28T10:58:06.250449Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:32:05.638874Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: Content-Length: - - "976" + - "608" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:08:00 GMT + - Mon, 24 Mar 2025 08:36:14 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -15689,10 +15689,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c74c2b9-417d-4ea1-924b-36e4dbc5f729 + - 8b05bbe4-369b-4502-bcdb-7c0204aa8ec3 status: 200 OK code: 200 - duration: 41.2915ms + duration: 106.467559ms - id: 320 request: proto: HTTP/1.1 @@ -15708,27 +15708,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/5a90a96f-ded2-4c5f-89a0-f0ed9a5404a8 - method: DELETE + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 608 uncompressed: false - body: "" + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","container_runtime":"containerd","created_at":"2025-03-24T08:24:56.202623Z","id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-k8s-public-ip","node_type":"pro2_xxs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":20000000000,"root_volume_type":"sbs_5k","size":1,"status":"deleting","tags":[],"updated_at":"2025-03-24T08:32:05.638874Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.32.3","zone":"fr-par-1"}' headers: + Content-Length: + - "608" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:08:01 GMT + - Mon, 24 Mar 2025 08:36:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -15736,10 +15738,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4258dd2f-798b-4474-8a4e-de34407b1a0e - status: 204 No Content - code: 204 - duration: 165.177417ms + - 4485483f-6160-4428-8911-10ac26303b6c + status: 200 OK + code: 200 + duration: 103.495142ms - id: 321 request: proto: HTTP/1.1 @@ -15755,27 +15757,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5?cleanup_dhcp=false - method: DELETE + - 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 125 uncompressed: false - body: "" + body: '{"message":"resource is not found","resource":"pool","resource_id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","type":"not_found"}' headers: + Content-Length: + - "125" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:08:01 GMT + - Mon, 24 Mar 2025 08:36:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -15783,10 +15787,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a4b81f0d-216d-4361-8014-7802c2407a47 - status: 204 No Content - code: 204 - duration: 132.796417ms + - 87696f52-b456-4383-8560-7e1ac6cb5d54 + status: 404 Not Found + code: 404 + duration: 82.15798ms - id: 322 request: proto: HTTP/1.1 @@ -15802,29 +15806,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5 - method: GET + - 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/k8s/v1/regions/fr-par/clusters/2fd5d612-425f-4b4b-ae74-16eda80368e6?with_additional_resources=false + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 977 + content_length: 1501 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-28T10:57:47.540138Z","gateway_networks":[],"id":"cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5","ip":{"address":"51.15.255.93","created_at":"2025-01-28T10:57:47.521305Z","gateway_id":"cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5","id":"0b2dc034-88ec-4a16-addf-35b6b9d4b496","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"93-255-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-28T10:57:47.521305Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"test-k8s-public-ip","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"deleting","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-28T11:08:00.997014Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"acl_available":true,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2fd5d612-425f-4b4b-ae74-16eda80368e6.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-03-24T08:13:42.105610Z","created_at":"2025-03-24T08:13:42.105600Z","description":"","dns_wildcard":"*.2fd5d612-425f-4b4b-ae74-16eda80368e6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"iam_nodes_group_id":"2ad98fd4-b1c1-438c-971f-d6152cfe2fbe","id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_id":"2177e306-fcad-4127-ba67-ba1abe0d58cb","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","sbs_csi_enabled":true,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2025-03-24T08:36:25.082382Z","upgrade_available":false,"version":"1.32.3"}' headers: Content-Length: - - "977" + - "1501" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:08:01 GMT + - Mon, 24 Mar 2025 08:36:25 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -15832,10 +15836,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6299fa8b-4953-46a4-b7d1-428a08e400a2 + - 9615361c-65ba-4ddf-b731-311f0b5b6a7c status: 200 OK code: 200 - duration: 33.521792ms + duration: 175.76351ms - id: 323 request: proto: HTTP/1.1 @@ -15851,27 +15855,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d - method: DELETE + - 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/k8s/v1/regions/fr-par/clusters/2fd5d612-425f-4b4b-ae74-16eda80368e6 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 1501 uncompressed: false - body: "" + body: '{"acl_available":true,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2fd5d612-425f-4b4b-ae74-16eda80368e6.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-03-24T08:13:42.105610Z","created_at":"2025-03-24T08:13:42.105600Z","description":"","dns_wildcard":"*.2fd5d612-425f-4b4b-ae74-16eda80368e6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"iam_nodes_group_id":"2ad98fd4-b1c1-438c-971f-d6152cfe2fbe","id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_id":"2177e306-fcad-4127-ba67-ba1abe0d58cb","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","sbs_csi_enabled":true,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2025-03-24T08:36:25.082382Z","upgrade_available":false,"version":"1.32.3"}' headers: + Content-Length: + - "1501" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:08:02 GMT + - Mon, 24 Mar 2025 08:36:25 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -15879,10 +15885,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ceb5738a-2faa-4468-99db-91c091ea7713 - status: 204 No Content - code: 204 - duration: 1.3263415s + - 518e7c44-f1e2-4bf1-a9ac-8b6134b811d3 + status: 200 OK + code: 200 + duration: 125.492581ms - id: 324 request: proto: HTTP/1.1 @@ -15898,8 +15904,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-gw/v1/zones/fr-par-1/gateways/cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5 + - 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/k8s/v1/regions/fr-par/clusters/2fd5d612-425f-4b4b-ae74-16eda80368e6 method: GET response: proto: HTTP/2.0 @@ -15909,7 +15915,7 @@ interactions: trailer: {} content_length: 128 uncompressed: false - body: '{"message":"resource is not found","resource":"gateway","resource_id":"cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","type":"not_found"}' headers: Content-Length: - "128" @@ -15918,9 +15924,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:08:06 GMT + - Mon, 24 Mar 2025 08:36:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -15928,10 +15934,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e45d76fe-daa2-4e5d-8711-25209f507897 + - 244d0fe7-61e9-4299-b7f9-d79f4a9fe10c status: 404 Not Found code: 404 - duration: 30.651667ms + duration: 98.422504ms - id: 325 request: proto: HTTP/1.1 @@ -15947,8 +15953,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/k8s/v1/regions/fr-par/pools/75b5e350-ee35-4f2d-b823-5cec51fb9510 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/2abc0259-8211-43f6-a20f-e539ba8ef8f9 method: GET response: proto: HTTP/2.0 @@ -15956,20 +15962,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 125 + content_length: 416 uncompressed: false - body: '{"message":"resource is not found","resource":"pool","resource_id":"75b5e350-ee35-4f2d-b823-5cec51fb9510","type":"not_found"}' + body: '{"created_at":"2025-03-24T08:24:40.139725Z","gateway_id":"1145fd31-3b8f-463d-9619-deadccd4509a","id":"2abc0259-8211-43f6-a20f-e539ba8ef8f9","ipam_ip_id":"efb1ff2a-f554-409c-bf2b-061db36a95b7","mac_address":"02:00:00:14:F8:6B","masquerade_enabled":true,"private_network_id":"2177e306-fcad-4127-ba67-ba1abe0d58cb","push_default_route":true,"status":"ready","updated_at":"2025-03-24T08:24:50.577797Z","zone":"fr-par-1"}' headers: Content-Length: - - "125" + - "416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:08:06 GMT + - Mon, 24 Mar 2025 08:36:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -15977,11 +15983,207 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c80367ca-57f1-47ac-ba70-be751c75be50 + - 29c49718-63f0-4dee-be8b-047e173f10f4 + status: 200 OK + code: 200 + duration: 107.129232ms + - id: 326 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + 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/vpc-gw/v2/zones/fr-par-1/gateway-networks/2abc0259-8211-43f6-a20f-e539ba8ef8f9 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 420 + uncompressed: false + body: '{"created_at":"2025-03-24T08:24:40.139725Z","gateway_id":"1145fd31-3b8f-463d-9619-deadccd4509a","id":"2abc0259-8211-43f6-a20f-e539ba8ef8f9","ipam_ip_id":"efb1ff2a-f554-409c-bf2b-061db36a95b7","mac_address":"02:00:00:14:F8:6B","masquerade_enabled":true,"private_network_id":"2177e306-fcad-4127-ba67-ba1abe0d58cb","push_default_route":true,"status":"detaching","updated_at":"2025-03-24T08:36:30.630400Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "420" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 24 Mar 2025 08:36:30 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: + - 4b9127cd-29e9-430c-ab12-f0814c8fa0df + status: 200 OK + code: 200 + duration: 140.815802ms + - id: 327 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + 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/vpc-gw/v2/zones/fr-par-1/gateway-networks/2abc0259-8211-43f6-a20f-e539ba8ef8f9 + 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-03-24T08:24:40.139725Z","gateway_id":"1145fd31-3b8f-463d-9619-deadccd4509a","id":"2abc0259-8211-43f6-a20f-e539ba8ef8f9","ipam_ip_id":"efb1ff2a-f554-409c-bf2b-061db36a95b7","mac_address":"02:00:00:14:F8:6B","masquerade_enabled":true,"private_network_id":"2177e306-fcad-4127-ba67-ba1abe0d58cb","push_default_route":true,"status":"detaching","updated_at":"2025-03-24T08:36:30.630400Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "420" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 24 Mar 2025 08:36:30 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: + - 3f7a89eb-42fa-41ff-88c5-735a854e3c59 + status: 200 OK + code: 200 + duration: 110.480224ms + - id: 328 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + 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/vpc-gw/v2/zones/fr-par-1/gateway-networks/2abc0259-8211-43f6-a20f-e539ba8ef8f9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 136 + uncompressed: false + body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"2abc0259-8211-43f6-a20f-e539ba8ef8f9","type":"not_found"}' + headers: + Content-Length: + - "136" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 24 Mar 2025 08:36:35 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: + - d9148ae0-4a5d-4d88-934f-55dc99452100 status: 404 Not Found code: 404 - duration: 24.403583ms - - id: 326 + duration: 116.433021ms + - id: 329 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + 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/vpc-gw/v2/zones/fr-par-1/gateways/1145fd31-3b8f-463d-9619-deadccd4509a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 907 + uncompressed: false + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T08:24:34.029175Z","gateway_networks":[],"id":"1145fd31-3b8f-463d-9619-deadccd4509a","ipv4":{"address":"51.15.244.79","created_at":"2025-03-24T08:24:34.007617Z","gateway_id":"1145fd31-3b8f-463d-9619-deadccd4509a","id":"609cc4ed-e6f5-4492-b760-c2bb8d63d89c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"79-244-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T08:24:34.007617Z","zone":"fr-par-1"},"is_legacy":false,"name":"test-k8s-public-ip","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-03-24T08:24:50.763266Z","version":"0.7.3","zone":"fr-par-1"}' + headers: + Content-Length: + - "907" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 24 Mar 2025 08:36:35 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: + - 4b972fab-976e-4e0a-a345-b117c409b32b + status: 200 OK + code: 200 + duration: 90.813085ms + - id: 330 request: proto: HTTP/1.1 proto_major: 1 @@ -15996,8 +16198,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/k8s/v1/regions/fr-par/clusters/2174cb82-2a48-41ac-94f0-68305bb9a28a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/1145fd31-3b8f-463d-9619-deadccd4509a?delete_ip=false + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 908 + uncompressed: false + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T08:24:34.029175Z","gateway_networks":[],"id":"1145fd31-3b8f-463d-9619-deadccd4509a","ipv4":{"address":"51.15.244.79","created_at":"2025-03-24T08:24:34.007617Z","gateway_id":"1145fd31-3b8f-463d-9619-deadccd4509a","id":"609cc4ed-e6f5-4492-b760-c2bb8d63d89c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"79-244-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T08:24:34.007617Z","zone":"fr-par-1"},"is_legacy":false,"name":"test-k8s-public-ip","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-03-24T08:36:36.084053Z","version":"0.7.3","zone":"fr-par-1"}' + headers: + Content-Length: + - "908" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 24 Mar 2025 08:36:36 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: + - fc6ec22f-356c-4f3d-ba62-935b49e56ec5 + status: 200 OK + code: 200 + duration: 110.873583ms + - id: 331 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + 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/vpc-gw/v2/zones/fr-par-1/gateways/1145fd31-3b8f-463d-9619-deadccd4509a method: GET response: proto: HTTP/2.0 @@ -16007,7 +16258,7 @@ interactions: trailer: {} content_length: 128 uncompressed: false - body: '{"message":"resource is not found","resource":"cluster","resource_id":"2174cb82-2a48-41ac-94f0-68305bb9a28a","type":"not_found"}' + body: '{"message":"resource is not found","resource":"gateway","resource_id":"1145fd31-3b8f-463d-9619-deadccd4509a","type":"not_found"}' headers: Content-Length: - "128" @@ -16016,9 +16267,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:08:06 GMT + - Mon, 24 Mar 2025 08:36:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -16026,11 +16277,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 305ce8a7-1db9-455e-8f21-19cc720d1c65 + - 12ca28cb-f50b-4456-bea0-d04ae435c819 status: 404 Not Found code: 404 - duration: 25.7095ms - - id: 327 + duration: 80.41507ms + - id: 332 request: proto: HTTP/1.1 proto_major: 1 @@ -16045,8 +16296,55 @@ interactions: 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-gw/v1/zones/fr-par-1/gateway-networks/3e88db28-c513-41e5-9a53-eed54a3db4ee + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2177e306-fcad-4127-ba67-ba1abe0d58cb + 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, 24 Mar 2025 08:36:37 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: + - d87f49d3-ab81-4f15-a834-33340ddd2e14 + status: 204 No Content + code: 204 + duration: 1.620084419s + - id: 333 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + 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/k8s/v1/regions/fr-par/pools/2f840514-c14f-4ad9-9f5a-74d1a2348251 method: GET response: proto: HTTP/2.0 @@ -16054,20 +16352,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 136 + content_length: 125 uncompressed: false - body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"3e88db28-c513-41e5-9a53-eed54a3db4ee","type":"not_found"}' + body: '{"message":"resource is not found","resource":"pool","resource_id":"2f840514-c14f-4ad9-9f5a-74d1a2348251","type":"not_found"}' headers: Content-Length: - - "136" + - "125" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:08:06 GMT + - Mon, 24 Mar 2025 08:36:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -16075,11 +16373,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4a752b4c-62a1-4310-8d9d-57e9d58c2dcb + - ed48f104-ebaf-4981-8778-7d3d560c922b status: 404 Not Found code: 404 - duration: 32.050125ms - - id: 328 + duration: 100.117178ms + - id: 334 request: proto: HTTP/1.1 proto_major: 1 @@ -16094,8 +16392,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-gw/v1/zones/fr-par-1/dhcps/5a90a96f-ded2-4c5f-89a0-f0ed9a5404a8 + - 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/k8s/v1/regions/fr-par/clusters/2fd5d612-425f-4b4b-ae74-16eda80368e6 method: GET response: proto: HTTP/2.0 @@ -16103,20 +16401,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 125 + content_length: 128 uncompressed: false - body: '{"message":"resource is not found","resource":"dhcp","resource_id":"5a90a96f-ded2-4c5f-89a0-f0ed9a5404a8","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"2fd5d612-425f-4b4b-ae74-16eda80368e6","type":"not_found"}' headers: Content-Length: - - "125" + - "128" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:08:06 GMT + - Mon, 24 Mar 2025 08:36:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -16124,11 +16422,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 735d54e7-cf90-496a-8c48-96da46e2cf36 + - d6bdae9f-0d50-463c-92a4-7830f76650b4 status: 404 Not Found code: 404 - duration: 33.177083ms - - id: 329 + duration: 80.85462ms + - id: 335 request: proto: HTTP/1.1 proto_major: 1 @@ -16143,8 +16441,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-gw/v1/zones/fr-par-1/gateways/cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/2abc0259-8211-43f6-a20f-e539ba8ef8f9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 136 + uncompressed: false + body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"2abc0259-8211-43f6-a20f-e539ba8ef8f9","type":"not_found"}' + headers: + Content-Length: + - "136" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 24 Mar 2025 08:36:37 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: + - 7b3cbe82-cbd6-406c-ae6d-84a254876427 + status: 404 Not Found + code: 404 + duration: 82.914629ms + - id: 336 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + 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/vpc-gw/v2/zones/fr-par-1/gateways/1145fd31-3b8f-463d-9619-deadccd4509a method: GET response: proto: HTTP/2.0 @@ -16154,7 +16501,7 @@ interactions: trailer: {} content_length: 128 uncompressed: false - body: '{"message":"resource is not found","resource":"gateway","resource_id":"cf92051f-c2eb-4f71-ae1d-68d8fa92e2a5","type":"not_found"}' + body: '{"message":"resource is not found","resource":"gateway","resource_id":"1145fd31-3b8f-463d-9619-deadccd4509a","type":"not_found"}' headers: Content-Length: - "128" @@ -16163,9 +16510,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:08:06 GMT + - Mon, 24 Mar 2025 08:36:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -16173,11 +16520,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 49285bc7-4f73-4c4a-9fe2-5435d016e91a + - 2ae5c3a0-a4a4-4c55-8e06-daa955440cab status: 404 Not Found code: 404 - duration: 33.339167ms - - id: 330 + duration: 84.832054ms + - id: 337 request: proto: HTTP/1.1 proto_major: 1 @@ -16192,8 +16539,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/8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2177e306-fcad-4127-ba67-ba1abe0d58cb method: GET response: proto: HTTP/2.0 @@ -16203,7 +16550,7 @@ interactions: trailer: {} content_length: 136 uncompressed: false - body: '{"message":"resource is not found","resource":"private_network","resource_id":"8d2862f3-cd01-4ec4-a3b6-ec35ac664f0d","type":"not_found"}' + body: '{"message":"resource is not found","resource":"private_network","resource_id":"2177e306-fcad-4127-ba67-ba1abe0d58cb","type":"not_found"}' headers: Content-Length: - "136" @@ -16212,9 +16559,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 11:08:06 GMT + - Mon, 24 Mar 2025 08:36:38 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -16222,7 +16569,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 061f5432-6c79-4c28-b098-454b7f438edd + - aceaf6ef-a39c-4d0c-9c41-9a003f43918d status: 404 Not Found code: 404 - duration: 36.397625ms + duration: 82.124088ms diff --git a/internal/services/lb/lb_test.go b/internal/services/lb/lb_test.go index b29f4ea3c4..334e798916 100644 --- a/internal/services/lb/lb_test.go +++ b/internal/services/lb/lb_test.go @@ -12,11 +12,8 @@ import ( lbSDK "github.com/scaleway/scaleway-sdk-go/api/lb/v1" "github.com/scaleway/terraform-provider-scaleway/v2/internal/acctest" "github.com/scaleway/terraform-provider-scaleway/v2/internal/httperrors" - instancechecks "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/instance/testfuncs" "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/lb" - lbchecks "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/lb/testfuncs" vpcchecks "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/vpc/testfuncs" - vpcgwchecks "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/vpcgw/testfuncs" ) func TestAccLB_Basic(t *testing.T) { @@ -361,106 +358,6 @@ func TestAccLB_Migrate(t *testing.T) { }) } -func TestAccLB_WithPrivateNetworksOnDHCPConfig(t *testing.T) { - tt := acctest.NewTestTools(t) - defer tt.Cleanup() - resource.ParallelTest(t, resource.TestCase{ - PreCheck: func() { acctest.PreCheck(t) }, - ProviderFactories: tt.ProviderFactories, - CheckDestroy: resource.ComposeTestCheckFunc( - instancechecks.IsServerDestroyed(tt), - isLbDestroyed(tt), - lbchecks.IsIPDestroyed(tt), - vpcgwchecks.IsGatewayNetworkDestroyed(tt), - vpcchecks.CheckPrivateNetworkDestroy(tt), - vpcgwchecks.IsDHCPDestroyed(tt), - vpcgwchecks.IsGatewayDestroyed(tt), - vpcgwchecks.IsIPDestroyed(tt), - ), - Steps: []resource.TestStep{ - { - Config: ` - ### IP for Public Gateway - resource "scaleway_vpc_public_gateway_ip" "main" { - } - - ### The Public Gateway with the Attached IP - resource "scaleway_vpc_public_gateway" "main" { - name = "tf-test-public-gw" - type = "VPC-GW-S" - ip_id = scaleway_vpc_public_gateway_ip.main.id - } - - ### Scaleway Private Network - resource "scaleway_vpc_private_network" "main" { - name = "private network with a DHCP config" - } - - ### DHCP Space of VPC - resource "scaleway_vpc_public_gateway_dhcp" "main" { - subnet = "10.0.0.0/24" - } - - ### VPC Gateway Network - resource "scaleway_vpc_gateway_network" "main" { - gateway_id = scaleway_vpc_public_gateway.main.id - private_network_id = scaleway_vpc_private_network.main.id - dhcp_id = scaleway_vpc_public_gateway_dhcp.main.id - cleanup_dhcp = true - enable_masquerade = true - } - - ### Scaleway Instance - resource "scaleway_instance_server" "main" { - name = "Scaleway Terraform Provider" - type = "DEV1-S" - image = "debian_bullseye" - enable_ipv6 = false - - private_network { - pn_id = scaleway_vpc_private_network.main.id - } - } - - ### IP for LB IP - resource scaleway_lb_ip ip01 { - } - - resource scaleway_lb lb01 { - ip_id = scaleway_lb_ip.ip01.id - name = "test-lb-with-private-network-configs" - type = "LB-S" - - private_network { - private_network_id = scaleway_vpc_private_network.main.id - dhcp_config = true - } - - depends_on = [scaleway_vpc_public_gateway.main] - } - `, - Check: resource.ComposeTestCheckFunc( - isLbPresent(tt, "scaleway_lb.lb01"), - isIPPresent(tt, "scaleway_lb_ip.ip01"), - resource.TestCheckResourceAttrSet("scaleway_vpc_private_network.main", "name"), - resource.TestCheckResourceAttrPair( - "scaleway_lb.lb01", "private_network.0.private_network_id", - "scaleway_vpc_private_network.main", "id"), - resource.TestCheckResourceAttrPair( - "scaleway_instance_server.main", "private_network.0.pn_id", - "scaleway_vpc_private_network.main", "id"), - resource.TestCheckResourceAttr("scaleway_lb.lb01", - "private_network.0.status", lbSDK.PrivateNetworkStatusReady.String()), - resource.TestCheckResourceAttr("scaleway_lb.lb01", - "private_network.0.dhcp_config", "true"), - resource.TestCheckResourceAttr("scaleway_lb.lb01", - "private_network.0.status", lbSDK.PrivateNetworkStatusReady.String()), - ), - }, - }, - }) -} - func TestAccLB_WithPrivateNetworksIPAMIDs(t *testing.T) { tt := acctest.NewTestTools(t) defer tt.Cleanup() diff --git a/internal/services/rdb/instance_test.go b/internal/services/rdb/instance_test.go index 4906e6b2dc..5dfb628885 100644 --- a/internal/services/rdb/instance_test.go +++ b/internal/services/rdb/instance_test.go @@ -314,192 +314,6 @@ func TestAccInstance_Capitalize(t *testing.T) { }) } -func TestAccInstance_PrivateNetwork(t *testing.T) { - tt := acctest.NewTestTools(t) - defer tt.Cleanup() - - latestEngineVersion := rdbchecks.GetLatestEngineVersion(tt, postgreSQLEngineName) - - resource.ParallelTest(t, resource.TestCase{ - PreCheck: func() { acctest.PreCheck(t) }, - ProviderFactories: tt.ProviderFactories, - CheckDestroy: rdbchecks.IsInstanceDestroyed(tt), - Steps: []resource.TestStep{ - { - Config: ` - resource scaleway_vpc_private_network pn01 { - name = "my_private_network" - region= "nl-ams" - } - `, - Check: resource.ComposeTestCheckFunc( - resource.TestCheckResourceAttr("scaleway_vpc_private_network.pn01", "name", "my_private_network"), - ), - }, - { - Config: fmt.Sprintf(` - resource scaleway_vpc_private_network pn01 { - name = "my_private_network" - region= "nl-ams" - } - - resource scaleway_rdb_instance main { - name = "test-rdb-private-network" - node_type = "db-dev-s" - engine = %q - is_ha_cluster = false - disable_backup = true - user_name = "my_initial_user" - password = "thiZ_is_v&ry_s3cret" - region= "nl-ams" - tags = [ "terraform-test", "scaleway_rdb_instance", "volume", "rdb_pn" ] - volume_type = "bssd" - volume_size_in_gb = 10 - private_network { - ip_net = "192.168.1.42/24" - pn_id = "${scaleway_vpc_private_network.pn01.id}" - } - } - `, latestEngineVersion), - Check: resource.ComposeTestCheckFunc( - isInstancePresent(tt, "scaleway_rdb_instance.main"), - resource.TestCheckResourceAttr("scaleway_rdb_instance.main", "private_network.#", "1"), - resource.TestCheckResourceAttr("scaleway_rdb_instance.main", "private_network.0.ip_net", "192.168.1.42/24"), - ), - }, - { - Config: fmt.Sprintf(` - resource scaleway_vpc_private_network pn01 { - name = "my_private_network_to_be_replaced" - region= "nl-ams" - } - - resource scaleway_vpc_private_network pn02 { - name = "my_private_network" - region= "nl-ams" - } - - resource scaleway_rdb_instance main { - name = "test-rdb-private-network" - node_type = "db-dev-s" - engine = %q - is_ha_cluster = false - disable_backup = true - user_name = "my_initial_user" - password = "thiZ_is_v&ry_s3cret" - region= "nl-ams" - tags = [ "terraform-test", "scaleway_rdb_instance", "volume", "rdb_pn" ] - volume_type = "bssd" - volume_size_in_gb = 10 - private_network { - ip_net = "192.168.1.254/24" - pn_id = "${scaleway_vpc_private_network.pn02.id}" - } - } - `, latestEngineVersion), - Check: resource.ComposeTestCheckFunc( - isInstancePresent(tt, "scaleway_rdb_instance.main"), - resource.TestCheckResourceAttr("scaleway_rdb_instance.main", "private_network.#", "1"), - resource.TestCheckResourceAttr("scaleway_rdb_instance.main", "private_network.0.ip_net", "192.168.1.254/24"), - ), - }, - { - Config: fmt.Sprintf(` - resource scaleway_vpc_private_network pn01 { - name = "my_private_network_to_be_replaced" - region= "nl-ams" - } - - resource scaleway_vpc_private_network pn02 { - name = "my_private_network" - region= "nl-ams" - } - - resource scaleway_vpc_public_gateway_dhcp main { - subnet = "192.168.1.0/24" - zone = "nl-ams-1" - } - - resource scaleway_vpc_public_gateway_ip main { - zone = "nl-ams-1" - } - - resource scaleway_vpc_public_gateway main { - name = "foobar" - type = "VPC-GW-S" - zone = "nl-ams-1" - ip_id = scaleway_vpc_public_gateway_ip.main.id - } - - resource scaleway_vpc_public_gateway_pat_rule main { - gateway_id = scaleway_vpc_public_gateway.main.id - private_ip = scaleway_vpc_public_gateway_dhcp.main.address - private_port = scaleway_rdb_instance.main.private_network.0.port - public_port = 42 - protocol = "both" - zone = "nl-ams-1" - depends_on = [scaleway_vpc_gateway_network.main, scaleway_vpc_private_network.pn02] - } - - resource scaleway_vpc_gateway_network main { - gateway_id = scaleway_vpc_public_gateway.main.id - private_network_id = scaleway_vpc_private_network.pn02.id - dhcp_id = scaleway_vpc_public_gateway_dhcp.main.id - cleanup_dhcp = true - enable_masquerade = true - zone = "nl-ams-1" - depends_on = [scaleway_vpc_public_gateway_ip.main, scaleway_vpc_private_network.pn02] - } - - resource scaleway_rdb_instance main { - name = "test-rdb-private-network" - node_type = "db-dev-s" - engine = %q - is_ha_cluster = false - disable_backup = true - user_name = "my_initial_user" - password = "thiZ_is_v&ry_s3cret" - region= "nl-ams" - tags = [ "terraform-test", "scaleway_rdb_instance", "volume", "rdb_pn" ] - volume_type = "bssd" - volume_size_in_gb = 10 - private_network { - ip_net = "192.168.1.254/24" #pool high - pn_id = "${scaleway_vpc_private_network.pn02.id}" - } - } - `, latestEngineVersion), - Check: resource.ComposeTestCheckFunc( - isInstancePresent(tt, "scaleway_rdb_instance.main"), - resource.TestCheckResourceAttr("scaleway_rdb_instance.main", "private_network.0.ip_net", "192.168.1.254/24"), - ), - }, - { - Config: fmt.Sprintf(` - resource scaleway_vpc_private_network pn02 { - name = "my_private_network" - region= "nl-ams" - } - - resource scaleway_rdb_instance main { - name = "test-rdb-private-network" - node_type = "db-dev-s" - engine = %q - is_ha_cluster = false - disable_backup = true - user_name = "my_initial_user" - password = "thiZ_is_v&ry_s3cret" - region= "nl-ams" - tags = [ "terraform-test", "scaleway_rdb_instance", "volume", "rdb_pn" ] - volume_type = "bssd" - volume_size_in_gb = 10 - } - `, latestEngineVersion), - }, - }, - }) -} - func TestAccInstance_PrivateNetworkUpdate(t *testing.T) { tt := acctest.NewTestTools(t) defer tt.Cleanup() @@ -696,7 +510,7 @@ func TestAccInstance_PrivateNetworkUpdate(t *testing.T) { } // TODO: Refactor this test when rdb is ipam-compatible -func TestAccInstance_PrivateNetwork_DHCP(t *testing.T) { +func TestAccInstance_PrivateNetwork(t *testing.T) { tt := acctest.NewTestTools(t) defer tt.Cleanup() diff --git a/internal/services/rdb/testdata/instance-private-network.cassette.yaml b/internal/services/rdb/testdata/instance-private-network.cassette.yaml index 7f13d500fe..47e050d06a 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/rdb/v1/regions/fr-par/database-engines method: GET response: @@ -25,20 +25,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 125232 + content_length: 146375 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":"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|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}' headers: Content-Length: - - "125232" + - "146375" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:33:44 GMT + - Mon, 24 Mar 2025 08:19:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -46,29 +46,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 30e1c039-f8a2-46fd-8d5a-bff08f312a51 + - ff185c56-e9e3-402f-a97d-fd34dc01bf52 status: 200 OK code: 200 - duration: 129.637958ms + duration: 333.115846ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 106 + content_length: 102 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"my_private_network","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null}' + 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.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/vpcs method: POST response: proto: HTTP/2.0 @@ -76,20 +76,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1044 + content_length: 352 uncompressed: false - body: '{"created_at":"2025-02-06T13:41:20.570812Z","dhcp_enabled":true,"id":"31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff","name":"my_private_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"nl-ams","subnets":[{"created_at":"2025-02-06T13:41:20.570812Z","id":"5adcafd5-04f6-45af-9ec1-fdd92d6ff03a","private_network_id":"31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-02-06T13:41:20.570812Z","vpc_id":"5976fd03-14dd-4892-a481-034469de59c6"},{"created_at":"2025-02-06T13:41:20.570812Z","id":"90f0b514-8d8b-4dff-9c2f-a99f2598ae51","private_network_id":"31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5c:d510:d730:e822::/64","updated_at":"2025-02-06T13:41:20.570812Z","vpc_id":"5976fd03-14dd-4892-a481-034469de59c6"}],"tags":[],"updated_at":"2025-02-06T13:41:20.570812Z","vpc_id":"5976fd03-14dd-4892-a481-034469de59c6"}' + body: '{"created_at":"2025-03-24T08:19:07.405345Z","id":"3c716461-9ad4-4913-8eb7-6ca375c1079d","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-03-24T08:19:07.405345Z"}' headers: Content-Length: - - "1044" + - "352" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:41:21 GMT + - Mon, 24 Mar 2025 08:19:07 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0250e50d-ca96-4c91-a378-f87d9f907c2c + - 24aa5c55-753b-45ef-8abe-6a3445731866 status: 200 OK code: 200 - duration: 600.485125ms + duration: 280.064777ms - 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.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/vpcs/3c716461-9ad4-4913-8eb7-6ca375c1079d method: GET response: proto: HTTP/2.0 @@ -125,20 +125,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1044 + content_length: 352 uncompressed: false - body: '{"created_at":"2025-02-06T13:41:20.570812Z","dhcp_enabled":true,"id":"31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff","name":"my_private_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"nl-ams","subnets":[{"created_at":"2025-02-06T13:41:20.570812Z","id":"5adcafd5-04f6-45af-9ec1-fdd92d6ff03a","private_network_id":"31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-02-06T13:41:20.570812Z","vpc_id":"5976fd03-14dd-4892-a481-034469de59c6"},{"created_at":"2025-02-06T13:41:20.570812Z","id":"90f0b514-8d8b-4dff-9c2f-a99f2598ae51","private_network_id":"31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5c:d510:d730:e822::/64","updated_at":"2025-02-06T13:41:20.570812Z","vpc_id":"5976fd03-14dd-4892-a481-034469de59c6"}],"tags":[],"updated_at":"2025-02-06T13:41:20.570812Z","vpc_id":"5976fd03-14dd-4892-a481-034469de59c6"}' + body: '{"created_at":"2025-03-24T08:19:07.405345Z","id":"3c716461-9ad4-4913-8eb7-6ca375c1079d","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-03-24T08:19:07.405345Z"}' headers: Content-Length: - - "1044" + - "352" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:41:21 GMT + - Mon, 24 Mar 2025 08:19:07 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,48 +146,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e4bcffe7-0898-4c57-b363-5c154c923e3a + - f4d03ee8-384b-462b-806e-9973b82aa48f status: 200 OK code: 200 - duration: 102.346834ms + duration: 148.172182ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 63 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-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: 1044 + content_length: 338 uncompressed: false - body: '{"created_at":"2025-02-06T13:41:20.570812Z","dhcp_enabled":true,"id":"31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff","name":"my_private_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"nl-ams","subnets":[{"created_at":"2025-02-06T13:41:20.570812Z","id":"5adcafd5-04f6-45af-9ec1-fdd92d6ff03a","private_network_id":"31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-02-06T13:41:20.570812Z","vpc_id":"5976fd03-14dd-4892-a481-034469de59c6"},{"created_at":"2025-02-06T13:41:20.570812Z","id":"90f0b514-8d8b-4dff-9c2f-a99f2598ae51","private_network_id":"31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5c:d510:d730:e822::/64","updated_at":"2025-02-06T13:41:20.570812Z","vpc_id":"5976fd03-14dd-4892-a481-034469de59c6"}],"tags":[],"updated_at":"2025-02-06T13:41:20.570812Z","vpc_id":"5976fd03-14dd-4892-a481-034469de59c6"}' + body: '{"address":"51.15.86.163","created_at":"2025-03-24T08:19:08.081581Z","id":"082691b0-5c14-4c7a-aaaf-1b81cab577c7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"163-86-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T08:19:08.081581Z","zone":"nl-ams-1"}' headers: Content-Length: - - "1044" + - "338" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:41:22 GMT + - Mon, 24 Mar 2025 08:19:08 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -195,10 +197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9d8438b8-58f7-409b-a60a-6cf6548362ec + - 7d5670c2-2201-48f2-86a7-7382eb69cc0e status: 200 OK code: 200 - duration: 104.839125ms + duration: 929.421923ms - 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.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/ips/082691b0-5c14-4c7a-aaaf-1b81cab577c7 method: GET response: proto: HTTP/2.0 @@ -223,20 +225,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1044 + content_length: 338 uncompressed: false - body: '{"created_at":"2025-02-06T13:41:20.570812Z","dhcp_enabled":true,"id":"31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff","name":"my_private_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"nl-ams","subnets":[{"created_at":"2025-02-06T13:41:20.570812Z","id":"5adcafd5-04f6-45af-9ec1-fdd92d6ff03a","private_network_id":"31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-02-06T13:41:20.570812Z","vpc_id":"5976fd03-14dd-4892-a481-034469de59c6"},{"created_at":"2025-02-06T13:41:20.570812Z","id":"90f0b514-8d8b-4dff-9c2f-a99f2598ae51","private_network_id":"31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5c:d510:d730:e822::/64","updated_at":"2025-02-06T13:41:20.570812Z","vpc_id":"5976fd03-14dd-4892-a481-034469de59c6"}],"tags":[],"updated_at":"2025-02-06T13:41:20.570812Z","vpc_id":"5976fd03-14dd-4892-a481-034469de59c6"}' + body: '{"address":"51.15.86.163","created_at":"2025-03-24T08:19:08.081581Z","id":"082691b0-5c14-4c7a-aaaf-1b81cab577c7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"163-86-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T08:19:08.081581Z","zone":"nl-ams-1"}' headers: Content-Length: - - "1044" + - "338" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:41:23 GMT + - Mon, 24 Mar 2025 08:19:08 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -244,29 +246,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9be318dc-d7dd-4056-8caf-a9fbe81f429a + - 420f6c44-0490-4b36-906c-12dcd4651416 status: 200 OK code: 200 - duration: 87.590125ms + duration: 157.70295ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 573 + content_length: 187 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"test-rdb-private-network","engine":"PostgreSQL-15","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":"bssd","volume_size":10000000000,"init_endpoints":[{"private_network":{"private_network_id":"31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff","service_ip":"192.168.1.42/24"}}],"backup_same_region":false,"encryption":{"enabled":false}}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"foobar","tags":[],"type":"VPC-GW-S","ip_id":"082691b0-5c14-4c7a-aaaf-1b81cab577c7","enable_smtp":false,"enable_bastion":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) 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.0; darwin; amd64) 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 @@ -274,20 +276,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1089 + content_length: 880 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-02-06T13:41:24.397115Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"e49b16ee-034a-4d0c-88e5-10a30975cba8","ip":"192.168.1.42","name":null,"port":5432,"private_network":{"private_network_id":"31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff","provisioning_mode":"static","service_ip":"192.168.1.42/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"3876750e-71f5-49c6-a89d-ea83d6b6f18e","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","read_replicas":[],"region":"nl-ams","settings":[],"status":"provisioning","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"bssd","size":10000000000,"type":"bssd"}}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T08:19:08.484649Z","gateway_networks":[],"id":"7b2081fd-5a76-4edc-b281-6458c646918d","ipv4":{"address":"51.15.86.163","created_at":"2025-03-24T08:19:08.081581Z","gateway_id":"7b2081fd-5a76-4edc-b281-6458c646918d","id":"082691b0-5c14-4c7a-aaaf-1b81cab577c7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"163-86-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T08:19:08.081581Z","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-03-24T08:19:08.484649Z","zone":"nl-ams-1"}' headers: Content-Length: - - "1089" + - "880" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:41:24 GMT + - Mon, 24 Mar 2025 08:19:08 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -295,48 +297,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1674d963-bf16-4d35-8d73-89ebeb05d901 + - acd7d470-984d-40a1-a338-667cc4d24b8f status: 200 OK code: 200 - duration: 887.167083ms + duration: 214.860445ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 168 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"my_private_network","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":["192.168.1.0/24"],"vpc_id":"3c716461-9ad4-4913-8eb7-6ca375c1079d"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/3876750e-71f5-49c6-a89d-ea83d6b6f18e - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1089 + content_length: 1022 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-02-06T13:41:24.397115Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"e49b16ee-034a-4d0c-88e5-10a30975cba8","ip":"192.168.1.42","name":null,"port":5432,"private_network":{"private_network_id":"31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff","provisioning_mode":"static","service_ip":"192.168.1.42/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"3876750e-71f5-49c6-a89d-ea83d6b6f18e","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","read_replicas":[],"region":"nl-ams","settings":[],"status":"provisioning","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"bssd","size":10000000000,"type":"bssd"}}' + body: '{"created_at":"2025-03-24T08:19:07.815832Z","dhcp_enabled":true,"id":"be233441-59eb-4637-8768-a358f57d5908","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-03-24T08:19:07.815832Z","id":"cfa5097a-e710-4b44-b848-1190c9c17444","private_network_id":"be233441-59eb-4637-8768-a358f57d5908","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"192.168.1.0/24","updated_at":"2025-03-24T08:19:07.815832Z","vpc_id":"3c716461-9ad4-4913-8eb7-6ca375c1079d"},{"created_at":"2025-03-24T08:19:07.815832Z","id":"76035f22-317b-4bd7-8368-8ec0f38d1baa","private_network_id":"be233441-59eb-4637-8768-a358f57d5908","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd2c:2ff0:469a:3715::/64","updated_at":"2025-03-24T08:19:07.815832Z","vpc_id":"3c716461-9ad4-4913-8eb7-6ca375c1079d"}],"tags":[],"updated_at":"2025-03-24T08:19:07.815832Z","vpc_id":"3c716461-9ad4-4913-8eb7-6ca375c1079d"}' headers: Content-Length: - - "1089" + - "1022" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:41:25 GMT + - Mon, 24 Mar 2025 08:19:08 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -344,10 +348,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5f0933ee-db4d-4280-add1-ac52a0973832 + - a5abe1bd-149a-4085-8a97-0c0f7356d4ff status: 200 OK code: 200 - duration: 155.185542ms + duration: 973.64939ms - id: 7 request: proto: HTTP/1.1 @@ -363,8 +367,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/3876750e-71f5-49c6-a89d-ea83d6b6f18e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/7b2081fd-5a76-4edc-b281-6458c646918d method: GET response: proto: HTTP/2.0 @@ -372,20 +376,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1089 + content_length: 898 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-02-06T13:41:24.397115Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"e49b16ee-034a-4d0c-88e5-10a30975cba8","ip":"192.168.1.42","name":null,"port":5432,"private_network":{"private_network_id":"31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff","provisioning_mode":"static","service_ip":"192.168.1.42/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"3876750e-71f5-49c6-a89d-ea83d6b6f18e","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","read_replicas":[],"region":"nl-ams","settings":[],"status":"provisioning","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"bssd","size":10000000000,"type":"bssd"}}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T08:19:08.484649Z","gateway_networks":[],"id":"7b2081fd-5a76-4edc-b281-6458c646918d","ipv4":{"address":"51.15.86.163","created_at":"2025-03-24T08:19:08.081581Z","gateway_id":"7b2081fd-5a76-4edc-b281-6458c646918d","id":"082691b0-5c14-4c7a-aaaf-1b81cab577c7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"163-86-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T08:19:08.081581Z","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-03-24T08:19:08.536509Z","version":"0.7.3","zone":"nl-ams-1"}' headers: Content-Length: - - "1089" + - "898" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:41:55 GMT + - Mon, 24 Mar 2025 08:19:08 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -393,10 +397,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0e156dd4-3a4f-4139-942a-645e2631af0e + - c2aab992-f47b-4680-801e-53422729440c status: 200 OK code: 200 - duration: 164.610542ms + duration: 184.993367ms - id: 8 request: proto: HTTP/1.1 @@ -412,8 +416,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/3876750e-71f5-49c6-a89d-ea83d6b6f18e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/be233441-59eb-4637-8768-a358f57d5908 method: GET response: proto: HTTP/2.0 @@ -421,20 +425,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1089 + content_length: 1022 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-02-06T13:41:24.397115Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"e49b16ee-034a-4d0c-88e5-10a30975cba8","ip":"192.168.1.42","name":null,"port":5432,"private_network":{"private_network_id":"31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff","provisioning_mode":"static","service_ip":"192.168.1.42/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"3876750e-71f5-49c6-a89d-ea83d6b6f18e","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","read_replicas":[],"region":"nl-ams","settings":[],"status":"provisioning","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"bssd","size":10000000000,"type":"bssd"}}' + body: '{"created_at":"2025-03-24T08:19:07.815832Z","dhcp_enabled":true,"id":"be233441-59eb-4637-8768-a358f57d5908","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-03-24T08:19:07.815832Z","id":"cfa5097a-e710-4b44-b848-1190c9c17444","private_network_id":"be233441-59eb-4637-8768-a358f57d5908","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"192.168.1.0/24","updated_at":"2025-03-24T08:19:07.815832Z","vpc_id":"3c716461-9ad4-4913-8eb7-6ca375c1079d"},{"created_at":"2025-03-24T08:19:07.815832Z","id":"76035f22-317b-4bd7-8368-8ec0f38d1baa","private_network_id":"be233441-59eb-4637-8768-a358f57d5908","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd2c:2ff0:469a:3715::/64","updated_at":"2025-03-24T08:19:07.815832Z","vpc_id":"3c716461-9ad4-4913-8eb7-6ca375c1079d"}],"tags":[],"updated_at":"2025-03-24T08:19:07.815832Z","vpc_id":"3c716461-9ad4-4913-8eb7-6ca375c1079d"}' headers: Content-Length: - - "1089" + - "1022" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:42:25 GMT + - Mon, 24 Mar 2025 08:19:08 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -442,48 +446,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac1cf8dc-cfa7-44b9-93ad-83a0ecfad4b4 + - 29ff7427-5829-451c-a945-9a417a8d6410 status: 200 OK code: 200 - duration: 150.019042ms + duration: 199.163056ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 579 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + 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":"bssd","volume_size":10000000000,"init_endpoints":[{"private_network":{"private_network_id":"be233441-59eb-4637-8768-a358f57d5908","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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/3876750e-71f5-49c6-a89d-ea83d6b6f18e - method: GET + - 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/rdb/v1/regions/nl-ams/instances + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1089 + content_length: 1058 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-02-06T13:41:24.397115Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"e49b16ee-034a-4d0c-88e5-10a30975cba8","ip":"192.168.1.42","name":null,"port":5432,"private_network":{"private_network_id":"31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff","provisioning_mode":"static","service_ip":"192.168.1.42/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"3876750e-71f5-49c6-a89d-ea83d6b6f18e","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","read_replicas":[],"region":"nl-ams","settings":[],"status":"initializing","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"bssd","size":10000000000,"type":"bssd"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-03-24T08:19:09.337633Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"8543e57e-833b-455c-a2b5-3cc56c7313f0","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"be233441-59eb-4637-8768-a358f57d5908","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-16","id":"91136575-4b1d-4c79-b240-08afeae48b00","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":"bssd","size":10000000000,"type":"bssd"}}' headers: Content-Length: - - "1089" + - "1058" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:42:55 GMT + - Mon, 24 Mar 2025 08:19:09 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -491,10 +497,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1aef2823-635e-4f9a-8f1b-2199a88b8bfb + - 7b932c57-9b6b-4700-ba1f-0c8c8fd6d6a8 status: 200 OK code: 200 - duration: 178.271834ms + duration: 1.031156616s - id: 10 request: proto: HTTP/1.1 @@ -510,8 +516,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/3876750e-71f5-49c6-a89d-ea83d6b6f18e + - 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/rdb/v1/regions/nl-ams/instances/91136575-4b1d-4c79-b240-08afeae48b00 method: GET response: proto: HTTP/2.0 @@ -519,20 +525,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1089 + content_length: 1058 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-02-06T13:41:24.397115Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"e49b16ee-034a-4d0c-88e5-10a30975cba8","ip":"192.168.1.42","name":null,"port":5432,"private_network":{"private_network_id":"31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff","provisioning_mode":"static","service_ip":"192.168.1.42/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"3876750e-71f5-49c6-a89d-ea83d6b6f18e","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","read_replicas":[],"region":"nl-ams","settings":[],"status":"initializing","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"bssd","size":10000000000,"type":"bssd"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-03-24T08:19:09.337633Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"8543e57e-833b-455c-a2b5-3cc56c7313f0","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"be233441-59eb-4637-8768-a358f57d5908","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-16","id":"91136575-4b1d-4c79-b240-08afeae48b00","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":"bssd","size":10000000000,"type":"bssd"}}' headers: Content-Length: - - "1089" + - "1058" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:43:25 GMT + - Mon, 24 Mar 2025 08:19:10 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -540,10 +546,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d8d97efd-db66-4950-b630-3e3db504532a + - 0acabe3c-692d-457c-a745-edaffa57879d status: 200 OK code: 200 - duration: 165.301333ms + duration: 186.509792ms - id: 11 request: proto: HTTP/1.1 @@ -559,8 +565,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/3876750e-71f5-49c6-a89d-ea83d6b6f18e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/7b2081fd-5a76-4edc-b281-6458c646918d method: GET response: proto: HTTP/2.0 @@ -568,20 +574,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1089 + content_length: 895 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-02-06T13:41:24.397115Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"e49b16ee-034a-4d0c-88e5-10a30975cba8","ip":"192.168.1.42","name":null,"port":5432,"private_network":{"private_network_id":"31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff","provisioning_mode":"static","service_ip":"192.168.1.42/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"3876750e-71f5-49c6-a89d-ea83d6b6f18e","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","read_replicas":[],"region":"nl-ams","settings":[],"status":"initializing","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"bssd","size":10000000000,"type":"bssd"}}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T08:19:08.484649Z","gateway_networks":[],"id":"7b2081fd-5a76-4edc-b281-6458c646918d","ipv4":{"address":"51.15.86.163","created_at":"2025-03-24T08:19:08.081581Z","gateway_id":"7b2081fd-5a76-4edc-b281-6458c646918d","id":"082691b0-5c14-4c7a-aaaf-1b81cab577c7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"163-86-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T08:19:08.081581Z","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-03-24T08:19:13.464922Z","version":"0.7.3","zone":"nl-ams-1"}' headers: Content-Length: - - "1089" + - "895" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:43:55 GMT + - Mon, 24 Mar 2025 08:19:13 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -589,10 +595,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 627e48fe-50ec-4216-8b05-98b9f26a54bf + - e912ed9d-0dde-4d24-8de6-761f70a331ee status: 200 OK code: 200 - duration: 157.764667ms + duration: 110.488547ms - id: 12 request: proto: HTTP/1.1 @@ -608,8 +614,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/3876750e-71f5-49c6-a89d-ea83d6b6f18e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/7b2081fd-5a76-4edc-b281-6458c646918d method: GET response: proto: HTTP/2.0 @@ -617,20 +623,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1089 + content_length: 895 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-02-06T13:41:24.397115Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"e49b16ee-034a-4d0c-88e5-10a30975cba8","ip":"192.168.1.42","name":null,"port":5432,"private_network":{"private_network_id":"31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff","provisioning_mode":"static","service_ip":"192.168.1.42/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"3876750e-71f5-49c6-a89d-ea83d6b6f18e","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","read_replicas":[],"region":"nl-ams","settings":[],"status":"initializing","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"bssd","size":10000000000,"type":"bssd"}}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T08:19:08.484649Z","gateway_networks":[],"id":"7b2081fd-5a76-4edc-b281-6458c646918d","ipv4":{"address":"51.15.86.163","created_at":"2025-03-24T08:19:08.081581Z","gateway_id":"7b2081fd-5a76-4edc-b281-6458c646918d","id":"082691b0-5c14-4c7a-aaaf-1b81cab577c7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"163-86-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T08:19:08.081581Z","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-03-24T08:19:13.464922Z","version":"0.7.3","zone":"nl-ams-1"}' headers: Content-Length: - - "1089" + - "895" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:44:26 GMT + - Mon, 24 Mar 2025 08:19:13 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -638,10 +644,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2fa34749-4f0e-4b41-965d-9aa2fbf79d0e + - fd82339f-b95b-4869-a917-1689c609ade6 status: 200 OK code: 200 - duration: 188.62725ms + duration: 102.565094ms - id: 13 request: proto: HTTP/1.1 @@ -657,8 +663,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/3876750e-71f5-49c6-a89d-ea83d6b6f18e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/7b2081fd-5a76-4edc-b281-6458c646918d method: GET response: proto: HTTP/2.0 @@ -666,20 +672,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1357 + content_length: 895 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-02-06T13:41:24.397115Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"e49b16ee-034a-4d0c-88e5-10a30975cba8","ip":"192.168.1.42","name":null,"port":5432,"private_network":{"private_network_id":"31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff","provisioning_mode":"static","service_ip":"192.168.1.42/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"3876750e-71f5-49c6-a89d-ea83d6b6f18e","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","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":"bssd","size":10000000000,"type":"bssd"}}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T08:19:08.484649Z","gateway_networks":[],"id":"7b2081fd-5a76-4edc-b281-6458c646918d","ipv4":{"address":"51.15.86.163","created_at":"2025-03-24T08:19:08.081581Z","gateway_id":"7b2081fd-5a76-4edc-b281-6458c646918d","id":"082691b0-5c14-4c7a-aaaf-1b81cab577c7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"163-86-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T08:19:08.081581Z","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-03-24T08:19:13.464922Z","version":"0.7.3","zone":"nl-ams-1"}' headers: Content-Length: - - "1357" + - "895" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:44:56 GMT + - Mon, 24 Mar 2025 08:19:14 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -687,48 +693,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 29173cef-55dc-4001-8c0a-381c92298522 + - cfa2d77b-7a7f-48ce-9693-e07334231175 status: 200 OK code: 200 - duration: 174.04775ms + duration: 156.085328ms - id: 14 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":"7b2081fd-5a76-4edc-b281-6458c646918d","private_network_id":"be233441-59eb-4637-8768-a358f57d5908","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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/3876750e-71f5-49c6-a89d-ea83d6b6f18e/certificate - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateway-networks + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1733 + content_length: 384 uncompressed: false - body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURZekNDQWt1Z0F3SUJBZ0lVRkx5dXhHNG80UXluWk9QTXRLb0pNb1V3MEVNd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1Z6RUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RlRBVEJnTlZCQU1NRERFNU1pNHhOamd1TVM0ME1qQWVGdzB5Ck5UQXlNRFl4TXpReU16bGFGdzB6TlRBeU1EUXhNelF5TXpsYU1GY3hDekFKQmdOVkJBWVRBa1pTTVE0d0RBWUQKVlFRSURBVlFZWEpwY3pFT01Bd0dBMVVFQnd3RlVHRnlhWE14RVRBUEJnTlZCQW9NQ0ZOallXeGxkMkY1TVJVdwpFd1lEVlFRRERBd3hPVEl1TVRZNExqRXVOREl3Z2dFaU1BMEdDU3FHU0liM0RRRUJBUVVBQTRJQkR3QXdnZ0VLCkFvSUJBUUNiTmh6a3lQL3VUVnFhTlN6TTVQKzYzT201Unc1OGpUYXE4VTQxbXQxeUVmN0lLVTlSeWx1K0xhVjkKZU04QWFkUms5eTVNN1JTWDhpWFR5a0pQYmxVdVFyN1ZWWll5MmpDNlpwM3RkZE1QZG9zTUthVzNNd0Raa0duRgp5d3N0RzFTcjZCOHZINldick5LSzlsVVJKdy8wNFZsM0diZm11WUpFOHZPQlpnbFczUFEzUGp4NHZrcml2amRxCklrNXlKMjdKVkxRN09QQ0tqV0svdVo2SVcrVVYxSkVRRC9uVGFkTW14WWpoQ3VsUFcxVE9vSTBRWElJaXA3MngKMVY2b2FLZGg5N1hCRnhBVHM5R3ozU3dtUVVyNUp0aUdGaERzc2tmT0lqcUJhSDNILzVWMmZpOE04bDBnNHN1SwpMOXM3OExmR3pMOTd1VU9CWE5IV2NTbXZaVWRUQWdNQkFBR2pKekFsTUNNR0ExVWRFUVFjTUJxQ0RERTVNaTR4Ck5qZ3VNUzQwTW9jRU13ODdrNGNFd0tnQktqQU5CZ2txaGtpRzl3MEJBUXNGQUFPQ0FRRUFBdTRBZm1GNVJXRTIKQ1lwT1lnTzFXRTR0eXRVYlFBTFN5ajgvTlNqK0tMQW10Q0lERDBBdXRWK2w1a0M4clJ0UVBxWFc0a0kyTjF2cwovVHYyTTAxZjZpS3RUVXVmWmFqeUYxTEtSbXZ5Vk10eWxJWktrWlE2Rm5hVkQyT3NLZlU0MmtROGlCNENvVlU1Cm5TMTBNdEF6M0xFd1pyVHphTTJJUVlqNXlPUW8xakR6c3BzNGdKVGlwQlBTaWhVZ3JFeGVIY2ttVHNTcHF0YzAKdWdOL0cyYzA3QmxIR1A4Y3BIcnJTS21yTGcwYlhlWEhIUDlnaFdlWktsZ093VDcvTm9KOGxUekpXSFpCd0Nubgo0ZDVsamhMM0JOdTJVblA3NFFLSVhpVlowSkFkTXpCZ09rMXJ1UkhxQnR3U3JZYmd3NHdld3NnaWpDZHVrUTZPCktMakFJS0hCcmc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==","content_type":"application/x-pem-file","name":"ssl_certificate"}' + body: '{"created_at":"2025-03-24T08:19:14.551023Z","gateway_id":"7b2081fd-5a76-4edc-b281-6458c646918d","id":"77c99056-c673-4496-a073-44e35ce1c9fc","ipam_ip_id":"20e3e50c-a02c-42e9-bace-11b7992f31cd","masquerade_enabled":true,"private_network_id":"be233441-59eb-4637-8768-a358f57d5908","push_default_route":true,"status":"created","updated_at":"2025-03-24T08:19:14.551023Z","zone":"nl-ams-1"}' headers: Content-Length: - - "1733" + - "384" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:44:56 GMT + - Mon, 24 Mar 2025 08:19:14 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -736,10 +744,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa96552d-30bc-4803-804f-e57c7c902ed6 + - fb6e09ad-ec5b-4e09-b1aa-b90727d5082a status: 200 OK code: 200 - duration: 140.686417ms + duration: 708.976328ms - id: 15 request: proto: HTTP/1.1 @@ -755,8 +763,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/3876750e-71f5-49c6-a89d-ea83d6b6f18e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/7b2081fd-5a76-4edc-b281-6458c646918d method: GET response: proto: HTTP/2.0 @@ -764,20 +772,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1357 + content_length: 1283 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-02-06T13:41:24.397115Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"e49b16ee-034a-4d0c-88e5-10a30975cba8","ip":"192.168.1.42","name":null,"port":5432,"private_network":{"private_network_id":"31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff","provisioning_mode":"static","service_ip":"192.168.1.42/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"3876750e-71f5-49c6-a89d-ea83d6b6f18e","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","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":"bssd","size":10000000000,"type":"bssd"}}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T08:19:08.484649Z","gateway_networks":[{"created_at":"2025-03-24T08:19:14.551023Z","gateway_id":"7b2081fd-5a76-4edc-b281-6458c646918d","id":"77c99056-c673-4496-a073-44e35ce1c9fc","ipam_ip_id":"20e3e50c-a02c-42e9-bace-11b7992f31cd","masquerade_enabled":true,"private_network_id":"be233441-59eb-4637-8768-a358f57d5908","push_default_route":true,"status":"created","updated_at":"2025-03-24T08:19:14.551023Z","zone":"nl-ams-1"}],"id":"7b2081fd-5a76-4edc-b281-6458c646918d","ipv4":{"address":"51.15.86.163","created_at":"2025-03-24T08:19:08.081581Z","gateway_id":"7b2081fd-5a76-4edc-b281-6458c646918d","id":"082691b0-5c14-4c7a-aaaf-1b81cab577c7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"163-86-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T08:19:08.081581Z","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-03-24T08:19:14.732019Z","version":"0.7.3","zone":"nl-ams-1"}' headers: Content-Length: - - "1357" + - "1283" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:44:56 GMT + - Mon, 24 Mar 2025 08:19:14 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -785,10 +793,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8d064e0b-db5d-4e95-82b1-d1625c81a390 + - c09c052d-ff28-4582-b285-1028d4be4b34 status: 200 OK code: 200 - duration: 181.578084ms + duration: 103.311313ms - id: 16 request: proto: HTTP/1.1 @@ -804,8 +812,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/7b2081fd-5a76-4edc-b281-6458c646918d method: GET response: proto: HTTP/2.0 @@ -813,20 +821,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1044 + content_length: 1283 uncompressed: false - body: '{"created_at":"2025-02-06T13:41:20.570812Z","dhcp_enabled":true,"id":"31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff","name":"my_private_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"nl-ams","subnets":[{"created_at":"2025-02-06T13:41:20.570812Z","id":"5adcafd5-04f6-45af-9ec1-fdd92d6ff03a","private_network_id":"31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-02-06T13:41:20.570812Z","vpc_id":"5976fd03-14dd-4892-a481-034469de59c6"},{"created_at":"2025-02-06T13:41:20.570812Z","id":"90f0b514-8d8b-4dff-9c2f-a99f2598ae51","private_network_id":"31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5c:d510:d730:e822::/64","updated_at":"2025-02-06T13:41:20.570812Z","vpc_id":"5976fd03-14dd-4892-a481-034469de59c6"}],"tags":[],"updated_at":"2025-02-06T13:41:20.570812Z","vpc_id":"5976fd03-14dd-4892-a481-034469de59c6"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T08:19:08.484649Z","gateway_networks":[{"created_at":"2025-03-24T08:19:14.551023Z","gateway_id":"7b2081fd-5a76-4edc-b281-6458c646918d","id":"77c99056-c673-4496-a073-44e35ce1c9fc","ipam_ip_id":"20e3e50c-a02c-42e9-bace-11b7992f31cd","masquerade_enabled":true,"private_network_id":"be233441-59eb-4637-8768-a358f57d5908","push_default_route":true,"status":"created","updated_at":"2025-03-24T08:19:14.551023Z","zone":"nl-ams-1"}],"id":"7b2081fd-5a76-4edc-b281-6458c646918d","ipv4":{"address":"51.15.86.163","created_at":"2025-03-24T08:19:08.081581Z","gateway_id":"7b2081fd-5a76-4edc-b281-6458c646918d","id":"082691b0-5c14-4c7a-aaaf-1b81cab577c7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"163-86-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T08:19:08.081581Z","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-03-24T08:19:14.732019Z","version":"0.7.3","zone":"nl-ams-1"}' headers: Content-Length: - - "1044" + - "1283" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:44:57 GMT + - Mon, 24 Mar 2025 08:19:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -834,10 +842,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 18cfa8f8-0417-44fe-8863-78864f226056 + - 38884c47-b293-40fd-9481-9bc05a144d38 status: 200 OK code: 200 - duration: 47.917041ms + duration: 134.812725ms - id: 17 request: proto: HTTP/1.1 @@ -853,8 +861,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/3876750e-71f5-49c6-a89d-ea83d6b6f18e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/7b2081fd-5a76-4edc-b281-6458c646918d method: GET response: proto: HTTP/2.0 @@ -862,20 +870,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1357 + 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-02-06T13:41:24.397115Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"e49b16ee-034a-4d0c-88e5-10a30975cba8","ip":"192.168.1.42","name":null,"port":5432,"private_network":{"private_network_id":"31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff","provisioning_mode":"static","service_ip":"192.168.1.42/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"3876750e-71f5-49c6-a89d-ea83d6b6f18e","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","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":"bssd","size":10000000000,"type":"bssd"}}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T08:19:08.484649Z","gateway_networks":[{"created_at":"2025-03-24T08:19:14.551023Z","gateway_id":"7b2081fd-5a76-4edc-b281-6458c646918d","id":"77c99056-c673-4496-a073-44e35ce1c9fc","ipam_ip_id":"20e3e50c-a02c-42e9-bace-11b7992f31cd","mac_address":"02:00:00:13:4E:9C","masquerade_enabled":true,"private_network_id":"be233441-59eb-4637-8768-a358f57d5908","push_default_route":true,"status":"configuring","updated_at":"2025-03-24T08:19:20.662384Z","zone":"nl-ams-1"}],"id":"7b2081fd-5a76-4edc-b281-6458c646918d","ipv4":{"address":"51.15.86.163","created_at":"2025-03-24T08:19:08.081581Z","gateway_id":"7b2081fd-5a76-4edc-b281-6458c646918d","id":"082691b0-5c14-4c7a-aaaf-1b81cab577c7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"163-86-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T08:19:08.081581Z","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-03-24T08:19:14.732019Z","version":"0.7.3","zone":"nl-ams-1"}' headers: Content-Length: - - "1357" + - "1321" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:44:57 GMT + - Mon, 24 Mar 2025 08:19:25 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -883,10 +891,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - daa4be7e-df45-410b-96c6-74b2c1d0da41 + - 8ab51b44-2743-4638-bbdb-119d2ad61105 status: 200 OK code: 200 - duration: 155.01675ms + duration: 118.347068ms - id: 18 request: proto: HTTP/1.1 @@ -902,8 +910,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/3876750e-71f5-49c6-a89d-ea83d6b6f18e/certificate + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/7b2081fd-5a76-4edc-b281-6458c646918d method: GET response: proto: HTTP/2.0 @@ -911,20 +919,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1733 + content_length: 1311 uncompressed: false - body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURZekNDQWt1Z0F3SUJBZ0lVRkx5dXhHNG80UXluWk9QTXRLb0pNb1V3MEVNd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1Z6RUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RlRBVEJnTlZCQU1NRERFNU1pNHhOamd1TVM0ME1qQWVGdzB5Ck5UQXlNRFl4TXpReU16bGFGdzB6TlRBeU1EUXhNelF5TXpsYU1GY3hDekFKQmdOVkJBWVRBa1pTTVE0d0RBWUQKVlFRSURBVlFZWEpwY3pFT01Bd0dBMVVFQnd3RlVHRnlhWE14RVRBUEJnTlZCQW9NQ0ZOallXeGxkMkY1TVJVdwpFd1lEVlFRRERBd3hPVEl1TVRZNExqRXVOREl3Z2dFaU1BMEdDU3FHU0liM0RRRUJBUVVBQTRJQkR3QXdnZ0VLCkFvSUJBUUNiTmh6a3lQL3VUVnFhTlN6TTVQKzYzT201Unc1OGpUYXE4VTQxbXQxeUVmN0lLVTlSeWx1K0xhVjkKZU04QWFkUms5eTVNN1JTWDhpWFR5a0pQYmxVdVFyN1ZWWll5MmpDNlpwM3RkZE1QZG9zTUthVzNNd0Raa0duRgp5d3N0RzFTcjZCOHZINldick5LSzlsVVJKdy8wNFZsM0diZm11WUpFOHZPQlpnbFczUFEzUGp4NHZrcml2amRxCklrNXlKMjdKVkxRN09QQ0tqV0svdVo2SVcrVVYxSkVRRC9uVGFkTW14WWpoQ3VsUFcxVE9vSTBRWElJaXA3MngKMVY2b2FLZGg5N1hCRnhBVHM5R3ozU3dtUVVyNUp0aUdGaERzc2tmT0lqcUJhSDNILzVWMmZpOE04bDBnNHN1SwpMOXM3OExmR3pMOTd1VU9CWE5IV2NTbXZaVWRUQWdNQkFBR2pKekFsTUNNR0ExVWRFUVFjTUJxQ0RERTVNaTR4Ck5qZ3VNUzQwTW9jRU13ODdrNGNFd0tnQktqQU5CZ2txaGtpRzl3MEJBUXNGQUFPQ0FRRUFBdTRBZm1GNVJXRTIKQ1lwT1lnTzFXRTR0eXRVYlFBTFN5ajgvTlNqK0tMQW10Q0lERDBBdXRWK2w1a0M4clJ0UVBxWFc0a0kyTjF2cwovVHYyTTAxZjZpS3RUVXVmWmFqeUYxTEtSbXZ5Vk10eWxJWktrWlE2Rm5hVkQyT3NLZlU0MmtROGlCNENvVlU1Cm5TMTBNdEF6M0xFd1pyVHphTTJJUVlqNXlPUW8xakR6c3BzNGdKVGlwQlBTaWhVZ3JFeGVIY2ttVHNTcHF0YzAKdWdOL0cyYzA3QmxIR1A4Y3BIcnJTS21yTGcwYlhlWEhIUDlnaFdlWktsZ093VDcvTm9KOGxUekpXSFpCd0Nubgo0ZDVsamhMM0JOdTJVblA3NFFLSVhpVlowSkFkTXpCZ09rMXJ1UkhxQnR3U3JZYmd3NHdld3NnaWpDZHVrUTZPCktMakFJS0hCcmc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==","content_type":"application/x-pem-file","name":"ssl_certificate"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T08:19:08.484649Z","gateway_networks":[{"created_at":"2025-03-24T08:19:14.551023Z","gateway_id":"7b2081fd-5a76-4edc-b281-6458c646918d","id":"77c99056-c673-4496-a073-44e35ce1c9fc","ipam_ip_id":"20e3e50c-a02c-42e9-bace-11b7992f31cd","mac_address":"02:00:00:13:4E:9C","masquerade_enabled":true,"private_network_id":"be233441-59eb-4637-8768-a358f57d5908","push_default_route":true,"status":"ready","updated_at":"2025-03-24T08:19:26.197363Z","zone":"nl-ams-1"}],"id":"7b2081fd-5a76-4edc-b281-6458c646918d","ipv4":{"address":"51.15.86.163","created_at":"2025-03-24T08:19:08.081581Z","gateway_id":"7b2081fd-5a76-4edc-b281-6458c646918d","id":"082691b0-5c14-4c7a-aaaf-1b81cab577c7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"163-86-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T08:19:08.081581Z","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-03-24T08:19:26.424397Z","version":"0.7.3","zone":"nl-ams-1"}' headers: Content-Length: - - "1733" + - "1311" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:44:57 GMT + - Mon, 24 Mar 2025 08:19:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -932,10 +940,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 13fa0266-f13d-472a-b912-9a368a8c1cda + - 722a4029-ffd4-4bc1-81a7-624e3e9d33c1 status: 200 OK code: 200 - duration: 131.368625ms + duration: 105.842305ms - id: 19 request: proto: HTTP/1.1 @@ -951,8 +959,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateway-networks/77c99056-c673-4496-a073-44e35ce1c9fc method: GET response: proto: HTTP/2.0 @@ -960,20 +968,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1044 + content_length: 416 uncompressed: false - body: '{"created_at":"2025-02-06T13:41:20.570812Z","dhcp_enabled":true,"id":"31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff","name":"my_private_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"nl-ams","subnets":[{"created_at":"2025-02-06T13:41:20.570812Z","id":"5adcafd5-04f6-45af-9ec1-fdd92d6ff03a","private_network_id":"31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-02-06T13:41:20.570812Z","vpc_id":"5976fd03-14dd-4892-a481-034469de59c6"},{"created_at":"2025-02-06T13:41:20.570812Z","id":"90f0b514-8d8b-4dff-9c2f-a99f2598ae51","private_network_id":"31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5c:d510:d730:e822::/64","updated_at":"2025-02-06T13:41:20.570812Z","vpc_id":"5976fd03-14dd-4892-a481-034469de59c6"}],"tags":[],"updated_at":"2025-02-06T13:41:20.570812Z","vpc_id":"5976fd03-14dd-4892-a481-034469de59c6"}' + body: '{"created_at":"2025-03-24T08:19:14.551023Z","gateway_id":"7b2081fd-5a76-4edc-b281-6458c646918d","id":"77c99056-c673-4496-a073-44e35ce1c9fc","ipam_ip_id":"20e3e50c-a02c-42e9-bace-11b7992f31cd","mac_address":"02:00:00:13:4E:9C","masquerade_enabled":true,"private_network_id":"be233441-59eb-4637-8768-a358f57d5908","push_default_route":true,"status":"ready","updated_at":"2025-03-24T08:19:26.197363Z","zone":"nl-ams-1"}' headers: Content-Length: - - "1044" + - "416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:44:58 GMT + - Mon, 24 Mar 2025 08:19:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -981,10 +989,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d6c1e06-abaa-4ea8-9a35-244d354590a3 + - f016ae1d-3321-49d2-a7c2-2f236ae53db5 status: 200 OK code: 200 - duration: 106.831167ms + duration: 162.422701ms - id: 20 request: proto: HTTP/1.1 @@ -1000,8 +1008,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/3876750e-71f5-49c6-a89d-ea83d6b6f18e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateway-networks/77c99056-c673-4496-a073-44e35ce1c9fc method: GET response: proto: HTTP/2.0 @@ -1009,20 +1017,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1357 + content_length: 416 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-02-06T13:41:24.397115Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"e49b16ee-034a-4d0c-88e5-10a30975cba8","ip":"192.168.1.42","name":null,"port":5432,"private_network":{"private_network_id":"31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff","provisioning_mode":"static","service_ip":"192.168.1.42/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"3876750e-71f5-49c6-a89d-ea83d6b6f18e","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","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":"bssd","size":10000000000,"type":"bssd"}}' + body: '{"created_at":"2025-03-24T08:19:14.551023Z","gateway_id":"7b2081fd-5a76-4edc-b281-6458c646918d","id":"77c99056-c673-4496-a073-44e35ce1c9fc","ipam_ip_id":"20e3e50c-a02c-42e9-bace-11b7992f31cd","mac_address":"02:00:00:13:4E:9C","masquerade_enabled":true,"private_network_id":"be233441-59eb-4637-8768-a358f57d5908","push_default_route":true,"status":"ready","updated_at":"2025-03-24T08:19:26.197363Z","zone":"nl-ams-1"}' headers: Content-Length: - - "1357" + - "416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:44:58 GMT + - Mon, 24 Mar 2025 08:19:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1030,10 +1038,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 589b7c7d-9a9a-449e-bb81-ce4fe9381ced + - e5f5a1fb-6994-4c68-bd6f-fc1308aae0dc status: 200 OK code: 200 - duration: 180.081292ms + duration: 136.532019ms - id: 21 request: proto: HTTP/1.1 @@ -1049,8 +1057,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/3876750e-71f5-49c6-a89d-ea83d6b6f18e/certificate + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/nl-ams/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=77c99056-c673-4496-a073-44e35ce1c9fc&resource_type=vpc_gateway_network method: GET response: proto: HTTP/2.0 @@ -1058,20 +1066,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1733 + content_length: 504 uncompressed: false - body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURZekNDQWt1Z0F3SUJBZ0lVRkx5dXhHNG80UXluWk9QTXRLb0pNb1V3MEVNd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1Z6RUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RlRBVEJnTlZCQU1NRERFNU1pNHhOamd1TVM0ME1qQWVGdzB5Ck5UQXlNRFl4TXpReU16bGFGdzB6TlRBeU1EUXhNelF5TXpsYU1GY3hDekFKQmdOVkJBWVRBa1pTTVE0d0RBWUQKVlFRSURBVlFZWEpwY3pFT01Bd0dBMVVFQnd3RlVHRnlhWE14RVRBUEJnTlZCQW9NQ0ZOallXeGxkMkY1TVJVdwpFd1lEVlFRRERBd3hPVEl1TVRZNExqRXVOREl3Z2dFaU1BMEdDU3FHU0liM0RRRUJBUVVBQTRJQkR3QXdnZ0VLCkFvSUJBUUNiTmh6a3lQL3VUVnFhTlN6TTVQKzYzT201Unc1OGpUYXE4VTQxbXQxeUVmN0lLVTlSeWx1K0xhVjkKZU04QWFkUms5eTVNN1JTWDhpWFR5a0pQYmxVdVFyN1ZWWll5MmpDNlpwM3RkZE1QZG9zTUthVzNNd0Raa0duRgp5d3N0RzFTcjZCOHZINldick5LSzlsVVJKdy8wNFZsM0diZm11WUpFOHZPQlpnbFczUFEzUGp4NHZrcml2amRxCklrNXlKMjdKVkxRN09QQ0tqV0svdVo2SVcrVVYxSkVRRC9uVGFkTW14WWpoQ3VsUFcxVE9vSTBRWElJaXA3MngKMVY2b2FLZGg5N1hCRnhBVHM5R3ozU3dtUVVyNUp0aUdGaERzc2tmT0lqcUJhSDNILzVWMmZpOE04bDBnNHN1SwpMOXM3OExmR3pMOTd1VU9CWE5IV2NTbXZaVWRUQWdNQkFBR2pKekFsTUNNR0ExVWRFUVFjTUJxQ0RERTVNaTR4Ck5qZ3VNUzQwTW9jRU13ODdrNGNFd0tnQktqQU5CZ2txaGtpRzl3MEJBUXNGQUFPQ0FRRUFBdTRBZm1GNVJXRTIKQ1lwT1lnTzFXRTR0eXRVYlFBTFN5ajgvTlNqK0tMQW10Q0lERDBBdXRWK2w1a0M4clJ0UVBxWFc0a0kyTjF2cwovVHYyTTAxZjZpS3RUVXVmWmFqeUYxTEtSbXZ5Vk10eWxJWktrWlE2Rm5hVkQyT3NLZlU0MmtROGlCNENvVlU1Cm5TMTBNdEF6M0xFd1pyVHphTTJJUVlqNXlPUW8xakR6c3BzNGdKVGlwQlBTaWhVZ3JFeGVIY2ttVHNTcHF0YzAKdWdOL0cyYzA3QmxIR1A4Y3BIcnJTS21yTGcwYlhlWEhIUDlnaFdlWktsZ093VDcvTm9KOGxUekpXSFpCd0Nubgo0ZDVsamhMM0JOdTJVblA3NFFLSVhpVlowSkFkTXpCZ09rMXJ1UkhxQnR3U3JZYmd3NHdld3NnaWpDZHVrUTZPCktMakFJS0hCcmc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==","content_type":"application/x-pem-file","name":"ssl_certificate"}' + body: '{"ips":[{"address":"192.168.1.2/24","created_at":"2025-03-24T08:19:14.469410Z","id":"20e3e50c-a02c-42e9-bace-11b7992f31cd","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"nl-ams","resource":{"id":"77c99056-c673-4496-a073-44e35ce1c9fc","mac_address":"02:00:00:13:4E:9C","name":"foobar","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"cfa5097a-e710-4b44-b848-1190c9c17444"},"tags":[],"updated_at":"2025-03-24T08:19:15.165736Z","zone":null}],"total_count":1}' headers: Content-Length: - - "1733" + - "504" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:44:59 GMT + - Mon, 24 Mar 2025 08:19:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1079,50 +1087,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b07dd638-46e6-4449-8a2f-8017080d2d6b + - abafead1-d4ca-497d-8b23-f606ce269e60 status: 200 OK code: 200 - duration: 255.776375ms + duration: 133.041386ms - id: 22 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 54 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"my_private_network_to_be_replaced","tags":[]}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff - method: PATCH + - 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/rdb/v1/regions/nl-ams/instances/91136575-4b1d-4c79-b240-08afeae48b00 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1059 + content_length: 1058 uncompressed: false - body: '{"created_at":"2025-02-06T13:41:20.570812Z","dhcp_enabled":true,"id":"31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff","name":"my_private_network_to_be_replaced","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"nl-ams","subnets":[{"created_at":"2025-02-06T13:41:20.570812Z","id":"5adcafd5-04f6-45af-9ec1-fdd92d6ff03a","private_network_id":"31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-02-06T13:41:20.570812Z","vpc_id":"5976fd03-14dd-4892-a481-034469de59c6"},{"created_at":"2025-02-06T13:41:20.570812Z","id":"90f0b514-8d8b-4dff-9c2f-a99f2598ae51","private_network_id":"31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5c:d510:d730:e822::/64","updated_at":"2025-02-06T13:41:20.570812Z","vpc_id":"5976fd03-14dd-4892-a481-034469de59c6"}],"tags":[],"updated_at":"2025-02-06T13:45:00.341206Z","vpc_id":"5976fd03-14dd-4892-a481-034469de59c6"}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-03-24T08:19:09.337633Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"8543e57e-833b-455c-a2b5-3cc56c7313f0","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"be233441-59eb-4637-8768-a358f57d5908","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-16","id":"91136575-4b1d-4c79-b240-08afeae48b00","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":"bssd","size":10000000000,"type":"bssd"}}' headers: Content-Length: - - "1059" + - "1058" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:45:00 GMT + - Mon, 24 Mar 2025 08:19:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1130,10 +1136,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1966b700-c653-4b68-b04c-f8938b9d423a + - 4eaf2dee-27d2-4a89-b9b6-fb58312a7ab3 status: 200 OK code: 200 - duration: 97.675291ms + duration: 193.88703ms - id: 23 request: proto: HTTP/1.1 @@ -1149,8 +1155,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff + - 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/rdb/v1/regions/nl-ams/instances/91136575-4b1d-4c79-b240-08afeae48b00 method: GET response: proto: HTTP/2.0 @@ -1158,20 +1164,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1059 + content_length: 1058 uncompressed: false - body: '{"created_at":"2025-02-06T13:41:20.570812Z","dhcp_enabled":true,"id":"31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff","name":"my_private_network_to_be_replaced","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"nl-ams","subnets":[{"created_at":"2025-02-06T13:41:20.570812Z","id":"5adcafd5-04f6-45af-9ec1-fdd92d6ff03a","private_network_id":"31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-02-06T13:41:20.570812Z","vpc_id":"5976fd03-14dd-4892-a481-034469de59c6"},{"created_at":"2025-02-06T13:41:20.570812Z","id":"90f0b514-8d8b-4dff-9c2f-a99f2598ae51","private_network_id":"31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5c:d510:d730:e822::/64","updated_at":"2025-02-06T13:41:20.570812Z","vpc_id":"5976fd03-14dd-4892-a481-034469de59c6"}],"tags":[],"updated_at":"2025-02-06T13:45:00.341206Z","vpc_id":"5976fd03-14dd-4892-a481-034469de59c6"}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-03-24T08:19:09.337633Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"8543e57e-833b-455c-a2b5-3cc56c7313f0","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"be233441-59eb-4637-8768-a358f57d5908","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-16","id":"91136575-4b1d-4c79-b240-08afeae48b00","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":"bssd","size":10000000000,"type":"bssd"}}' headers: Content-Length: - - "1059" + - "1058" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:45:00 GMT + - Mon, 24 Mar 2025 08:20:10 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1179,50 +1185,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 14fab603-63d0-47a5-bffd-d86c8dafc816 + - 950edc9c-3f0e-4e99-a22e-1d7e6177c5cf status: 200 OK code: 200 - duration: 65.201083ms + duration: 220.837678ms - id: 24 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":"my_private_network","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/91136575-4b1d-4c79-b240-08afeae48b00 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1044 + content_length: 1058 uncompressed: false - body: '{"created_at":"2025-02-06T13:45:00.340948Z","dhcp_enabled":true,"id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","name":"my_private_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"nl-ams","subnets":[{"created_at":"2025-02-06T13:45:00.340948Z","id":"1700ae48-92a5-4410-926e-b2eedd472c34","private_network_id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.0.0/22","updated_at":"2025-02-06T13:45:00.340948Z","vpc_id":"5976fd03-14dd-4892-a481-034469de59c6"},{"created_at":"2025-02-06T13:45:00.340948Z","id":"d2fb97b4-b81c-469c-b125-31c5bf67d870","private_network_id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5c:d510:d730:9d04::/64","updated_at":"2025-02-06T13:45:00.340948Z","vpc_id":"5976fd03-14dd-4892-a481-034469de59c6"}],"tags":[],"updated_at":"2025-02-06T13:45:00.340948Z","vpc_id":"5976fd03-14dd-4892-a481-034469de59c6"}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-03-24T08:19:09.337633Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"8543e57e-833b-455c-a2b5-3cc56c7313f0","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"be233441-59eb-4637-8768-a358f57d5908","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-16","id":"91136575-4b1d-4c79-b240-08afeae48b00","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":"bssd","size":10000000000,"type":"bssd"}}' headers: Content-Length: - - "1044" + - "1058" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:45:00 GMT + - Mon, 24 Mar 2025 08:20:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1230,10 +1234,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e1507b13-ff45-4c5f-a678-3cc68f79a053 + - da4b1cdd-4e66-4853-aa5e-eec5b443c4d7 status: 200 OK code: 200 - duration: 576.986708ms + duration: 1.329628498s - 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.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/d9e77bff-80da-4a0f-af19-50f6a6351ee3 + - 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/rdb/v1/regions/nl-ams/instances/91136575-4b1d-4c79-b240-08afeae48b00 method: GET response: proto: HTTP/2.0 @@ -1258,20 +1262,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1044 + content_length: 1058 uncompressed: false - body: '{"created_at":"2025-02-06T13:45:00.340948Z","dhcp_enabled":true,"id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","name":"my_private_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"nl-ams","subnets":[{"created_at":"2025-02-06T13:45:00.340948Z","id":"1700ae48-92a5-4410-926e-b2eedd472c34","private_network_id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.0.0/22","updated_at":"2025-02-06T13:45:00.340948Z","vpc_id":"5976fd03-14dd-4892-a481-034469de59c6"},{"created_at":"2025-02-06T13:45:00.340948Z","id":"d2fb97b4-b81c-469c-b125-31c5bf67d870","private_network_id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5c:d510:d730:9d04::/64","updated_at":"2025-02-06T13:45:00.340948Z","vpc_id":"5976fd03-14dd-4892-a481-034469de59c6"}],"tags":[],"updated_at":"2025-02-06T13:45:00.340948Z","vpc_id":"5976fd03-14dd-4892-a481-034469de59c6"}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-03-24T08:19:09.337633Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"8543e57e-833b-455c-a2b5-3cc56c7313f0","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"be233441-59eb-4637-8768-a358f57d5908","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-16","id":"91136575-4b1d-4c79-b240-08afeae48b00","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":"bssd","size":10000000000,"type":"bssd"}}' headers: Content-Length: - - "1044" + - "1058" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:45:00 GMT + - Mon, 24 Mar 2025 08:21:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1279,10 +1283,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c1e73554-a178-4d3f-88bd-ad013dae14af + - 3763f505-5f5c-40af-b386-e84f89906813 status: 200 OK code: 200 - duration: 42.83775ms + duration: 363.547733ms - 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.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/3876750e-71f5-49c6-a89d-ea83d6b6f18e + - 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/rdb/v1/regions/nl-ams/instances/91136575-4b1d-4c79-b240-08afeae48b00 method: GET response: proto: HTTP/2.0 @@ -1307,20 +1311,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1357 + 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-02-06T13:41:24.397115Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"e49b16ee-034a-4d0c-88e5-10a30975cba8","ip":"192.168.1.42","name":null,"port":5432,"private_network":{"private_network_id":"31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff","provisioning_mode":"static","service_ip":"192.168.1.42/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"3876750e-71f5-49c6-a89d-ea83d6b6f18e","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","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":"bssd","size":10000000000,"type":"bssd"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-03-24T08:19:09.337633Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"8543e57e-833b-455c-a2b5-3cc56c7313f0","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"be233441-59eb-4637-8768-a358f57d5908","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-16","id":"91136575-4b1d-4c79-b240-08afeae48b00","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":"bssd","size":10000000000,"type":"bssd"}}' headers: Content-Length: - - "1357" + - "1315" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:45:01 GMT + - Mon, 24 Mar 2025 08:21:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1328,10 +1332,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e4e93aa1-ed49-4c57-af5f-c9e3fb3541e0 + - 004090ab-f847-4d50-8eed-e675bb0a3807 status: 200 OK code: 200 - duration: 300.643459ms + duration: 231.818149ms - 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.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/3876750e-71f5-49c6-a89d-ea83d6b6f18e + - 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/rdb/v1/regions/nl-ams/instances/91136575-4b1d-4c79-b240-08afeae48b00/certificate method: GET response: proto: HTTP/2.0 @@ -1356,20 +1360,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1357 + content_length: 1735 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-02-06T13:41:24.397115Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"e49b16ee-034a-4d0c-88e5-10a30975cba8","ip":"192.168.1.42","name":null,"port":5432,"private_network":{"private_network_id":"31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff","provisioning_mode":"static","service_ip":"192.168.1.42/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"3876750e-71f5-49c6-a89d-ea83d6b6f18e","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","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":"bssd","size":10000000000,"type":"bssd"}}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURaakNDQWs2Z0F3SUJBZ0lVRjVEblNTUDEyS0V6cWV3dzRXb1FyUkk2amQwd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1dERUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RmpBVUJnTlZCQU1NRFRFNU1pNHhOamd1TVM0eU5UUXdIaGNOCk1qVXdNekkwTURneU1EQTVXaGNOTXpVd016SXlNRGd5TURBNVdqQllNUXN3Q1FZRFZRUUdFd0pHVWpFT01Bd0cKQTFVRUNBd0ZVR0Z5YVhNeERqQU1CZ05WQkFjTUJWQmhjbWx6TVJFd0R3WURWUVFLREFoVFkyRnNaWGRoZVRFVwpNQlFHQTFVRUF3d05NVGt5TGpFMk9DNHhMakkxTkRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDCkFRb0NnZ0VCQU9Tc0ZNcXlvTXJRNHUycGtrZkkwMkZOVDFrVS9rN2xOWXVEOG5yMDdybFd4cUJUMlUwM2Y0bnkKSTVyYStqTnhPdW0wdGsxanpzZWw4WXlVb2JjQUxzSlNrUzhTT2Q5MjRsUDQzUktUV0xhUWJHY0hDcFgrS0NrUgpsb0JxQllLK1YzUUk3UXZacFMxVmphZEo3Z0p5K3UyaytjMDZXOVhjNTNDRmFGWkE0SnBQakQ0Y0Q4eFlnNmw3Cm10N1dRSW5EU0JSOEJzOER4Q3BCUyszcWZqSnFoV0ZaWFNYUmhHNytqRHFZVkM3WTU3Y1JDcGdQblFiRVpUVjQKL0hqVDFJQU1FbmxJTXNmcjdBZFo5UnpkNmdyYnZCUUNlNzNhcjM3cDl3WUY5U1hncmJEdGFqOWl5d3VDYlN0TApwU25uTFMvUkhSUHpJVExLbkhiNnlXNTdqTEdCRTlrQ0F3RUFBYU1vTUNZd0pBWURWUjBSQkIwd0c0SU5NVGt5CkxqRTJPQzR4TGpJMU5JY0VNdzltYTRjRXdLZ0IvakFOQmdrcWhraUc5dzBCQVFzRkFBT0NBUUVBb3N0bnQ4cloKcS9oWWNNWDBBU3AremJqTjdISXF1SlVVVytNYlVoMlBpSFVvTHc2MEw5SjVWRHVEeDVXQmg3U2puWjBTT3d4MApmalhiQVdVQmZEM3lMUW1lYkt4Y3hTYVU5SFUrdyt1M25salhUbytjbUJXT0pFcmlHNXJXcHBTMWRESHM3VDFMClBTNE9EeWdMNXJDNXdDYWcxdXVhbUZTQkZCLytoVGU5Qzd0N2NGMEFuNmhYQWJCNllsVEk4YWo2TDlFWTRtMm0KV2tmRDd1cGc5TTN2dEZhVXFBVFFnYjZWL0FlRFpEem5wbCtqV0RMR3VjTUs3bElPSG5jT2I2TDRhamRDTUhHMApTaERwMnA3Q1o5eTdEVGxMTitQMlJJMERCd2xucmRUMkxKU2l1Ulh5eWxKUmd3TE1icGxqTUJ3cDFpWWdPU1BRCjVRN1luYUhUQkJtejd3PT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - - "1357" + - "1735" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:45:01 GMT + - Mon, 24 Mar 2025 08:21:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1377,50 +1381,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 754ce411-f479-4b77-99e7-d18f9573ccd1 + - 3c4ea543-a25a-4df8-a619-e4f335b5da09 status: 200 OK code: 200 - duration: 141.315667ms + duration: 199.678527ms - id: 28 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/3876750e-71f5-49c6-a89d-ea83d6b6f18e - method: PATCH + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/7b2081fd-5a76-4edc-b281-6458c646918d + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1357 + content_length: 1311 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-02-06T13:41:24.397115Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"e49b16ee-034a-4d0c-88e5-10a30975cba8","ip":"192.168.1.42","name":null,"port":5432,"private_network":{"private_network_id":"31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff","provisioning_mode":"static","service_ip":"192.168.1.42/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"3876750e-71f5-49c6-a89d-ea83d6b6f18e","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","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":"bssd","size":10000000000,"type":"bssd"}}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T08:19:08.484649Z","gateway_networks":[{"created_at":"2025-03-24T08:19:14.551023Z","gateway_id":"7b2081fd-5a76-4edc-b281-6458c646918d","id":"77c99056-c673-4496-a073-44e35ce1c9fc","ipam_ip_id":"20e3e50c-a02c-42e9-bace-11b7992f31cd","mac_address":"02:00:00:13:4E:9C","masquerade_enabled":true,"private_network_id":"be233441-59eb-4637-8768-a358f57d5908","push_default_route":true,"status":"ready","updated_at":"2025-03-24T08:19:26.197363Z","zone":"nl-ams-1"}],"id":"7b2081fd-5a76-4edc-b281-6458c646918d","ipv4":{"address":"51.15.86.163","created_at":"2025-03-24T08:19:08.081581Z","gateway_id":"7b2081fd-5a76-4edc-b281-6458c646918d","id":"082691b0-5c14-4c7a-aaaf-1b81cab577c7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"163-86-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T08:19:08.081581Z","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-03-24T08:19:26.424397Z","version":"0.7.3","zone":"nl-ams-1"}' headers: Content-Length: - - "1357" + - "1311" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:45:01 GMT + - Mon, 24 Mar 2025 08:21:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1428,10 +1430,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b7b57d8-85f1-4c35-82ad-20facbfb96e9 + - 27f83555-6e29-4427-a874-9ff709003918 status: 200 OK code: 200 - duration: 179.04475ms + duration: 124.043526ms - id: 29 request: proto: HTTP/1.1 @@ -1447,8 +1449,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/3876750e-71f5-49c6-a89d-ea83d6b6f18e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/7b2081fd-5a76-4edc-b281-6458c646918d method: GET response: proto: HTTP/2.0 @@ -1456,20 +1458,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1357 + content_length: 1311 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-02-06T13:41:24.397115Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"e49b16ee-034a-4d0c-88e5-10a30975cba8","ip":"192.168.1.42","name":null,"port":5432,"private_network":{"private_network_id":"31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff","provisioning_mode":"static","service_ip":"192.168.1.42/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"3876750e-71f5-49c6-a89d-ea83d6b6f18e","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","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":"bssd","size":10000000000,"type":"bssd"}}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T08:19:08.484649Z","gateway_networks":[{"created_at":"2025-03-24T08:19:14.551023Z","gateway_id":"7b2081fd-5a76-4edc-b281-6458c646918d","id":"77c99056-c673-4496-a073-44e35ce1c9fc","ipam_ip_id":"20e3e50c-a02c-42e9-bace-11b7992f31cd","mac_address":"02:00:00:13:4E:9C","masquerade_enabled":true,"private_network_id":"be233441-59eb-4637-8768-a358f57d5908","push_default_route":true,"status":"ready","updated_at":"2025-03-24T08:19:26.197363Z","zone":"nl-ams-1"}],"id":"7b2081fd-5a76-4edc-b281-6458c646918d","ipv4":{"address":"51.15.86.163","created_at":"2025-03-24T08:19:08.081581Z","gateway_id":"7b2081fd-5a76-4edc-b281-6458c646918d","id":"082691b0-5c14-4c7a-aaaf-1b81cab577c7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"163-86-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T08:19:08.081581Z","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-03-24T08:19:26.424397Z","version":"0.7.3","zone":"nl-ams-1"}' headers: Content-Length: - - "1357" + - "1311" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:45:01 GMT + - Mon, 24 Mar 2025 08:21:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1477,46 +1479,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 344665e7-4d7c-4b1c-966b-ec4b631e7e9d + - 2e19275c-f641-48fb-9175-3764d89ec00b status: 200 OK code: 200 - duration: 171.148708ms + duration: 112.074772ms - id: 30 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 135 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"gateway_id":"7b2081fd-5a76-4edc-b281-6458c646918d","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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/endpoints/e49b16ee-034a-4d0c-88e5-10a30975cba8 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/pat-rules + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 283 uncompressed: false - body: "" + body: '{"created_at":"2025-03-24T08:21:43.029293Z","gateway_id":"7b2081fd-5a76-4edc-b281-6458c646918d","id":"d759f012-85dc-4a38-91f4-df3bf7a8c220","private_ip":"192.168.1.2","private_port":5432,"protocol":"both","public_port":42,"updated_at":"2025-03-24T08:21:43.029293Z","zone":"nl-ams-1"}' headers: + Content-Length: + - "283" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:45:02 GMT + - Mon, 24 Mar 2025 08:21:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1524,10 +1530,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d0a96811-2d73-42af-95c5-12d62e14f522 - status: 204 No Content - code: 204 - duration: 368.032084ms + - 2b4cc963-0007-4a0c-bdb1-45a4461a3710 + status: 200 OK + code: 200 + duration: 212.068179ms - id: 31 request: proto: HTTP/1.1 @@ -1543,8 +1549,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/3876750e-71f5-49c6-a89d-ea83d6b6f18e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/7b2081fd-5a76-4edc-b281-6458c646918d method: GET response: proto: HTTP/2.0 @@ -1552,20 +1558,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1363 + content_length: 1311 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-02-06T13:41:24.397115Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"e49b16ee-034a-4d0c-88e5-10a30975cba8","ip":"192.168.1.42","name":null,"port":5432,"private_network":{"private_network_id":"31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff","provisioning_mode":"static","service_ip":"192.168.1.42/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"3876750e-71f5-49c6-a89d-ea83d6b6f18e","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","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":"bssd","size":10000000000,"type":"bssd"}}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T08:19:08.484649Z","gateway_networks":[{"created_at":"2025-03-24T08:19:14.551023Z","gateway_id":"7b2081fd-5a76-4edc-b281-6458c646918d","id":"77c99056-c673-4496-a073-44e35ce1c9fc","ipam_ip_id":"20e3e50c-a02c-42e9-bace-11b7992f31cd","mac_address":"02:00:00:13:4E:9C","masquerade_enabled":true,"private_network_id":"be233441-59eb-4637-8768-a358f57d5908","push_default_route":true,"status":"ready","updated_at":"2025-03-24T08:19:26.197363Z","zone":"nl-ams-1"}],"id":"7b2081fd-5a76-4edc-b281-6458c646918d","ipv4":{"address":"51.15.86.163","created_at":"2025-03-24T08:19:08.081581Z","gateway_id":"7b2081fd-5a76-4edc-b281-6458c646918d","id":"082691b0-5c14-4c7a-aaaf-1b81cab577c7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"163-86-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T08:19:08.081581Z","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-03-24T08:19:26.424397Z","version":"0.7.3","zone":"nl-ams-1"}' headers: Content-Length: - - "1363" + - "1311" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:45:02 GMT + - Mon, 24 Mar 2025 08:21:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1573,10 +1579,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 318ab292-42c9-4f68-ac59-c552800e3a2e + - b7a7f1d6-cbb7-4510-8419-2e01da62fd57 status: 200 OK code: 200 - duration: 143.531083ms + duration: 122.402504ms - id: 32 request: proto: HTTP/1.1 @@ -1592,8 +1598,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/3876750e-71f5-49c6-a89d-ea83d6b6f18e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/pat-rules/d759f012-85dc-4a38-91f4-df3bf7a8c220 method: GET response: proto: HTTP/2.0 @@ -1601,20 +1607,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1103 + content_length: 283 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-02-06T13:41:24.397115Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[],"engine":"PostgreSQL-15","id":"3876750e-71f5-49c6-a89d-ea83d6b6f18e","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","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":"bssd","size":10000000000,"type":"bssd"}}' + body: '{"created_at":"2025-03-24T08:21:43.029293Z","gateway_id":"7b2081fd-5a76-4edc-b281-6458c646918d","id":"d759f012-85dc-4a38-91f4-df3bf7a8c220","private_ip":"192.168.1.2","private_port":5432,"protocol":"both","public_port":42,"updated_at":"2025-03-24T08:21:43.029293Z","zone":"nl-ams-1"}' headers: Content-Length: - - "1103" + - "283" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:45:32 GMT + - Mon, 24 Mar 2025 08:21:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1622,50 +1628,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7d3df783-5ec3-4001-a5e3-36a6e5b9710e + - 38e851c4-b171-4fdb-9a36-1b961a7169b4 status: 200 OK code: 200 - duration: 166.35925ms + duration: 108.860637ms - id: 33 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: '{"endpoint_spec":{"private_network":{"private_network_id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","service_ip":"192.168.1.254/24"}}}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/3876750e-71f5-49c6-a89d-ea83d6b6f18e/endpoints - method: POST + - 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/rdb/v1/regions/nl-ams/instances/91136575-4b1d-4c79-b240-08afeae48b00 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 256 + content_length: 1315 uncompressed: false - body: '{"id":"a92094cc-9294-4bbf-947e-1d100db454c5","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-03-24T08:19:09.337633Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"8543e57e-833b-455c-a2b5-3cc56c7313f0","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"be233441-59eb-4637-8768-a358f57d5908","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-16","id":"91136575-4b1d-4c79-b240-08afeae48b00","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":"bssd","size":10000000000,"type":"bssd"}}' headers: Content-Length: - - "256" + - "1315" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:45:32 GMT + - Mon, 24 Mar 2025 08:21:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1673,10 +1677,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dc1b77ce-0771-4310-b3df-9527c0b78859 + - 18c5a481-930c-42a2-8c43-6923e20cf3de status: 200 OK code: 200 - duration: 513.624875ms + duration: 232.097197ms - id: 34 request: proto: HTTP/1.1 @@ -1692,8 +1696,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/3876750e-71f5-49c6-a89d-ea83d6b6f18e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/nl-ams/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=77c99056-c673-4496-a073-44e35ce1c9fc&resource_type=vpc_gateway_network method: GET response: proto: HTTP/2.0 @@ -1701,20 +1705,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1366 + content_length: 504 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-02-06T13:41:24.397115Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"a92094cc-9294-4bbf-947e-1d100db454c5","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"3876750e-71f5-49c6-a89d-ea83d6b6f18e","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","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":"initializing","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"bssd","size":10000000000,"type":"bssd"}}' + body: '{"ips":[{"address":"192.168.1.2/24","created_at":"2025-03-24T08:19:14.469410Z","id":"20e3e50c-a02c-42e9-bace-11b7992f31cd","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"nl-ams","resource":{"id":"77c99056-c673-4496-a073-44e35ce1c9fc","mac_address":"02:00:00:13:4E:9C","name":"foobar","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"cfa5097a-e710-4b44-b848-1190c9c17444"},"tags":[],"updated_at":"2025-03-24T08:19:15.165736Z","zone":null}],"total_count":1}' headers: Content-Length: - - "1366" + - "504" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:45:33 GMT + - Mon, 24 Mar 2025 08:21:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1722,10 +1726,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ebc7d628-249d-4cc8-9946-913cb022a1e9 + - 1b7d7567-d6e0-4a1d-bedd-5b7f211d2086 status: 200 OK code: 200 - duration: 260.654083ms + duration: 150.866768ms - id: 35 request: proto: HTTP/1.1 @@ -1741,8 +1745,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/3876750e-71f5-49c6-a89d-ea83d6b6f18e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/ips/082691b0-5c14-4c7a-aaaf-1b81cab577c7 method: GET response: proto: HTTP/2.0 @@ -1750,20 +1754,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1359 + content_length: 390 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-02-06T13:41:24.397115Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"a92094cc-9294-4bbf-947e-1d100db454c5","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"3876750e-71f5-49c6-a89d-ea83d6b6f18e","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","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":"bssd","size":10000000000,"type":"bssd"}}' + body: '{"address":"51.15.86.163","created_at":"2025-03-24T08:19:08.081581Z","gateway_id":"7b2081fd-5a76-4edc-b281-6458c646918d","id":"082691b0-5c14-4c7a-aaaf-1b81cab577c7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"163-86-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T08:19:08.081581Z","zone":"nl-ams-1"}' headers: Content-Length: - - "1359" + - "390" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:46:03 GMT + - Mon, 24 Mar 2025 08:21:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1771,10 +1775,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 13a8a59c-ce17-41fc-b194-8b174948b2d2 + - 31b40ab4-ca6e-4c68-9acc-621cac6352cc status: 200 OK code: 200 - duration: 224.709333ms + duration: 139.708913ms - id: 36 request: proto: HTTP/1.1 @@ -1790,8 +1794,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/3876750e-71f5-49c6-a89d-ea83d6b6f18e/certificate + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/vpcs/3c716461-9ad4-4913-8eb7-6ca375c1079d method: GET response: proto: HTTP/2.0 @@ -1799,20 +1803,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1733 + content_length: 352 uncompressed: false - body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURZekNDQWt1Z0F3SUJBZ0lVRkx5dXhHNG80UXluWk9QTXRLb0pNb1V3MEVNd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1Z6RUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RlRBVEJnTlZCQU1NRERFNU1pNHhOamd1TVM0ME1qQWVGdzB5Ck5UQXlNRFl4TXpReU16bGFGdzB6TlRBeU1EUXhNelF5TXpsYU1GY3hDekFKQmdOVkJBWVRBa1pTTVE0d0RBWUQKVlFRSURBVlFZWEpwY3pFT01Bd0dBMVVFQnd3RlVHRnlhWE14RVRBUEJnTlZCQW9NQ0ZOallXeGxkMkY1TVJVdwpFd1lEVlFRRERBd3hPVEl1TVRZNExqRXVOREl3Z2dFaU1BMEdDU3FHU0liM0RRRUJBUVVBQTRJQkR3QXdnZ0VLCkFvSUJBUUNiTmh6a3lQL3VUVnFhTlN6TTVQKzYzT201Unc1OGpUYXE4VTQxbXQxeUVmN0lLVTlSeWx1K0xhVjkKZU04QWFkUms5eTVNN1JTWDhpWFR5a0pQYmxVdVFyN1ZWWll5MmpDNlpwM3RkZE1QZG9zTUthVzNNd0Raa0duRgp5d3N0RzFTcjZCOHZINldick5LSzlsVVJKdy8wNFZsM0diZm11WUpFOHZPQlpnbFczUFEzUGp4NHZrcml2amRxCklrNXlKMjdKVkxRN09QQ0tqV0svdVo2SVcrVVYxSkVRRC9uVGFkTW14WWpoQ3VsUFcxVE9vSTBRWElJaXA3MngKMVY2b2FLZGg5N1hCRnhBVHM5R3ozU3dtUVVyNUp0aUdGaERzc2tmT0lqcUJhSDNILzVWMmZpOE04bDBnNHN1SwpMOXM3OExmR3pMOTd1VU9CWE5IV2NTbXZaVWRUQWdNQkFBR2pKekFsTUNNR0ExVWRFUVFjTUJxQ0RERTVNaTR4Ck5qZ3VNUzQwTW9jRU13ODdrNGNFd0tnQktqQU5CZ2txaGtpRzl3MEJBUXNGQUFPQ0FRRUFBdTRBZm1GNVJXRTIKQ1lwT1lnTzFXRTR0eXRVYlFBTFN5ajgvTlNqK0tMQW10Q0lERDBBdXRWK2w1a0M4clJ0UVBxWFc0a0kyTjF2cwovVHYyTTAxZjZpS3RUVXVmWmFqeUYxTEtSbXZ5Vk10eWxJWktrWlE2Rm5hVkQyT3NLZlU0MmtROGlCNENvVlU1Cm5TMTBNdEF6M0xFd1pyVHphTTJJUVlqNXlPUW8xakR6c3BzNGdKVGlwQlBTaWhVZ3JFeGVIY2ttVHNTcHF0YzAKdWdOL0cyYzA3QmxIR1A4Y3BIcnJTS21yTGcwYlhlWEhIUDlnaFdlWktsZ093VDcvTm9KOGxUekpXSFpCd0Nubgo0ZDVsamhMM0JOdTJVblA3NFFLSVhpVlowSkFkTXpCZ09rMXJ1UkhxQnR3U3JZYmd3NHdld3NnaWpDZHVrUTZPCktMakFJS0hCcmc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==","content_type":"application/x-pem-file","name":"ssl_certificate"}' + body: '{"created_at":"2025-03-24T08:19:07.405345Z","id":"3c716461-9ad4-4913-8eb7-6ca375c1079d","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-03-24T08:19:07.405345Z"}' headers: Content-Length: - - "1733" + - "352" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:46:03 GMT + - Mon, 24 Mar 2025 08:21:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1820,10 +1824,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ab46e4c4-67c2-43a3-bd98-d901a5f6d745 + - 9ef5ec97-86c0-44e8-90a8-f353bccfc698 status: 200 OK code: 200 - duration: 137.396208ms + duration: 139.830601ms - id: 37 request: proto: HTTP/1.1 @@ -1839,8 +1843,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/3876750e-71f5-49c6-a89d-ea83d6b6f18e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/7b2081fd-5a76-4edc-b281-6458c646918d method: GET response: proto: HTTP/2.0 @@ -1848,20 +1852,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1359 + content_length: 1311 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-02-06T13:41:24.397115Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"a92094cc-9294-4bbf-947e-1d100db454c5","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"3876750e-71f5-49c6-a89d-ea83d6b6f18e","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","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":"bssd","size":10000000000,"type":"bssd"}}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T08:19:08.484649Z","gateway_networks":[{"created_at":"2025-03-24T08:19:14.551023Z","gateway_id":"7b2081fd-5a76-4edc-b281-6458c646918d","id":"77c99056-c673-4496-a073-44e35ce1c9fc","ipam_ip_id":"20e3e50c-a02c-42e9-bace-11b7992f31cd","mac_address":"02:00:00:13:4E:9C","masquerade_enabled":true,"private_network_id":"be233441-59eb-4637-8768-a358f57d5908","push_default_route":true,"status":"ready","updated_at":"2025-03-24T08:19:26.197363Z","zone":"nl-ams-1"}],"id":"7b2081fd-5a76-4edc-b281-6458c646918d","ipv4":{"address":"51.15.86.163","created_at":"2025-03-24T08:19:08.081581Z","gateway_id":"7b2081fd-5a76-4edc-b281-6458c646918d","id":"082691b0-5c14-4c7a-aaaf-1b81cab577c7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"163-86-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T08:19:08.081581Z","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-03-24T08:19:26.424397Z","version":"0.7.3","zone":"nl-ams-1"}' headers: Content-Length: - - "1359" + - "1311" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:46:03 GMT + - Mon, 24 Mar 2025 08:21:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1869,10 +1873,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a3cf7127-a14f-4171-b434-9ed076912381 + - 628459d8-2e3a-4680-87d4-cc3a9706095c status: 200 OK code: 200 - duration: 166.177334ms + duration: 104.245083ms - id: 38 request: proto: HTTP/1.1 @@ -1888,8 +1892,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/d9e77bff-80da-4a0f-af19-50f6a6351ee3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/be233441-59eb-4637-8768-a358f57d5908 method: GET response: proto: HTTP/2.0 @@ -1897,20 +1901,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1044 + content_length: 1022 uncompressed: false - body: '{"created_at":"2025-02-06T13:45:00.340948Z","dhcp_enabled":true,"id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","name":"my_private_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"nl-ams","subnets":[{"created_at":"2025-02-06T13:45:00.340948Z","id":"1700ae48-92a5-4410-926e-b2eedd472c34","private_network_id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.0.0/22","updated_at":"2025-02-06T13:45:00.340948Z","vpc_id":"5976fd03-14dd-4892-a481-034469de59c6"},{"created_at":"2025-02-06T13:45:00.340948Z","id":"d2fb97b4-b81c-469c-b125-31c5bf67d870","private_network_id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5c:d510:d730:9d04::/64","updated_at":"2025-02-06T13:45:00.340948Z","vpc_id":"5976fd03-14dd-4892-a481-034469de59c6"}],"tags":[],"updated_at":"2025-02-06T13:45:00.340948Z","vpc_id":"5976fd03-14dd-4892-a481-034469de59c6"}' + body: '{"created_at":"2025-03-24T08:19:07.815832Z","dhcp_enabled":true,"id":"be233441-59eb-4637-8768-a358f57d5908","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-03-24T08:19:07.815832Z","id":"cfa5097a-e710-4b44-b848-1190c9c17444","private_network_id":"be233441-59eb-4637-8768-a358f57d5908","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"192.168.1.0/24","updated_at":"2025-03-24T08:19:07.815832Z","vpc_id":"3c716461-9ad4-4913-8eb7-6ca375c1079d"},{"created_at":"2025-03-24T08:19:07.815832Z","id":"76035f22-317b-4bd7-8368-8ec0f38d1baa","private_network_id":"be233441-59eb-4637-8768-a358f57d5908","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd2c:2ff0:469a:3715::/64","updated_at":"2025-03-24T08:19:07.815832Z","vpc_id":"3c716461-9ad4-4913-8eb7-6ca375c1079d"}],"tags":[],"updated_at":"2025-03-24T08:19:22.255247Z","vpc_id":"3c716461-9ad4-4913-8eb7-6ca375c1079d"}' headers: Content-Length: - - "1044" + - "1022" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:46:04 GMT + - Mon, 24 Mar 2025 08:21:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1918,10 +1922,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 06376c66-d557-4b90-8cfd-9d542a90042a + - a30fff8e-634e-4677-9654-b577dd2cc542 status: 200 OK code: 200 - duration: 51.610334ms + duration: 142.91984ms - id: 39 request: proto: HTTP/1.1 @@ -1937,8 +1941,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateway-networks/77c99056-c673-4496-a073-44e35ce1c9fc method: GET response: proto: HTTP/2.0 @@ -1946,20 +1950,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1059 + content_length: 416 uncompressed: false - body: '{"created_at":"2025-02-06T13:41:20.570812Z","dhcp_enabled":true,"id":"31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff","name":"my_private_network_to_be_replaced","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"nl-ams","subnets":[{"created_at":"2025-02-06T13:41:20.570812Z","id":"5adcafd5-04f6-45af-9ec1-fdd92d6ff03a","private_network_id":"31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-02-06T13:41:20.570812Z","vpc_id":"5976fd03-14dd-4892-a481-034469de59c6"},{"created_at":"2025-02-06T13:41:20.570812Z","id":"90f0b514-8d8b-4dff-9c2f-a99f2598ae51","private_network_id":"31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5c:d510:d730:e822::/64","updated_at":"2025-02-06T13:41:20.570812Z","vpc_id":"5976fd03-14dd-4892-a481-034469de59c6"}],"tags":[],"updated_at":"2025-02-06T13:45:00.341206Z","vpc_id":"5976fd03-14dd-4892-a481-034469de59c6"}' + body: '{"created_at":"2025-03-24T08:19:14.551023Z","gateway_id":"7b2081fd-5a76-4edc-b281-6458c646918d","id":"77c99056-c673-4496-a073-44e35ce1c9fc","ipam_ip_id":"20e3e50c-a02c-42e9-bace-11b7992f31cd","mac_address":"02:00:00:13:4E:9C","masquerade_enabled":true,"private_network_id":"be233441-59eb-4637-8768-a358f57d5908","push_default_route":true,"status":"ready","updated_at":"2025-03-24T08:19:26.197363Z","zone":"nl-ams-1"}' headers: Content-Length: - - "1059" + - "416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:46:04 GMT + - Mon, 24 Mar 2025 08:21:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1967,10 +1971,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8789583f-f8b7-4433-9973-54213ee5d75e + - bbea7421-1ed0-42b4-81dc-381e4e1325b4 status: 200 OK code: 200 - duration: 100.332709ms + duration: 164.188333ms - id: 40 request: proto: HTTP/1.1 @@ -1986,8 +1990,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/3876750e-71f5-49c6-a89d-ea83d6b6f18e + - 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/rdb/v1/regions/nl-ams/instances/91136575-4b1d-4c79-b240-08afeae48b00 method: GET response: proto: HTTP/2.0 @@ -1995,20 +1999,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1359 + 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-02-06T13:41:24.397115Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"a92094cc-9294-4bbf-947e-1d100db454c5","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"3876750e-71f5-49c6-a89d-ea83d6b6f18e","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","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":"bssd","size":10000000000,"type":"bssd"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-03-24T08:19:09.337633Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"8543e57e-833b-455c-a2b5-3cc56c7313f0","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"be233441-59eb-4637-8768-a358f57d5908","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-16","id":"91136575-4b1d-4c79-b240-08afeae48b00","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":"bssd","size":10000000000,"type":"bssd"}}' headers: Content-Length: - - "1359" + - "1315" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:46:04 GMT + - Mon, 24 Mar 2025 08:21:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2016,10 +2020,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 413d6728-2694-4505-8773-f4b4db2ea80a + - 5e2e86bd-ad96-43a8-b00a-dbca42b9d416 status: 200 OK code: 200 - duration: 136.575708ms + duration: 212.379071ms - id: 41 request: proto: HTTP/1.1 @@ -2035,8 +2039,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/3876750e-71f5-49c6-a89d-ea83d6b6f18e/certificate + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/nl-ams/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=77c99056-c673-4496-a073-44e35ce1c9fc&resource_type=vpc_gateway_network method: GET response: proto: HTTP/2.0 @@ -2044,20 +2048,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1733 + content_length: 504 uncompressed: false - body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURZekNDQWt1Z0F3SUJBZ0lVRkx5dXhHNG80UXluWk9QTXRLb0pNb1V3MEVNd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1Z6RUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RlRBVEJnTlZCQU1NRERFNU1pNHhOamd1TVM0ME1qQWVGdzB5Ck5UQXlNRFl4TXpReU16bGFGdzB6TlRBeU1EUXhNelF5TXpsYU1GY3hDekFKQmdOVkJBWVRBa1pTTVE0d0RBWUQKVlFRSURBVlFZWEpwY3pFT01Bd0dBMVVFQnd3RlVHRnlhWE14RVRBUEJnTlZCQW9NQ0ZOallXeGxkMkY1TVJVdwpFd1lEVlFRRERBd3hPVEl1TVRZNExqRXVOREl3Z2dFaU1BMEdDU3FHU0liM0RRRUJBUVVBQTRJQkR3QXdnZ0VLCkFvSUJBUUNiTmh6a3lQL3VUVnFhTlN6TTVQKzYzT201Unc1OGpUYXE4VTQxbXQxeUVmN0lLVTlSeWx1K0xhVjkKZU04QWFkUms5eTVNN1JTWDhpWFR5a0pQYmxVdVFyN1ZWWll5MmpDNlpwM3RkZE1QZG9zTUthVzNNd0Raa0duRgp5d3N0RzFTcjZCOHZINldick5LSzlsVVJKdy8wNFZsM0diZm11WUpFOHZPQlpnbFczUFEzUGp4NHZrcml2amRxCklrNXlKMjdKVkxRN09QQ0tqV0svdVo2SVcrVVYxSkVRRC9uVGFkTW14WWpoQ3VsUFcxVE9vSTBRWElJaXA3MngKMVY2b2FLZGg5N1hCRnhBVHM5R3ozU3dtUVVyNUp0aUdGaERzc2tmT0lqcUJhSDNILzVWMmZpOE04bDBnNHN1SwpMOXM3OExmR3pMOTd1VU9CWE5IV2NTbXZaVWRUQWdNQkFBR2pKekFsTUNNR0ExVWRFUVFjTUJxQ0RERTVNaTR4Ck5qZ3VNUzQwTW9jRU13ODdrNGNFd0tnQktqQU5CZ2txaGtpRzl3MEJBUXNGQUFPQ0FRRUFBdTRBZm1GNVJXRTIKQ1lwT1lnTzFXRTR0eXRVYlFBTFN5ajgvTlNqK0tMQW10Q0lERDBBdXRWK2w1a0M4clJ0UVBxWFc0a0kyTjF2cwovVHYyTTAxZjZpS3RUVXVmWmFqeUYxTEtSbXZ5Vk10eWxJWktrWlE2Rm5hVkQyT3NLZlU0MmtROGlCNENvVlU1Cm5TMTBNdEF6M0xFd1pyVHphTTJJUVlqNXlPUW8xakR6c3BzNGdKVGlwQlBTaWhVZ3JFeGVIY2ttVHNTcHF0YzAKdWdOL0cyYzA3QmxIR1A4Y3BIcnJTS21yTGcwYlhlWEhIUDlnaFdlWktsZ093VDcvTm9KOGxUekpXSFpCd0Nubgo0ZDVsamhMM0JOdTJVblA3NFFLSVhpVlowSkFkTXpCZ09rMXJ1UkhxQnR3U3JZYmd3NHdld3NnaWpDZHVrUTZPCktMakFJS0hCcmc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==","content_type":"application/x-pem-file","name":"ssl_certificate"}' + body: '{"ips":[{"address":"192.168.1.2/24","created_at":"2025-03-24T08:19:14.469410Z","id":"20e3e50c-a02c-42e9-bace-11b7992f31cd","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"nl-ams","resource":{"id":"77c99056-c673-4496-a073-44e35ce1c9fc","mac_address":"02:00:00:13:4E:9C","name":"foobar","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"cfa5097a-e710-4b44-b848-1190c9c17444"},"tags":[],"updated_at":"2025-03-24T08:19:15.165736Z","zone":null}],"total_count":1}' headers: Content-Length: - - "1733" + - "504" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:46:05 GMT + - Mon, 24 Mar 2025 08:21:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2065,10 +2069,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - de08eef5-c774-4195-a597-6eba3cd9b37f + - 18b4ee69-22d2-429b-bd62-066b8059802b status: 200 OK code: 200 - duration: 134.229833ms + duration: 123.324027ms - id: 42 request: proto: HTTP/1.1 @@ -2084,8 +2088,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/d9e77bff-80da-4a0f-af19-50f6a6351ee3 + - 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/rdb/v1/regions/nl-ams/instances/91136575-4b1d-4c79-b240-08afeae48b00/certificate method: GET response: proto: HTTP/2.0 @@ -2093,20 +2097,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1044 + content_length: 1735 uncompressed: false - body: '{"created_at":"2025-02-06T13:45:00.340948Z","dhcp_enabled":true,"id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","name":"my_private_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"nl-ams","subnets":[{"created_at":"2025-02-06T13:45:00.340948Z","id":"1700ae48-92a5-4410-926e-b2eedd472c34","private_network_id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.0.0/22","updated_at":"2025-02-06T13:45:00.340948Z","vpc_id":"5976fd03-14dd-4892-a481-034469de59c6"},{"created_at":"2025-02-06T13:45:00.340948Z","id":"d2fb97b4-b81c-469c-b125-31c5bf67d870","private_network_id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5c:d510:d730:9d04::/64","updated_at":"2025-02-06T13:45:00.340948Z","vpc_id":"5976fd03-14dd-4892-a481-034469de59c6"}],"tags":[],"updated_at":"2025-02-06T13:45:00.340948Z","vpc_id":"5976fd03-14dd-4892-a481-034469de59c6"}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURaakNDQWs2Z0F3SUJBZ0lVRjVEblNTUDEyS0V6cWV3dzRXb1FyUkk2amQwd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1dERUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RmpBVUJnTlZCQU1NRFRFNU1pNHhOamd1TVM0eU5UUXdIaGNOCk1qVXdNekkwTURneU1EQTVXaGNOTXpVd016SXlNRGd5TURBNVdqQllNUXN3Q1FZRFZRUUdFd0pHVWpFT01Bd0cKQTFVRUNBd0ZVR0Z5YVhNeERqQU1CZ05WQkFjTUJWQmhjbWx6TVJFd0R3WURWUVFLREFoVFkyRnNaWGRoZVRFVwpNQlFHQTFVRUF3d05NVGt5TGpFMk9DNHhMakkxTkRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDCkFRb0NnZ0VCQU9Tc0ZNcXlvTXJRNHUycGtrZkkwMkZOVDFrVS9rN2xOWXVEOG5yMDdybFd4cUJUMlUwM2Y0bnkKSTVyYStqTnhPdW0wdGsxanpzZWw4WXlVb2JjQUxzSlNrUzhTT2Q5MjRsUDQzUktUV0xhUWJHY0hDcFgrS0NrUgpsb0JxQllLK1YzUUk3UXZacFMxVmphZEo3Z0p5K3UyaytjMDZXOVhjNTNDRmFGWkE0SnBQakQ0Y0Q4eFlnNmw3Cm10N1dRSW5EU0JSOEJzOER4Q3BCUyszcWZqSnFoV0ZaWFNYUmhHNytqRHFZVkM3WTU3Y1JDcGdQblFiRVpUVjQKL0hqVDFJQU1FbmxJTXNmcjdBZFo5UnpkNmdyYnZCUUNlNzNhcjM3cDl3WUY5U1hncmJEdGFqOWl5d3VDYlN0TApwU25uTFMvUkhSUHpJVExLbkhiNnlXNTdqTEdCRTlrQ0F3RUFBYU1vTUNZd0pBWURWUjBSQkIwd0c0SU5NVGt5CkxqRTJPQzR4TGpJMU5JY0VNdzltYTRjRXdLZ0IvakFOQmdrcWhraUc5dzBCQVFzRkFBT0NBUUVBb3N0bnQ4cloKcS9oWWNNWDBBU3AremJqTjdISXF1SlVVVytNYlVoMlBpSFVvTHc2MEw5SjVWRHVEeDVXQmg3U2puWjBTT3d4MApmalhiQVdVQmZEM3lMUW1lYkt4Y3hTYVU5SFUrdyt1M25salhUbytjbUJXT0pFcmlHNXJXcHBTMWRESHM3VDFMClBTNE9EeWdMNXJDNXdDYWcxdXVhbUZTQkZCLytoVGU5Qzd0N2NGMEFuNmhYQWJCNllsVEk4YWo2TDlFWTRtMm0KV2tmRDd1cGc5TTN2dEZhVXFBVFFnYjZWL0FlRFpEem5wbCtqV0RMR3VjTUs3bElPSG5jT2I2TDRhamRDTUhHMApTaERwMnA3Q1o5eTdEVGxMTitQMlJJMERCd2xucmRUMkxKU2l1Ulh5eWxKUmd3TE1icGxqTUJ3cDFpWWdPU1BRCjVRN1luYUhUQkJtejd3PT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - - "1044" + - "1735" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:46:05 GMT + - Mon, 24 Mar 2025 08:21:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2114,10 +2118,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5265990f-9e53-47ee-ab96-8d3e7c580093 + - be3d471b-d8b0-4195-9f54-06eb9bf6412e status: 200 OK code: 200 - duration: 69.3165ms + duration: 178.467304ms - id: 43 request: proto: HTTP/1.1 @@ -2133,8 +2137,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/pat-rules/d759f012-85dc-4a38-91f4-df3bf7a8c220 method: GET response: proto: HTTP/2.0 @@ -2142,20 +2146,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1059 + content_length: 283 uncompressed: false - body: '{"created_at":"2025-02-06T13:41:20.570812Z","dhcp_enabled":true,"id":"31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff","name":"my_private_network_to_be_replaced","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"nl-ams","subnets":[{"created_at":"2025-02-06T13:41:20.570812Z","id":"5adcafd5-04f6-45af-9ec1-fdd92d6ff03a","private_network_id":"31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-02-06T13:41:20.570812Z","vpc_id":"5976fd03-14dd-4892-a481-034469de59c6"},{"created_at":"2025-02-06T13:41:20.570812Z","id":"90f0b514-8d8b-4dff-9c2f-a99f2598ae51","private_network_id":"31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5c:d510:d730:e822::/64","updated_at":"2025-02-06T13:41:20.570812Z","vpc_id":"5976fd03-14dd-4892-a481-034469de59c6"}],"tags":[],"updated_at":"2025-02-06T13:45:00.341206Z","vpc_id":"5976fd03-14dd-4892-a481-034469de59c6"}' + body: '{"created_at":"2025-03-24T08:21:43.029293Z","gateway_id":"7b2081fd-5a76-4edc-b281-6458c646918d","id":"d759f012-85dc-4a38-91f4-df3bf7a8c220","private_ip":"192.168.1.2","private_port":5432,"protocol":"both","public_port":42,"updated_at":"2025-03-24T08:21:43.029293Z","zone":"nl-ams-1"}' headers: Content-Length: - - "1059" + - "283" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:46:05 GMT + - Mon, 24 Mar 2025 08:21:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2163,10 +2167,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1107197d-4d84-4524-85be-47b28989c370 + - 491458f4-0ee4-490e-b7c8-1dd8f3f3db18 status: 200 OK code: 200 - duration: 70.352792ms + duration: 100.139563ms - id: 44 request: proto: HTTP/1.1 @@ -2182,8 +2186,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/3876750e-71f5-49c6-a89d-ea83d6b6f18e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/nl-ams/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=77c99056-c673-4496-a073-44e35ce1c9fc&resource_type=vpc_gateway_network method: GET response: proto: HTTP/2.0 @@ -2191,20 +2195,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1359 + content_length: 504 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-02-06T13:41:24.397115Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"a92094cc-9294-4bbf-947e-1d100db454c5","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"3876750e-71f5-49c6-a89d-ea83d6b6f18e","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","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":"bssd","size":10000000000,"type":"bssd"}}' + body: '{"ips":[{"address":"192.168.1.2/24","created_at":"2025-03-24T08:19:14.469410Z","id":"20e3e50c-a02c-42e9-bace-11b7992f31cd","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"nl-ams","resource":{"id":"77c99056-c673-4496-a073-44e35ce1c9fc","mac_address":"02:00:00:13:4E:9C","name":"foobar","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"cfa5097a-e710-4b44-b848-1190c9c17444"},"tags":[],"updated_at":"2025-03-24T08:19:15.165736Z","zone":null}],"total_count":1}' headers: Content-Length: - - "1359" + - "504" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:46:06 GMT + - Mon, 24 Mar 2025 08:21:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2212,10 +2216,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0d0a6390-55be-4b6f-accd-ccde98a6e92c + - 47a7b670-9a80-4048-aeac-23a5e7303e1c status: 200 OK code: 200 - duration: 189.376417ms + duration: 142.580515ms - id: 45 request: proto: HTTP/1.1 @@ -2231,8 +2235,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/3876750e-71f5-49c6-a89d-ea83d6b6f18e/certificate + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/ips/082691b0-5c14-4c7a-aaaf-1b81cab577c7 method: GET response: proto: HTTP/2.0 @@ -2240,20 +2244,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1733 + content_length: 390 uncompressed: false - body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURZekNDQWt1Z0F3SUJBZ0lVRkx5dXhHNG80UXluWk9QTXRLb0pNb1V3MEVNd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1Z6RUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RlRBVEJnTlZCQU1NRERFNU1pNHhOamd1TVM0ME1qQWVGdzB5Ck5UQXlNRFl4TXpReU16bGFGdzB6TlRBeU1EUXhNelF5TXpsYU1GY3hDekFKQmdOVkJBWVRBa1pTTVE0d0RBWUQKVlFRSURBVlFZWEpwY3pFT01Bd0dBMVVFQnd3RlVHRnlhWE14RVRBUEJnTlZCQW9NQ0ZOallXeGxkMkY1TVJVdwpFd1lEVlFRRERBd3hPVEl1TVRZNExqRXVOREl3Z2dFaU1BMEdDU3FHU0liM0RRRUJBUVVBQTRJQkR3QXdnZ0VLCkFvSUJBUUNiTmh6a3lQL3VUVnFhTlN6TTVQKzYzT201Unc1OGpUYXE4VTQxbXQxeUVmN0lLVTlSeWx1K0xhVjkKZU04QWFkUms5eTVNN1JTWDhpWFR5a0pQYmxVdVFyN1ZWWll5MmpDNlpwM3RkZE1QZG9zTUthVzNNd0Raa0duRgp5d3N0RzFTcjZCOHZINldick5LSzlsVVJKdy8wNFZsM0diZm11WUpFOHZPQlpnbFczUFEzUGp4NHZrcml2amRxCklrNXlKMjdKVkxRN09QQ0tqV0svdVo2SVcrVVYxSkVRRC9uVGFkTW14WWpoQ3VsUFcxVE9vSTBRWElJaXA3MngKMVY2b2FLZGg5N1hCRnhBVHM5R3ozU3dtUVVyNUp0aUdGaERzc2tmT0lqcUJhSDNILzVWMmZpOE04bDBnNHN1SwpMOXM3OExmR3pMOTd1VU9CWE5IV2NTbXZaVWRUQWdNQkFBR2pKekFsTUNNR0ExVWRFUVFjTUJxQ0RERTVNaTR4Ck5qZ3VNUzQwTW9jRU13ODdrNGNFd0tnQktqQU5CZ2txaGtpRzl3MEJBUXNGQUFPQ0FRRUFBdTRBZm1GNVJXRTIKQ1lwT1lnTzFXRTR0eXRVYlFBTFN5ajgvTlNqK0tMQW10Q0lERDBBdXRWK2w1a0M4clJ0UVBxWFc0a0kyTjF2cwovVHYyTTAxZjZpS3RUVXVmWmFqeUYxTEtSbXZ5Vk10eWxJWktrWlE2Rm5hVkQyT3NLZlU0MmtROGlCNENvVlU1Cm5TMTBNdEF6M0xFd1pyVHphTTJJUVlqNXlPUW8xakR6c3BzNGdKVGlwQlBTaWhVZ3JFeGVIY2ttVHNTcHF0YzAKdWdOL0cyYzA3QmxIR1A4Y3BIcnJTS21yTGcwYlhlWEhIUDlnaFdlWktsZ093VDcvTm9KOGxUekpXSFpCd0Nubgo0ZDVsamhMM0JOdTJVblA3NFFLSVhpVlowSkFkTXpCZ09rMXJ1UkhxQnR3U3JZYmd3NHdld3NnaWpDZHVrUTZPCktMakFJS0hCcmc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==","content_type":"application/x-pem-file","name":"ssl_certificate"}' + body: '{"address":"51.15.86.163","created_at":"2025-03-24T08:19:08.081581Z","gateway_id":"7b2081fd-5a76-4edc-b281-6458c646918d","id":"082691b0-5c14-4c7a-aaaf-1b81cab577c7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"163-86-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T08:19:08.081581Z","zone":"nl-ams-1"}' headers: Content-Length: - - "1733" + - "390" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:46:06 GMT + - Mon, 24 Mar 2025 08:21:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2261,50 +2265,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 240dbda4-5cae-4508-809b-d48f28dc1e63 + - 9fac2256-3992-42b9-9bbc-3a4d0952251d status: 200 OK code: 200 - duration: 139.545875ms + duration: 102.655288ms - id: 46 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":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"192.168.1.0/24"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/dhcps - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/pat-rules/d759f012-85dc-4a38-91f4-df3bf7a8c220 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 586 + content_length: 283 uncompressed: false - body: '{"address":"192.168.1.1","created_at":"2025-02-06T13:46:07.337972Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"0ef9e983-12c1-4a4d-9522-0da204e23193","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-02-06T13:46:07.337972Z","valid_lifetime":"3600s","zone":"nl-ams-1"}' + body: '{"created_at":"2025-03-24T08:21:43.029293Z","gateway_id":"7b2081fd-5a76-4edc-b281-6458c646918d","id":"d759f012-85dc-4a38-91f4-df3bf7a8c220","private_ip":"192.168.1.2","private_port":5432,"protocol":"both","public_port":42,"updated_at":"2025-03-24T08:21:43.029293Z","zone":"nl-ams-1"}' headers: Content-Length: - - "586" + - "283" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:46:07 GMT + - Mon, 24 Mar 2025 08:21:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2312,10 +2314,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1262c716-9026-4e9b-9869-e049d45f5ac8 + - c08190f5-bcaa-4d7a-8de2-48fcb10080a1 status: 200 OK code: 200 - duration: 105.963417ms + duration: 109.336314ms - id: 47 request: proto: HTTP/1.1 @@ -2331,8 +2333,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/dhcps/0ef9e983-12c1-4a4d-9522-0da204e23193 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/vpcs/3c716461-9ad4-4913-8eb7-6ca375c1079d method: GET response: proto: HTTP/2.0 @@ -2340,20 +2342,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 586 + content_length: 352 uncompressed: false - body: '{"address":"192.168.1.1","created_at":"2025-02-06T13:46:07.337972Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"0ef9e983-12c1-4a4d-9522-0da204e23193","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-02-06T13:46:07.337972Z","valid_lifetime":"3600s","zone":"nl-ams-1"}' + body: '{"created_at":"2025-03-24T08:19:07.405345Z","id":"3c716461-9ad4-4913-8eb7-6ca375c1079d","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-03-24T08:19:07.405345Z"}' headers: Content-Length: - - "586" + - "352" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:46:07 GMT + - Mon, 24 Mar 2025 08:21:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2361,50 +2363,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7a43dd3a-fa4f-4e69-a7ab-6c81ddacd636 + - a8fba84c-445d-46ff-afcd-5da0a3d64d90 status: 200 OK code: 200 - duration: 90.747209ms + duration: 131.571737ms - id: 48 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":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[]}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/ips - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/7b2081fd-5a76-4edc-b281-6458c646918d + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 367 + content_length: 1311 uncompressed: false - body: '{"address":"51.158.186.43","created_at":"2025-02-06T13:46:08.019129Z","gateway_id":null,"id":"4dd6d53b-dbbc-493e-ab3f-4321bce6cc37","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"43-186-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-02-06T13:46:08.019129Z","zone":"nl-ams-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T08:19:08.484649Z","gateway_networks":[{"created_at":"2025-03-24T08:19:14.551023Z","gateway_id":"7b2081fd-5a76-4edc-b281-6458c646918d","id":"77c99056-c673-4496-a073-44e35ce1c9fc","ipam_ip_id":"20e3e50c-a02c-42e9-bace-11b7992f31cd","mac_address":"02:00:00:13:4E:9C","masquerade_enabled":true,"private_network_id":"be233441-59eb-4637-8768-a358f57d5908","push_default_route":true,"status":"ready","updated_at":"2025-03-24T08:19:26.197363Z","zone":"nl-ams-1"}],"id":"7b2081fd-5a76-4edc-b281-6458c646918d","ipv4":{"address":"51.15.86.163","created_at":"2025-03-24T08:19:08.081581Z","gateway_id":"7b2081fd-5a76-4edc-b281-6458c646918d","id":"082691b0-5c14-4c7a-aaaf-1b81cab577c7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"163-86-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T08:19:08.081581Z","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-03-24T08:19:26.424397Z","version":"0.7.3","zone":"nl-ams-1"}' headers: Content-Length: - - "367" + - "1311" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:46:08 GMT + - Mon, 24 Mar 2025 08:21:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2412,10 +2412,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 70f01756-1e7c-4b4d-a254-85e87089e282 + - cba27551-d9de-4836-8510-c556fb210589 status: 200 OK code: 200 - duration: 916.115417ms + duration: 130.470162ms - id: 49 request: proto: HTTP/1.1 @@ -2431,8 +2431,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/ips/4dd6d53b-dbbc-493e-ab3f-4321bce6cc37 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateway-networks/77c99056-c673-4496-a073-44e35ce1c9fc method: GET response: proto: HTTP/2.0 @@ -2440,20 +2440,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 367 + content_length: 416 uncompressed: false - body: '{"address":"51.158.186.43","created_at":"2025-02-06T13:46:08.019129Z","gateway_id":null,"id":"4dd6d53b-dbbc-493e-ab3f-4321bce6cc37","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"43-186-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-02-06T13:46:08.019129Z","zone":"nl-ams-1"}' + body: '{"created_at":"2025-03-24T08:19:14.551023Z","gateway_id":"7b2081fd-5a76-4edc-b281-6458c646918d","id":"77c99056-c673-4496-a073-44e35ce1c9fc","ipam_ip_id":"20e3e50c-a02c-42e9-bace-11b7992f31cd","mac_address":"02:00:00:13:4E:9C","masquerade_enabled":true,"private_network_id":"be233441-59eb-4637-8768-a358f57d5908","push_default_route":true,"status":"ready","updated_at":"2025-03-24T08:19:26.197363Z","zone":"nl-ams-1"}' headers: Content-Length: - - "367" + - "416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:46:08 GMT + - Mon, 24 Mar 2025 08:21:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2461,50 +2461,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eea913d9-5bbb-4db7-bd87-1f9e8a71ff4c + - 212717d9-ab79-4377-bbb2-9164bbc23c7c status: 200 OK code: 200 - duration: 88.707209ms + duration: 145.157044ms - id: 50 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: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"foobar","tags":[],"type":"VPC-GW-S","upstream_dns_servers":[],"ip_id":"4dd6d53b-dbbc-493e-ab3f-4321bce6cc37","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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways - method: POST + - 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/rdb/v1/regions/nl-ams/instances/91136575-4b1d-4c79-b240-08afeae48b00 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 998 + content_length: 1315 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-02-06T13:46:08.342597Z","gateway_networks":[],"id":"b0d90017-9561-4e04-a14f-642b796c3d3b","ip":{"address":"51.158.186.43","created_at":"2025-02-06T13:46:08.019129Z","gateway_id":"b0d90017-9561-4e04-a14f-642b796c3d3b","id":"4dd6d53b-dbbc-493e-ab3f-4321bce6cc37","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"43-186-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-02-06T13:46:08.019129Z","zone":"nl-ams-1"},"ip_mobility_enabled":false,"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-02-06T13:46:08.342597Z","upstream_dns_servers":[],"version":null,"zone":"nl-ams-1"}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-03-24T08:19:09.337633Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"8543e57e-833b-455c-a2b5-3cc56c7313f0","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"be233441-59eb-4637-8768-a358f57d5908","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-16","id":"91136575-4b1d-4c79-b240-08afeae48b00","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":"bssd","size":10000000000,"type":"bssd"}}' headers: Content-Length: - - "998" + - "1315" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:46:08 GMT + - Mon, 24 Mar 2025 08:21:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2512,10 +2510,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ff4401fd-aaad-4029-ae8f-af7185b5efdd + - 12fcffc4-956b-46d4-bd25-3b109cc8fc37 status: 200 OK code: 200 - duration: 105.112791ms + duration: 227.647451ms - id: 51 request: proto: HTTP/1.1 @@ -2531,8 +2529,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/b0d90017-9561-4e04-a14f-642b796c3d3b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/be233441-59eb-4637-8768-a358f57d5908 method: GET response: proto: HTTP/2.0 @@ -2540,20 +2538,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1000 + content_length: 1022 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-02-06T13:46:08.342597Z","gateway_networks":[],"id":"b0d90017-9561-4e04-a14f-642b796c3d3b","ip":{"address":"51.158.186.43","created_at":"2025-02-06T13:46:08.019129Z","gateway_id":"b0d90017-9561-4e04-a14f-642b796c3d3b","id":"4dd6d53b-dbbc-493e-ab3f-4321bce6cc37","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"43-186-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-02-06T13:46:08.019129Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-02-06T13:46:08.399490Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}' + body: '{"created_at":"2025-03-24T08:19:07.815832Z","dhcp_enabled":true,"id":"be233441-59eb-4637-8768-a358f57d5908","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-03-24T08:19:07.815832Z","id":"cfa5097a-e710-4b44-b848-1190c9c17444","private_network_id":"be233441-59eb-4637-8768-a358f57d5908","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"192.168.1.0/24","updated_at":"2025-03-24T08:19:07.815832Z","vpc_id":"3c716461-9ad4-4913-8eb7-6ca375c1079d"},{"created_at":"2025-03-24T08:19:07.815832Z","id":"76035f22-317b-4bd7-8368-8ec0f38d1baa","private_network_id":"be233441-59eb-4637-8768-a358f57d5908","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd2c:2ff0:469a:3715::/64","updated_at":"2025-03-24T08:19:07.815832Z","vpc_id":"3c716461-9ad4-4913-8eb7-6ca375c1079d"}],"tags":[],"updated_at":"2025-03-24T08:19:22.255247Z","vpc_id":"3c716461-9ad4-4913-8eb7-6ca375c1079d"}' headers: Content-Length: - - "1000" + - "1022" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:46:08 GMT + - Mon, 24 Mar 2025 08:21:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2561,10 +2559,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 48284fb3-b943-4015-8014-ecf72f5b499b + - 5a1e0aa8-8ce9-400a-8f8a-ce5d259d80c6 status: 200 OK code: 200 - duration: 45.330542ms + duration: 104.268704ms - id: 52 request: proto: HTTP/1.1 @@ -2580,8 +2578,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/b0d90017-9561-4e04-a14f-642b796c3d3b + - 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/rdb/v1/regions/nl-ams/instances/91136575-4b1d-4c79-b240-08afeae48b00/certificate method: GET response: proto: HTTP/2.0 @@ -2589,20 +2587,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 997 + content_length: 1735 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-02-06T13:46:08.342597Z","gateway_networks":[],"id":"b0d90017-9561-4e04-a14f-642b796c3d3b","ip":{"address":"51.158.186.43","created_at":"2025-02-06T13:46:08.019129Z","gateway_id":"b0d90017-9561-4e04-a14f-642b796c3d3b","id":"4dd6d53b-dbbc-493e-ab3f-4321bce6cc37","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"43-186-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-02-06T13:46:08.019129Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-02-06T13:46:13.433289Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURaakNDQWs2Z0F3SUJBZ0lVRjVEblNTUDEyS0V6cWV3dzRXb1FyUkk2amQwd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1dERUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RmpBVUJnTlZCQU1NRFRFNU1pNHhOamd1TVM0eU5UUXdIaGNOCk1qVXdNekkwTURneU1EQTVXaGNOTXpVd016SXlNRGd5TURBNVdqQllNUXN3Q1FZRFZRUUdFd0pHVWpFT01Bd0cKQTFVRUNBd0ZVR0Z5YVhNeERqQU1CZ05WQkFjTUJWQmhjbWx6TVJFd0R3WURWUVFLREFoVFkyRnNaWGRoZVRFVwpNQlFHQTFVRUF3d05NVGt5TGpFMk9DNHhMakkxTkRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDCkFRb0NnZ0VCQU9Tc0ZNcXlvTXJRNHUycGtrZkkwMkZOVDFrVS9rN2xOWXVEOG5yMDdybFd4cUJUMlUwM2Y0bnkKSTVyYStqTnhPdW0wdGsxanpzZWw4WXlVb2JjQUxzSlNrUzhTT2Q5MjRsUDQzUktUV0xhUWJHY0hDcFgrS0NrUgpsb0JxQllLK1YzUUk3UXZacFMxVmphZEo3Z0p5K3UyaytjMDZXOVhjNTNDRmFGWkE0SnBQakQ0Y0Q4eFlnNmw3Cm10N1dRSW5EU0JSOEJzOER4Q3BCUyszcWZqSnFoV0ZaWFNYUmhHNytqRHFZVkM3WTU3Y1JDcGdQblFiRVpUVjQKL0hqVDFJQU1FbmxJTXNmcjdBZFo5UnpkNmdyYnZCUUNlNzNhcjM3cDl3WUY5U1hncmJEdGFqOWl5d3VDYlN0TApwU25uTFMvUkhSUHpJVExLbkhiNnlXNTdqTEdCRTlrQ0F3RUFBYU1vTUNZd0pBWURWUjBSQkIwd0c0SU5NVGt5CkxqRTJPQzR4TGpJMU5JY0VNdzltYTRjRXdLZ0IvakFOQmdrcWhraUc5dzBCQVFzRkFBT0NBUUVBb3N0bnQ4cloKcS9oWWNNWDBBU3AremJqTjdISXF1SlVVVytNYlVoMlBpSFVvTHc2MEw5SjVWRHVEeDVXQmg3U2puWjBTT3d4MApmalhiQVdVQmZEM3lMUW1lYkt4Y3hTYVU5SFUrdyt1M25salhUbytjbUJXT0pFcmlHNXJXcHBTMWRESHM3VDFMClBTNE9EeWdMNXJDNXdDYWcxdXVhbUZTQkZCLytoVGU5Qzd0N2NGMEFuNmhYQWJCNllsVEk4YWo2TDlFWTRtMm0KV2tmRDd1cGc5TTN2dEZhVXFBVFFnYjZWL0FlRFpEem5wbCtqV0RMR3VjTUs3bElPSG5jT2I2TDRhamRDTUhHMApTaERwMnA3Q1o5eTdEVGxMTitQMlJJMERCd2xucmRUMkxKU2l1Ulh5eWxKUmd3TE1icGxqTUJ3cDFpWWdPU1BRCjVRN1luYUhUQkJtejd3PT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - - "997" + - "1735" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:46:13 GMT + - Mon, 24 Mar 2025 08:21:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2610,10 +2608,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8fd8ba0a-44b6-45c9-bb75-a7560e9b10a3 + - ad70617e-a181-46aa-b0bb-33fd6dfe17d8 status: 200 OK code: 200 - duration: 58.107708ms + duration: 199.232689ms - id: 53 request: proto: HTTP/1.1 @@ -2629,8 +2627,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/b0d90017-9561-4e04-a14f-642b796c3d3b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/pat-rules/d759f012-85dc-4a38-91f4-df3bf7a8c220 method: GET response: proto: HTTP/2.0 @@ -2638,20 +2636,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 997 + content_length: 283 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-02-06T13:46:08.342597Z","gateway_networks":[],"id":"b0d90017-9561-4e04-a14f-642b796c3d3b","ip":{"address":"51.158.186.43","created_at":"2025-02-06T13:46:08.019129Z","gateway_id":"b0d90017-9561-4e04-a14f-642b796c3d3b","id":"4dd6d53b-dbbc-493e-ab3f-4321bce6cc37","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"43-186-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-02-06T13:46:08.019129Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-02-06T13:46:13.433289Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}' + body: '{"created_at":"2025-03-24T08:21:43.029293Z","gateway_id":"7b2081fd-5a76-4edc-b281-6458c646918d","id":"d759f012-85dc-4a38-91f4-df3bf7a8c220","private_ip":"192.168.1.2","private_port":5432,"protocol":"both","public_port":42,"updated_at":"2025-03-24T08:21:43.029293Z","zone":"nl-ams-1"}' headers: Content-Length: - - "997" + - "283" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:46:13 GMT + - Mon, 24 Mar 2025 08:21:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2659,10 +2657,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 36172f8e-b697-48f5-9bef-3ec1b82aed70 + - 5d79d183-15d1-40c3-a616-aeba034fab2e status: 200 OK code: 200 - duration: 51.705083ms + duration: 98.94361ms - id: 54 request: proto: HTTP/1.1 @@ -2678,8 +2676,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/b0d90017-9561-4e04-a14f-642b796c3d3b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/7b2081fd-5a76-4edc-b281-6458c646918d method: GET response: proto: HTTP/2.0 @@ -2687,20 +2685,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 997 + content_length: 1311 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-02-06T13:46:08.342597Z","gateway_networks":[],"id":"b0d90017-9561-4e04-a14f-642b796c3d3b","ip":{"address":"51.158.186.43","created_at":"2025-02-06T13:46:08.019129Z","gateway_id":"b0d90017-9561-4e04-a14f-642b796c3d3b","id":"4dd6d53b-dbbc-493e-ab3f-4321bce6cc37","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"43-186-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-02-06T13:46:08.019129Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-02-06T13:46:13.433289Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T08:19:08.484649Z","gateway_networks":[{"created_at":"2025-03-24T08:19:14.551023Z","gateway_id":"7b2081fd-5a76-4edc-b281-6458c646918d","id":"77c99056-c673-4496-a073-44e35ce1c9fc","ipam_ip_id":"20e3e50c-a02c-42e9-bace-11b7992f31cd","mac_address":"02:00:00:13:4E:9C","masquerade_enabled":true,"private_network_id":"be233441-59eb-4637-8768-a358f57d5908","push_default_route":true,"status":"ready","updated_at":"2025-03-24T08:19:26.197363Z","zone":"nl-ams-1"}],"id":"7b2081fd-5a76-4edc-b281-6458c646918d","ipv4":{"address":"51.15.86.163","created_at":"2025-03-24T08:19:08.081581Z","gateway_id":"7b2081fd-5a76-4edc-b281-6458c646918d","id":"082691b0-5c14-4c7a-aaaf-1b81cab577c7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"163-86-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T08:19:08.081581Z","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-03-24T08:19:26.424397Z","version":"0.7.3","zone":"nl-ams-1"}' headers: Content-Length: - - "997" + - "1311" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:46:13 GMT + - Mon, 24 Mar 2025 08:21:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2708,50 +2706,46 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3ff0420b-0ed3-41e6-8708-52b091488852 + - dc61fdb1-c54e-4c4e-b6cc-a6510477eaf5 status: 200 OK code: 200 - duration: 45.90225ms + duration: 109.650372ms - id: 55 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 206 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"gateway_id":"b0d90017-9561-4e04-a14f-642b796c3d3b","private_network_id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","enable_masquerade":true,"enable_dhcp":true,"dhcp_id":"0ef9e983-12c1-4a4d-9522-0da204e23193"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateway-networks - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/pat-rules/d759f012-85dc-4a38-91f4-df3bf7a8c220 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 983 + content_length: 0 uncompressed: false - body: '{"address":null,"created_at":"2025-02-06T13:46:16.106202Z","dhcp":{"address":"192.168.1.1","created_at":"2025-02-06T13:46:07.337972Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"0ef9e983-12c1-4a4d-9522-0da204e23193","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-02-06T13:46:07.337972Z","valid_lifetime":"3600s","zone":"nl-ams-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"b0d90017-9561-4e04-a14f-642b796c3d3b","id":"7b30df70-988f-4f93-a566-39c9e031bad5","ipam_config":null,"mac_address":null,"private_network_id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","status":"created","updated_at":"2025-02-06T13:46:16.106202Z","zone":"nl-ams-1"}' + body: "" headers: - Content-Length: - - "983" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:46:16 GMT + - Mon, 24 Mar 2025 08:21:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2759,10 +2753,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 62eb2dda-a9fe-4160-b1bd-1f0a363d970c - status: 200 OK - code: 200 - duration: 2.720779s + - e0ab81b4-947a-4e02-a854-71e967481289 + status: 204 No Content + code: 204 + duration: 141.008578ms - id: 56 request: proto: HTTP/1.1 @@ -2778,8 +2772,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/b0d90017-9561-4e04-a14f-642b796c3d3b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/7b2081fd-5a76-4edc-b281-6458c646918d method: GET response: proto: HTTP/2.0 @@ -2787,20 +2781,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1983 + content_length: 1311 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-02-06T13:46:08.342597Z","gateway_networks":[{"address":null,"created_at":"2025-02-06T13:46:16.106202Z","dhcp":{"address":"192.168.1.1","created_at":"2025-02-06T13:46:07.337972Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"0ef9e983-12c1-4a4d-9522-0da204e23193","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-02-06T13:46:07.337972Z","valid_lifetime":"3600s","zone":"nl-ams-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"b0d90017-9561-4e04-a14f-642b796c3d3b","id":"7b30df70-988f-4f93-a566-39c9e031bad5","ipam_config":null,"mac_address":null,"private_network_id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","status":"created","updated_at":"2025-02-06T13:46:16.106202Z","zone":"nl-ams-1"}],"id":"b0d90017-9561-4e04-a14f-642b796c3d3b","ip":{"address":"51.158.186.43","created_at":"2025-02-06T13:46:08.019129Z","gateway_id":"b0d90017-9561-4e04-a14f-642b796c3d3b","id":"4dd6d53b-dbbc-493e-ab3f-4321bce6cc37","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"43-186-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-02-06T13:46:08.019129Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-02-06T13:46:16.336230Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T08:19:08.484649Z","gateway_networks":[{"created_at":"2025-03-24T08:19:14.551023Z","gateway_id":"7b2081fd-5a76-4edc-b281-6458c646918d","id":"77c99056-c673-4496-a073-44e35ce1c9fc","ipam_ip_id":"20e3e50c-a02c-42e9-bace-11b7992f31cd","mac_address":"02:00:00:13:4E:9C","masquerade_enabled":true,"private_network_id":"be233441-59eb-4637-8768-a358f57d5908","push_default_route":true,"status":"ready","updated_at":"2025-03-24T08:19:26.197363Z","zone":"nl-ams-1"}],"id":"7b2081fd-5a76-4edc-b281-6458c646918d","ipv4":{"address":"51.15.86.163","created_at":"2025-03-24T08:19:08.081581Z","gateway_id":"7b2081fd-5a76-4edc-b281-6458c646918d","id":"082691b0-5c14-4c7a-aaaf-1b81cab577c7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"163-86-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T08:19:08.081581Z","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-03-24T08:19:26.424397Z","version":"0.7.3","zone":"nl-ams-1"}' headers: Content-Length: - - "1983" + - "1311" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:46:16 GMT + - Mon, 24 Mar 2025 08:21:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2808,10 +2802,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ce5cb067-0dd4-4403-ba2e-a693327342c4 + - cc23f888-a75d-473f-afa6-509c26663a90 status: 200 OK code: 200 - duration: 48.92225ms + duration: 103.902484ms - id: 57 request: proto: HTTP/1.1 @@ -2827,8 +2821,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/b0d90017-9561-4e04-a14f-642b796c3d3b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateway-networks/77c99056-c673-4496-a073-44e35ce1c9fc method: GET response: proto: HTTP/2.0 @@ -2836,20 +2830,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1983 + content_length: 416 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-02-06T13:46:08.342597Z","gateway_networks":[{"address":null,"created_at":"2025-02-06T13:46:16.106202Z","dhcp":{"address":"192.168.1.1","created_at":"2025-02-06T13:46:07.337972Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"0ef9e983-12c1-4a4d-9522-0da204e23193","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-02-06T13:46:07.337972Z","valid_lifetime":"3600s","zone":"nl-ams-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"b0d90017-9561-4e04-a14f-642b796c3d3b","id":"7b30df70-988f-4f93-a566-39c9e031bad5","ipam_config":null,"mac_address":null,"private_network_id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","status":"created","updated_at":"2025-02-06T13:46:16.106202Z","zone":"nl-ams-1"}],"id":"b0d90017-9561-4e04-a14f-642b796c3d3b","ip":{"address":"51.158.186.43","created_at":"2025-02-06T13:46:08.019129Z","gateway_id":"b0d90017-9561-4e04-a14f-642b796c3d3b","id":"4dd6d53b-dbbc-493e-ab3f-4321bce6cc37","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"43-186-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-02-06T13:46:08.019129Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-02-06T13:46:16.336230Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}' + body: '{"created_at":"2025-03-24T08:19:14.551023Z","gateway_id":"7b2081fd-5a76-4edc-b281-6458c646918d","id":"77c99056-c673-4496-a073-44e35ce1c9fc","ipam_ip_id":"20e3e50c-a02c-42e9-bace-11b7992f31cd","mac_address":"02:00:00:13:4E:9C","masquerade_enabled":true,"private_network_id":"be233441-59eb-4637-8768-a358f57d5908","push_default_route":true,"status":"ready","updated_at":"2025-03-24T08:19:26.197363Z","zone":"nl-ams-1"}' headers: Content-Length: - - "1983" + - "416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:46:21 GMT + - Mon, 24 Mar 2025 08:21:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2857,10 +2851,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed8f4099-b83f-4344-9d41-f9fa9fdf745a + - fab3ff38-88ba-4064-b467-8ad68ee2fc2f status: 200 OK code: 200 - duration: 54.320583ms + duration: 150.664257ms - id: 58 request: proto: HTTP/1.1 @@ -2876,8 +2870,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/b0d90017-9561-4e04-a14f-642b796c3d3b + - 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/rdb/v1/regions/nl-ams/instances/91136575-4b1d-4c79-b240-08afeae48b00 method: GET response: proto: HTTP/2.0 @@ -2885,20 +2879,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2002 + content_length: 1315 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-02-06T13:46:08.342597Z","gateway_networks":[{"address":null,"created_at":"2025-02-06T13:46:16.106202Z","dhcp":{"address":"192.168.1.1","created_at":"2025-02-06T13:46:07.337972Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"0ef9e983-12c1-4a4d-9522-0da204e23193","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-02-06T13:46:07.337972Z","valid_lifetime":"3600s","zone":"nl-ams-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"b0d90017-9561-4e04-a14f-642b796c3d3b","id":"7b30df70-988f-4f93-a566-39c9e031bad5","ipam_config":null,"mac_address":"02:00:00:1C:4B:7C","private_network_id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","status":"configuring","updated_at":"2025-02-06T13:46:22.051553Z","zone":"nl-ams-1"}],"id":"b0d90017-9561-4e04-a14f-642b796c3d3b","ip":{"address":"51.158.186.43","created_at":"2025-02-06T13:46:08.019129Z","gateway_id":"b0d90017-9561-4e04-a14f-642b796c3d3b","id":"4dd6d53b-dbbc-493e-ab3f-4321bce6cc37","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"43-186-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-02-06T13:46:08.019129Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-02-06T13:46:16.336230Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-03-24T08:19:09.337633Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"8543e57e-833b-455c-a2b5-3cc56c7313f0","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"be233441-59eb-4637-8768-a358f57d5908","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-16","id":"91136575-4b1d-4c79-b240-08afeae48b00","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":"bssd","size":10000000000,"type":"bssd"}}' headers: Content-Length: - - "2002" + - "1315" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:46:26 GMT + - Mon, 24 Mar 2025 08:21:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2906,10 +2900,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3ff9ecf5-68c4-4b84-9ac5-9a75f76d11b1 + - 05837c97-2f10-491a-97ea-04e24766f950 status: 200 OK code: 200 - duration: 53.802041ms + duration: 197.795294ms - id: 59 request: proto: HTTP/1.1 @@ -2925,29 +2919,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/b0d90017-9561-4e04-a14f-642b796c3d3b - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateway-networks/77c99056-c673-4496-a073-44e35ce1c9fc + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1992 + content_length: 420 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-02-06T13:46:08.342597Z","gateway_networks":[{"address":null,"created_at":"2025-02-06T13:46:16.106202Z","dhcp":{"address":"192.168.1.1","created_at":"2025-02-06T13:46:07.337972Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"0ef9e983-12c1-4a4d-9522-0da204e23193","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-02-06T13:46:07.337972Z","valid_lifetime":"3600s","zone":"nl-ams-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"b0d90017-9561-4e04-a14f-642b796c3d3b","id":"7b30df70-988f-4f93-a566-39c9e031bad5","ipam_config":null,"mac_address":"02:00:00:1C:4B:7C","private_network_id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","status":"ready","updated_at":"2025-02-06T13:46:26.993886Z","zone":"nl-ams-1"}],"id":"b0d90017-9561-4e04-a14f-642b796c3d3b","ip":{"address":"51.158.186.43","created_at":"2025-02-06T13:46:08.019129Z","gateway_id":"b0d90017-9561-4e04-a14f-642b796c3d3b","id":"4dd6d53b-dbbc-493e-ab3f-4321bce6cc37","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"43-186-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-02-06T13:46:08.019129Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-02-06T13:46:27.195624Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}' + body: '{"created_at":"2025-03-24T08:19:14.551023Z","gateway_id":"7b2081fd-5a76-4edc-b281-6458c646918d","id":"77c99056-c673-4496-a073-44e35ce1c9fc","ipam_ip_id":"20e3e50c-a02c-42e9-bace-11b7992f31cd","mac_address":"02:00:00:13:4E:9C","masquerade_enabled":true,"private_network_id":"be233441-59eb-4637-8768-a358f57d5908","push_default_route":true,"status":"detaching","updated_at":"2025-03-24T08:21:47.555682Z","zone":"nl-ams-1"}' headers: Content-Length: - - "1992" + - "420" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:46:31 GMT + - Mon, 24 Mar 2025 08:21:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2955,10 +2949,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d37b08a1-fefe-4498-a391-2a7e8cfe7554 + - 547f8357-659f-4a06-9e40-83e994973cd8 status: 200 OK code: 200 - duration: 45.97825ms + duration: 207.027709ms - id: 60 request: proto: HTTP/1.1 @@ -2974,8 +2968,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateway-networks/7b30df70-988f-4f93-a566-39c9e031bad5 + - 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/rdb/v1/regions/nl-ams/instances/91136575-4b1d-4c79-b240-08afeae48b00 method: GET response: proto: HTTP/2.0 @@ -2983,20 +2977,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 996 + content_length: 1315 uncompressed: false - body: '{"address":null,"created_at":"2025-02-06T13:46:16.106202Z","dhcp":{"address":"192.168.1.1","created_at":"2025-02-06T13:46:07.337972Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"0ef9e983-12c1-4a4d-9522-0da204e23193","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-02-06T13:46:07.337972Z","valid_lifetime":"3600s","zone":"nl-ams-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"b0d90017-9561-4e04-a14f-642b796c3d3b","id":"7b30df70-988f-4f93-a566-39c9e031bad5","ipam_config":null,"mac_address":"02:00:00:1C:4B:7C","private_network_id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","status":"ready","updated_at":"2025-02-06T13:46:26.993886Z","zone":"nl-ams-1"}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-03-24T08:19:09.337633Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"8543e57e-833b-455c-a2b5-3cc56c7313f0","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"be233441-59eb-4637-8768-a358f57d5908","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-16","id":"91136575-4b1d-4c79-b240-08afeae48b00","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":"bssd","size":10000000000,"type":"bssd"}}' headers: Content-Length: - - "996" + - "1315" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:46:31 GMT + - Mon, 24 Mar 2025 08:21:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3004,10 +2998,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6c548937-1bcc-4135-b625-f04e53ccd4b3 + - 76fe5b3e-d9ca-4670-8794-7828bea39c91 status: 200 OK code: 200 - duration: 81.519625ms + duration: 243.179467ms - id: 61 request: proto: HTTP/1.1 @@ -3023,8 +3017,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateway-networks/7b30df70-988f-4f93-a566-39c9e031bad5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateway-networks/77c99056-c673-4496-a073-44e35ce1c9fc method: GET response: proto: HTTP/2.0 @@ -3032,20 +3026,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 996 + content_length: 420 uncompressed: false - body: '{"address":null,"created_at":"2025-02-06T13:46:16.106202Z","dhcp":{"address":"192.168.1.1","created_at":"2025-02-06T13:46:07.337972Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"0ef9e983-12c1-4a4d-9522-0da204e23193","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-02-06T13:46:07.337972Z","valid_lifetime":"3600s","zone":"nl-ams-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"b0d90017-9561-4e04-a14f-642b796c3d3b","id":"7b30df70-988f-4f93-a566-39c9e031bad5","ipam_config":null,"mac_address":"02:00:00:1C:4B:7C","private_network_id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","status":"ready","updated_at":"2025-02-06T13:46:26.993886Z","zone":"nl-ams-1"}' + body: '{"created_at":"2025-03-24T08:19:14.551023Z","gateway_id":"7b2081fd-5a76-4edc-b281-6458c646918d","id":"77c99056-c673-4496-a073-44e35ce1c9fc","ipam_ip_id":"20e3e50c-a02c-42e9-bace-11b7992f31cd","mac_address":"02:00:00:13:4E:9C","masquerade_enabled":true,"private_network_id":"be233441-59eb-4637-8768-a358f57d5908","push_default_route":true,"status":"detaching","updated_at":"2025-03-24T08:21:47.555682Z","zone":"nl-ams-1"}' headers: Content-Length: - - "996" + - "420" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:46:31 GMT + - Mon, 24 Mar 2025 08:21:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3053,48 +3047,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a792c60-0909-4043-b728-bfe925097277 + - 373be29f-61a9-461c-82a3-81d911439b4f status: 200 OK code: 200 - duration: 82.143875ms + duration: 142.090572ms - id: 62 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.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/b0d90017-9561-4e04-a14f-642b796c3d3b - method: GET + - 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/rdb/v1/regions/nl-ams/instances/91136575-4b1d-4c79-b240-08afeae48b00 + method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1992 + content_length: 1315 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-02-06T13:46:08.342597Z","gateway_networks":[{"address":null,"created_at":"2025-02-06T13:46:16.106202Z","dhcp":{"address":"192.168.1.1","created_at":"2025-02-06T13:46:07.337972Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"0ef9e983-12c1-4a4d-9522-0da204e23193","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-02-06T13:46:07.337972Z","valid_lifetime":"3600s","zone":"nl-ams-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"b0d90017-9561-4e04-a14f-642b796c3d3b","id":"7b30df70-988f-4f93-a566-39c9e031bad5","ipam_config":null,"mac_address":"02:00:00:1C:4B:7C","private_network_id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","status":"ready","updated_at":"2025-02-06T13:46:26.993886Z","zone":"nl-ams-1"}],"id":"b0d90017-9561-4e04-a14f-642b796c3d3b","ip":{"address":"51.158.186.43","created_at":"2025-02-06T13:46:08.019129Z","gateway_id":"b0d90017-9561-4e04-a14f-642b796c3d3b","id":"4dd6d53b-dbbc-493e-ab3f-4321bce6cc37","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"43-186-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-02-06T13:46:08.019129Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-02-06T13:46:27.195624Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-03-24T08:19:09.337633Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"8543e57e-833b-455c-a2b5-3cc56c7313f0","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"be233441-59eb-4637-8768-a358f57d5908","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-16","id":"91136575-4b1d-4c79-b240-08afeae48b00","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":"bssd","size":10000000000,"type":"bssd"}}' headers: Content-Length: - - "1992" + - "1315" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:46:31 GMT + - Mon, 24 Mar 2025 08:21:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3102,10 +3098,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ce02d28-f1d8-4372-bb01-5ac1b1583013 + - 15e42426-2174-41c1-b0e2-e5b165517df0 status: 200 OK code: 200 - duration: 48.157958ms + duration: 217.352531ms - id: 63 request: proto: HTTP/1.1 @@ -3121,8 +3117,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateway-networks/7b30df70-988f-4f93-a566-39c9e031bad5 + - 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/rdb/v1/regions/nl-ams/instances/91136575-4b1d-4c79-b240-08afeae48b00 method: GET response: proto: HTTP/2.0 @@ -3130,20 +3126,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 996 + content_length: 1315 uncompressed: false - body: '{"address":null,"created_at":"2025-02-06T13:46:16.106202Z","dhcp":{"address":"192.168.1.1","created_at":"2025-02-06T13:46:07.337972Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"0ef9e983-12c1-4a4d-9522-0da204e23193","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-02-06T13:46:07.337972Z","valid_lifetime":"3600s","zone":"nl-ams-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"b0d90017-9561-4e04-a14f-642b796c3d3b","id":"7b30df70-988f-4f93-a566-39c9e031bad5","ipam_config":null,"mac_address":"02:00:00:1C:4B:7C","private_network_id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","status":"ready","updated_at":"2025-02-06T13:46:26.993886Z","zone":"nl-ams-1"}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-03-24T08:19:09.337633Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"8543e57e-833b-455c-a2b5-3cc56c7313f0","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"be233441-59eb-4637-8768-a358f57d5908","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-16","id":"91136575-4b1d-4c79-b240-08afeae48b00","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":"bssd","size":10000000000,"type":"bssd"}}' headers: Content-Length: - - "996" + - "1315" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:46:31 GMT + - Mon, 24 Mar 2025 08:21:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3151,10 +3147,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1a239a7c-c9bb-4c23-9e62-ed2aa92fd21e + - 6465992b-e718-4678-abac-6d37d198b4d9 status: 200 OK code: 200 - duration: 142.006375ms + duration: 196.680765ms - id: 64 request: proto: HTTP/1.1 @@ -3170,29 +3166,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/b0d90017-9561-4e04-a14f-642b796c3d3b - method: GET + - 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/rdb/v1/regions/nl-ams/endpoints/8543e57e-833b-455c-a2b5-3cc56c7313f0 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1992 + content_length: 0 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-02-06T13:46:08.342597Z","gateway_networks":[{"address":null,"created_at":"2025-02-06T13:46:16.106202Z","dhcp":{"address":"192.168.1.1","created_at":"2025-02-06T13:46:07.337972Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"0ef9e983-12c1-4a4d-9522-0da204e23193","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-02-06T13:46:07.337972Z","valid_lifetime":"3600s","zone":"nl-ams-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"b0d90017-9561-4e04-a14f-642b796c3d3b","id":"7b30df70-988f-4f93-a566-39c9e031bad5","ipam_config":null,"mac_address":"02:00:00:1C:4B:7C","private_network_id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","status":"ready","updated_at":"2025-02-06T13:46:26.993886Z","zone":"nl-ams-1"}],"id":"b0d90017-9561-4e04-a14f-642b796c3d3b","ip":{"address":"51.158.186.43","created_at":"2025-02-06T13:46:08.019129Z","gateway_id":"b0d90017-9561-4e04-a14f-642b796c3d3b","id":"4dd6d53b-dbbc-493e-ab3f-4321bce6cc37","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"43-186-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-02-06T13:46:08.019129Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-02-06T13:46:27.195624Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}' + body: "" headers: - Content-Length: - - "1992" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:46:31 GMT + - Mon, 24 Mar 2025 08:21:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3200,10 +3194,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 130016e2-e7eb-4e27-a775-93bc6530d19e - status: 200 OK - code: 200 - duration: 46.998167ms + - 7871435c-ca26-4303-a5cd-a05e16636a93 + status: 204 No Content + code: 204 + duration: 237.015561ms - id: 65 request: proto: HTTP/1.1 @@ -3219,8 +3213,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/b0d90017-9561-4e04-a14f-642b796c3d3b + - 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/rdb/v1/regions/nl-ams/instances/91136575-4b1d-4c79-b240-08afeae48b00 method: GET response: proto: HTTP/2.0 @@ -3228,20 +3222,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1992 + content_length: 1321 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-02-06T13:46:08.342597Z","gateway_networks":[{"address":null,"created_at":"2025-02-06T13:46:16.106202Z","dhcp":{"address":"192.168.1.1","created_at":"2025-02-06T13:46:07.337972Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"0ef9e983-12c1-4a4d-9522-0da204e23193","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-02-06T13:46:07.337972Z","valid_lifetime":"3600s","zone":"nl-ams-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"b0d90017-9561-4e04-a14f-642b796c3d3b","id":"7b30df70-988f-4f93-a566-39c9e031bad5","ipam_config":null,"mac_address":"02:00:00:1C:4B:7C","private_network_id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","status":"ready","updated_at":"2025-02-06T13:46:26.993886Z","zone":"nl-ams-1"}],"id":"b0d90017-9561-4e04-a14f-642b796c3d3b","ip":{"address":"51.158.186.43","created_at":"2025-02-06T13:46:08.019129Z","gateway_id":"b0d90017-9561-4e04-a14f-642b796c3d3b","id":"4dd6d53b-dbbc-493e-ab3f-4321bce6cc37","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"43-186-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-02-06T13:46:08.019129Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-02-06T13:46:27.195624Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-03-24T08:19:09.337633Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"8543e57e-833b-455c-a2b5-3cc56c7313f0","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"be233441-59eb-4637-8768-a358f57d5908","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-16","id":"91136575-4b1d-4c79-b240-08afeae48b00","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":"bssd","size":10000000000,"type":"bssd"}}' headers: Content-Length: - - "1992" + - "1321" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:46:32 GMT + - Mon, 24 Mar 2025 08:21:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3249,50 +3243,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a758bb4-f2da-40fd-aad9-a72a99d5cd7f + - bdaf5c34-58b3-413b-ab26-c7b503b0a82a status: 200 OK code: 200 - duration: 54.79475ms + duration: 405.513479ms - id: 66 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 135 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"gateway_id":"b0d90017-9561-4e04-a14f-642b796c3d3b","public_port":42,"private_ip":"192.168.1.1","private_port":5432,"protocol":"both"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/pat-rules - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateway-networks/77c99056-c673-4496-a073-44e35ce1c9fc + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 291 + content_length: 136 uncompressed: false - body: '{"created_at":"2025-02-06T13:46:32.103477Z","gateway_id":"b0d90017-9561-4e04-a14f-642b796c3d3b","id":"36c08dfe-569a-4088-8bd7-9f38f9d223e5","private_ip":"192.168.1.1","private_port":5432,"protocol":"both","public_port":42,"updated_at":"2025-02-06T13:46:32.103477Z","zone":"nl-ams-1"}' + body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"77c99056-c673-4496-a073-44e35ce1c9fc","type":"not_found"}' headers: Content-Length: - - "291" + - "136" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:46:32 GMT + - Mon, 24 Mar 2025 08:21:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3300,10 +3292,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e77e5399-e262-4948-a49e-52ea1eafd783 - status: 200 OK - code: 200 - duration: 156.041583ms + - d09a0eb2-6f45-4b22-80a3-a0776c21b76d + status: 404 Not Found + code: 404 + duration: 106.062549ms - id: 67 request: proto: HTTP/1.1 @@ -3319,8 +3311,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/b0d90017-9561-4e04-a14f-642b796c3d3b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/7b2081fd-5a76-4edc-b281-6458c646918d method: GET response: proto: HTTP/2.0 @@ -3328,20 +3320,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1992 + content_length: 895 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-02-06T13:46:08.342597Z","gateway_networks":[{"address":null,"created_at":"2025-02-06T13:46:16.106202Z","dhcp":{"address":"192.168.1.1","created_at":"2025-02-06T13:46:07.337972Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"0ef9e983-12c1-4a4d-9522-0da204e23193","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-02-06T13:46:07.337972Z","valid_lifetime":"3600s","zone":"nl-ams-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"b0d90017-9561-4e04-a14f-642b796c3d3b","id":"7b30df70-988f-4f93-a566-39c9e031bad5","ipam_config":null,"mac_address":"02:00:00:1C:4B:7C","private_network_id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","status":"ready","updated_at":"2025-02-06T13:46:26.993886Z","zone":"nl-ams-1"}],"id":"b0d90017-9561-4e04-a14f-642b796c3d3b","ip":{"address":"51.158.186.43","created_at":"2025-02-06T13:46:08.019129Z","gateway_id":"b0d90017-9561-4e04-a14f-642b796c3d3b","id":"4dd6d53b-dbbc-493e-ab3f-4321bce6cc37","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"43-186-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-02-06T13:46:08.019129Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-02-06T13:46:27.195624Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T08:19:08.484649Z","gateway_networks":[],"id":"7b2081fd-5a76-4edc-b281-6458c646918d","ipv4":{"address":"51.15.86.163","created_at":"2025-03-24T08:19:08.081581Z","gateway_id":"7b2081fd-5a76-4edc-b281-6458c646918d","id":"082691b0-5c14-4c7a-aaaf-1b81cab577c7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"163-86-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T08:19:08.081581Z","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-03-24T08:19:26.424397Z","version":"0.7.3","zone":"nl-ams-1"}' headers: Content-Length: - - "1992" + - "895" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:46:32 GMT + - Mon, 24 Mar 2025 08:21:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3349,10 +3341,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a41ff927-472d-4c44-88ca-0a44cbd67830 + - 96b8ef43-7ef3-4744-893f-5d29e8745a9c status: 200 OK code: 200 - duration: 46.934333ms + duration: 117.499618ms - id: 68 request: proto: HTTP/1.1 @@ -3368,29 +3360,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/pat-rules/36c08dfe-569a-4088-8bd7-9f38f9d223e5 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/7b2081fd-5a76-4edc-b281-6458c646918d?delete_ip=false + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 291 + content_length: 896 uncompressed: false - body: '{"created_at":"2025-02-06T13:46:32.103477Z","gateway_id":"b0d90017-9561-4e04-a14f-642b796c3d3b","id":"36c08dfe-569a-4088-8bd7-9f38f9d223e5","private_ip":"192.168.1.1","private_port":5432,"protocol":"both","public_port":42,"updated_at":"2025-02-06T13:46:32.103477Z","zone":"nl-ams-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T08:19:08.484649Z","gateway_networks":[],"id":"7b2081fd-5a76-4edc-b281-6458c646918d","ipv4":{"address":"51.15.86.163","created_at":"2025-03-24T08:19:08.081581Z","gateway_id":"7b2081fd-5a76-4edc-b281-6458c646918d","id":"082691b0-5c14-4c7a-aaaf-1b81cab577c7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"163-86-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T08:19:08.081581Z","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-03-24T08:21:53.084895Z","version":"0.7.3","zone":"nl-ams-1"}' headers: Content-Length: - - "291" + - "896" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:46:32 GMT + - Mon, 24 Mar 2025 08:21:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3398,10 +3390,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6ae26cbf-7abe-44d0-95ee-078871bb1d6f + - ef81dad7-0e8e-4a7e-850c-301eff09b2ff status: 200 OK code: 200 - duration: 47.628166ms + duration: 161.201586ms - id: 69 request: proto: HTTP/1.1 @@ -3417,8 +3409,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/3876750e-71f5-49c6-a89d-ea83d6b6f18e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/7b2081fd-5a76-4edc-b281-6458c646918d method: GET response: proto: HTTP/2.0 @@ -3426,20 +3418,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1359 + content_length: 128 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-02-06T13:41:24.397115Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"a92094cc-9294-4bbf-947e-1d100db454c5","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"3876750e-71f5-49c6-a89d-ea83d6b6f18e","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","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":"bssd","size":10000000000,"type":"bssd"}}' + body: '{"message":"resource is not found","resource":"gateway","resource_id":"7b2081fd-5a76-4edc-b281-6458c646918d","type":"not_found"}' headers: Content-Length: - - "1359" + - "128" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:46:32 GMT + - Mon, 24 Mar 2025 08:21:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3447,10 +3439,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c0203499-8392-4f7d-8e3d-e92fa27a6d82 - status: 200 OK - code: 200 - duration: 147.613125ms + - a6647a55-b68a-46ee-8450-cefef3c9f1b3 + status: 404 Not Found + code: 404 + duration: 98.976414ms - id: 70 request: proto: HTTP/1.1 @@ -3466,29 +3458,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/dhcps/0ef9e983-12c1-4a4d-9522-0da204e23193 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/ips/082691b0-5c14-4c7a-aaaf-1b81cab577c7 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 586 + content_length: 0 uncompressed: false - body: '{"address":"192.168.1.1","created_at":"2025-02-06T13:46:07.337972Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"0ef9e983-12c1-4a4d-9522-0da204e23193","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-02-06T13:46:07.337972Z","valid_lifetime":"3600s","zone":"nl-ams-1"}' + body: "" headers: - Content-Length: - - "586" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:46:33 GMT + - Mon, 24 Mar 2025 08:21:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3496,10 +3486,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5464659a-198c-44b4-ade7-d4ce200c090f - status: 200 OK - code: 200 - duration: 51.436583ms + - 3d313ef3-0521-42fd-b342-9afeb88829cc + status: 204 No Content + code: 204 + duration: 865.232484ms - id: 71 request: proto: HTTP/1.1 @@ -3515,8 +3505,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/ips/4dd6d53b-dbbc-493e-ab3f-4321bce6cc37 + - 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/rdb/v1/regions/nl-ams/instances/91136575-4b1d-4c79-b240-08afeae48b00 method: GET response: proto: HTTP/2.0 @@ -3524,20 +3514,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 401 + content_length: 1066 uncompressed: false - body: '{"address":"51.158.186.43","created_at":"2025-02-06T13:46:08.019129Z","gateway_id":"b0d90017-9561-4e04-a14f-642b796c3d3b","id":"4dd6d53b-dbbc-493e-ab3f-4321bce6cc37","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"43-186-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-02-06T13:46:08.019129Z","zone":"nl-ams-1"}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-03-24T08:19:09.337633Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[],"engine":"PostgreSQL-16","id":"91136575-4b1d-4c79-b240-08afeae48b00","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":"bssd","size":10000000000,"type":"bssd"}}' headers: Content-Length: - - "401" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:46:33 GMT + - Mon, 24 Mar 2025 08:22:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3545,10 +3535,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6a79ae46-e5a0-4d58-ac4e-2d6eac4bbbb6 + - 686fa5d4-e157-4a8e-8a94-52e29bb0b65f status: 200 OK code: 200 - duration: 54.514208ms + duration: 240.295989ms - id: 72 request: proto: HTTP/1.1 @@ -3564,8 +3554,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff + - 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/rdb/v1/regions/nl-ams/instances/91136575-4b1d-4c79-b240-08afeae48b00 method: GET response: proto: HTTP/2.0 @@ -3573,20 +3563,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1059 + content_length: 1066 uncompressed: false - body: '{"created_at":"2025-02-06T13:41:20.570812Z","dhcp_enabled":true,"id":"31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff","name":"my_private_network_to_be_replaced","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"nl-ams","subnets":[{"created_at":"2025-02-06T13:41:20.570812Z","id":"5adcafd5-04f6-45af-9ec1-fdd92d6ff03a","private_network_id":"31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-02-06T13:41:20.570812Z","vpc_id":"5976fd03-14dd-4892-a481-034469de59c6"},{"created_at":"2025-02-06T13:41:20.570812Z","id":"90f0b514-8d8b-4dff-9c2f-a99f2598ae51","private_network_id":"31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5c:d510:d730:e822::/64","updated_at":"2025-02-06T13:41:20.570812Z","vpc_id":"5976fd03-14dd-4892-a481-034469de59c6"}],"tags":[],"updated_at":"2025-02-06T13:45:00.341206Z","vpc_id":"5976fd03-14dd-4892-a481-034469de59c6"}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-03-24T08:19:09.337633Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[],"engine":"PostgreSQL-16","id":"91136575-4b1d-4c79-b240-08afeae48b00","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":"bssd","size":10000000000,"type":"bssd"}}' headers: Content-Length: - - "1059" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:46:33 GMT + - Mon, 24 Mar 2025 08:22:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3594,10 +3584,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2beb4e2b-d88d-409c-bcc3-3d86898b794d + - f9ce98e2-3f61-43ce-aeac-f169580d54dd status: 200 OK code: 200 - duration: 52.746958ms + duration: 212.743995ms - id: 73 request: proto: HTTP/1.1 @@ -3613,8 +3603,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/d9e77bff-80da-4a0f-af19-50f6a6351ee3 + - 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/rdb/v1/regions/nl-ams/instances/91136575-4b1d-4c79-b240-08afeae48b00/certificate method: GET response: proto: HTTP/2.0 @@ -3622,20 +3612,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1045 + content_length: 1735 uncompressed: false - body: '{"created_at":"2025-02-06T13:45:00.340948Z","dhcp_enabled":true,"id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","name":"my_private_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"nl-ams","subnets":[{"created_at":"2025-02-06T13:45:00.340948Z","id":"1700ae48-92a5-4410-926e-b2eedd472c34","private_network_id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"192.168.1.0/24","updated_at":"2025-02-06T13:46:14.109279Z","vpc_id":"d3806592-e166-472e-92e3-56a6a33fe554"},{"created_at":"2025-02-06T13:45:00.340948Z","id":"d2fb97b4-b81c-469c-b125-31c5bf67d870","private_network_id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5c:d510:d730:9d04::/64","updated_at":"2025-02-06T13:46:14.115560Z","vpc_id":"d3806592-e166-472e-92e3-56a6a33fe554"}],"tags":[],"updated_at":"2025-02-06T13:46:23.252342Z","vpc_id":"d3806592-e166-472e-92e3-56a6a33fe554"}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURaakNDQWs2Z0F3SUJBZ0lVRjVEblNTUDEyS0V6cWV3dzRXb1FyUkk2amQwd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1dERUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RmpBVUJnTlZCQU1NRFRFNU1pNHhOamd1TVM0eU5UUXdIaGNOCk1qVXdNekkwTURneU1EQTVXaGNOTXpVd016SXlNRGd5TURBNVdqQllNUXN3Q1FZRFZRUUdFd0pHVWpFT01Bd0cKQTFVRUNBd0ZVR0Z5YVhNeERqQU1CZ05WQkFjTUJWQmhjbWx6TVJFd0R3WURWUVFLREFoVFkyRnNaWGRoZVRFVwpNQlFHQTFVRUF3d05NVGt5TGpFMk9DNHhMakkxTkRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDCkFRb0NnZ0VCQU9Tc0ZNcXlvTXJRNHUycGtrZkkwMkZOVDFrVS9rN2xOWXVEOG5yMDdybFd4cUJUMlUwM2Y0bnkKSTVyYStqTnhPdW0wdGsxanpzZWw4WXlVb2JjQUxzSlNrUzhTT2Q5MjRsUDQzUktUV0xhUWJHY0hDcFgrS0NrUgpsb0JxQllLK1YzUUk3UXZacFMxVmphZEo3Z0p5K3UyaytjMDZXOVhjNTNDRmFGWkE0SnBQakQ0Y0Q4eFlnNmw3Cm10N1dRSW5EU0JSOEJzOER4Q3BCUyszcWZqSnFoV0ZaWFNYUmhHNytqRHFZVkM3WTU3Y1JDcGdQblFiRVpUVjQKL0hqVDFJQU1FbmxJTXNmcjdBZFo5UnpkNmdyYnZCUUNlNzNhcjM3cDl3WUY5U1hncmJEdGFqOWl5d3VDYlN0TApwU25uTFMvUkhSUHpJVExLbkhiNnlXNTdqTEdCRTlrQ0F3RUFBYU1vTUNZd0pBWURWUjBSQkIwd0c0SU5NVGt5CkxqRTJPQzR4TGpJMU5JY0VNdzltYTRjRXdLZ0IvakFOQmdrcWhraUc5dzBCQVFzRkFBT0NBUUVBb3N0bnQ4cloKcS9oWWNNWDBBU3AremJqTjdISXF1SlVVVytNYlVoMlBpSFVvTHc2MEw5SjVWRHVEeDVXQmg3U2puWjBTT3d4MApmalhiQVdVQmZEM3lMUW1lYkt4Y3hTYVU5SFUrdyt1M25salhUbytjbUJXT0pFcmlHNXJXcHBTMWRESHM3VDFMClBTNE9EeWdMNXJDNXdDYWcxdXVhbUZTQkZCLytoVGU5Qzd0N2NGMEFuNmhYQWJCNllsVEk4YWo2TDlFWTRtMm0KV2tmRDd1cGc5TTN2dEZhVXFBVFFnYjZWL0FlRFpEem5wbCtqV0RMR3VjTUs3bElPSG5jT2I2TDRhamRDTUhHMApTaERwMnA3Q1o5eTdEVGxMTitQMlJJMERCd2xucmRUMkxKU2l1Ulh5eWxKUmd3TE1icGxqTUJ3cDFpWWdPU1BRCjVRN1luYUhUQkJtejd3PT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - - "1045" + - "1735" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:46:33 GMT + - Mon, 24 Mar 2025 08:22:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3643,10 +3633,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b2e249e6-8cb6-4e04-9db3-f0d1a568a03b + - 76b9b8ff-1234-4f19-a669-c0b8a65e7a4e status: 200 OK code: 200 - duration: 54.263583ms + duration: 339.598072ms - id: 74 request: proto: HTTP/1.1 @@ -3662,8 +3652,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/b0d90017-9561-4e04-a14f-642b796c3d3b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/vpcs/3c716461-9ad4-4913-8eb7-6ca375c1079d method: GET response: proto: HTTP/2.0 @@ -3671,20 +3661,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1992 + content_length: 352 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-02-06T13:46:08.342597Z","gateway_networks":[{"address":null,"created_at":"2025-02-06T13:46:16.106202Z","dhcp":{"address":"192.168.1.1","created_at":"2025-02-06T13:46:07.337972Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"0ef9e983-12c1-4a4d-9522-0da204e23193","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-02-06T13:46:07.337972Z","valid_lifetime":"3600s","zone":"nl-ams-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"b0d90017-9561-4e04-a14f-642b796c3d3b","id":"7b30df70-988f-4f93-a566-39c9e031bad5","ipam_config":null,"mac_address":"02:00:00:1C:4B:7C","private_network_id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","status":"ready","updated_at":"2025-02-06T13:46:26.993886Z","zone":"nl-ams-1"}],"id":"b0d90017-9561-4e04-a14f-642b796c3d3b","ip":{"address":"51.158.186.43","created_at":"2025-02-06T13:46:08.019129Z","gateway_id":"b0d90017-9561-4e04-a14f-642b796c3d3b","id":"4dd6d53b-dbbc-493e-ab3f-4321bce6cc37","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"43-186-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-02-06T13:46:08.019129Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-02-06T13:46:27.195624Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}' + body: '{"created_at":"2025-03-24T08:19:07.405345Z","id":"3c716461-9ad4-4913-8eb7-6ca375c1079d","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-03-24T08:19:07.405345Z"}' headers: Content-Length: - - "1992" + - "352" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:46:33 GMT + - Mon, 24 Mar 2025 08:22:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3692,10 +3682,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b8d862c5-bec1-45f3-8714-e56d7ddc2593 + - 5bc89e6c-fdd8-4983-83c4-92ccd51d6b00 status: 200 OK code: 200 - duration: 45.053ms + duration: 121.767556ms - id: 75 request: proto: HTTP/1.1 @@ -3711,8 +3701,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateway-networks/7b30df70-988f-4f93-a566-39c9e031bad5 + - 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/rdb/v1/regions/nl-ams/instances/91136575-4b1d-4c79-b240-08afeae48b00 method: GET response: proto: HTTP/2.0 @@ -3720,20 +3710,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 996 + content_length: 1066 uncompressed: false - body: '{"address":null,"created_at":"2025-02-06T13:46:16.106202Z","dhcp":{"address":"192.168.1.1","created_at":"2025-02-06T13:46:07.337972Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"0ef9e983-12c1-4a4d-9522-0da204e23193","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-02-06T13:46:07.337972Z","valid_lifetime":"3600s","zone":"nl-ams-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"b0d90017-9561-4e04-a14f-642b796c3d3b","id":"7b30df70-988f-4f93-a566-39c9e031bad5","ipam_config":null,"mac_address":"02:00:00:1C:4B:7C","private_network_id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","status":"ready","updated_at":"2025-02-06T13:46:26.993886Z","zone":"nl-ams-1"}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-03-24T08:19:09.337633Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[],"engine":"PostgreSQL-16","id":"91136575-4b1d-4c79-b240-08afeae48b00","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":"bssd","size":10000000000,"type":"bssd"}}' headers: Content-Length: - - "996" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:46:33 GMT + - Mon, 24 Mar 2025 08:22:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3741,10 +3731,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 95a48f64-8b82-4d38-9b71-747165294260 + - 8d2817ed-0144-4a2a-b44b-39677db1f133 status: 200 OK code: 200 - duration: 86.037083ms + duration: 181.367196ms - id: 76 request: proto: HTTP/1.1 @@ -3760,8 +3750,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/b0d90017-9561-4e04-a14f-642b796c3d3b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/be233441-59eb-4637-8768-a358f57d5908 method: GET response: proto: HTTP/2.0 @@ -3769,20 +3759,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1992 + content_length: 1022 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-02-06T13:46:08.342597Z","gateway_networks":[{"address":null,"created_at":"2025-02-06T13:46:16.106202Z","dhcp":{"address":"192.168.1.1","created_at":"2025-02-06T13:46:07.337972Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"0ef9e983-12c1-4a4d-9522-0da204e23193","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-02-06T13:46:07.337972Z","valid_lifetime":"3600s","zone":"nl-ams-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"b0d90017-9561-4e04-a14f-642b796c3d3b","id":"7b30df70-988f-4f93-a566-39c9e031bad5","ipam_config":null,"mac_address":"02:00:00:1C:4B:7C","private_network_id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","status":"ready","updated_at":"2025-02-06T13:46:26.993886Z","zone":"nl-ams-1"}],"id":"b0d90017-9561-4e04-a14f-642b796c3d3b","ip":{"address":"51.158.186.43","created_at":"2025-02-06T13:46:08.019129Z","gateway_id":"b0d90017-9561-4e04-a14f-642b796c3d3b","id":"4dd6d53b-dbbc-493e-ab3f-4321bce6cc37","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"43-186-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-02-06T13:46:08.019129Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-02-06T13:46:27.195624Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}' + body: '{"created_at":"2025-03-24T08:19:07.815832Z","dhcp_enabled":true,"id":"be233441-59eb-4637-8768-a358f57d5908","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-03-24T08:19:07.815832Z","id":"cfa5097a-e710-4b44-b848-1190c9c17444","private_network_id":"be233441-59eb-4637-8768-a358f57d5908","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"192.168.1.0/24","updated_at":"2025-03-24T08:19:07.815832Z","vpc_id":"3c716461-9ad4-4913-8eb7-6ca375c1079d"},{"created_at":"2025-03-24T08:19:07.815832Z","id":"76035f22-317b-4bd7-8368-8ec0f38d1baa","private_network_id":"be233441-59eb-4637-8768-a358f57d5908","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd2c:2ff0:469a:3715::/64","updated_at":"2025-03-24T08:19:07.815832Z","vpc_id":"3c716461-9ad4-4913-8eb7-6ca375c1079d"}],"tags":[],"updated_at":"2025-03-24T08:21:47.781318Z","vpc_id":"3c716461-9ad4-4913-8eb7-6ca375c1079d"}' headers: Content-Length: - - "1992" + - "1022" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:46:33 GMT + - Mon, 24 Mar 2025 08:22:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3790,10 +3780,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 36f04e9b-61f1-4548-b59c-355515e7f543 + - 668003e6-4435-4c98-94f4-05137199504d status: 200 OK code: 200 - duration: 54.781041ms + duration: 143.810712ms - id: 77 request: proto: HTTP/1.1 @@ -3809,8 +3799,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/3876750e-71f5-49c6-a89d-ea83d6b6f18e + - 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/rdb/v1/regions/nl-ams/instances/91136575-4b1d-4c79-b240-08afeae48b00/certificate method: GET response: proto: HTTP/2.0 @@ -3818,20 +3808,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1359 + content_length: 1735 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-02-06T13:41:24.397115Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"a92094cc-9294-4bbf-947e-1d100db454c5","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"3876750e-71f5-49c6-a89d-ea83d6b6f18e","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","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":"bssd","size":10000000000,"type":"bssd"}}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURaakNDQWs2Z0F3SUJBZ0lVRjVEblNTUDEyS0V6cWV3dzRXb1FyUkk2amQwd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1dERUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RmpBVUJnTlZCQU1NRFRFNU1pNHhOamd1TVM0eU5UUXdIaGNOCk1qVXdNekkwTURneU1EQTVXaGNOTXpVd016SXlNRGd5TURBNVdqQllNUXN3Q1FZRFZRUUdFd0pHVWpFT01Bd0cKQTFVRUNBd0ZVR0Z5YVhNeERqQU1CZ05WQkFjTUJWQmhjbWx6TVJFd0R3WURWUVFLREFoVFkyRnNaWGRoZVRFVwpNQlFHQTFVRUF3d05NVGt5TGpFMk9DNHhMakkxTkRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDCkFRb0NnZ0VCQU9Tc0ZNcXlvTXJRNHUycGtrZkkwMkZOVDFrVS9rN2xOWXVEOG5yMDdybFd4cUJUMlUwM2Y0bnkKSTVyYStqTnhPdW0wdGsxanpzZWw4WXlVb2JjQUxzSlNrUzhTT2Q5MjRsUDQzUktUV0xhUWJHY0hDcFgrS0NrUgpsb0JxQllLK1YzUUk3UXZacFMxVmphZEo3Z0p5K3UyaytjMDZXOVhjNTNDRmFGWkE0SnBQakQ0Y0Q4eFlnNmw3Cm10N1dRSW5EU0JSOEJzOER4Q3BCUyszcWZqSnFoV0ZaWFNYUmhHNytqRHFZVkM3WTU3Y1JDcGdQblFiRVpUVjQKL0hqVDFJQU1FbmxJTXNmcjdBZFo5UnpkNmdyYnZCUUNlNzNhcjM3cDl3WUY5U1hncmJEdGFqOWl5d3VDYlN0TApwU25uTFMvUkhSUHpJVExLbkhiNnlXNTdqTEdCRTlrQ0F3RUFBYU1vTUNZd0pBWURWUjBSQkIwd0c0SU5NVGt5CkxqRTJPQzR4TGpJMU5JY0VNdzltYTRjRXdLZ0IvakFOQmdrcWhraUc5dzBCQVFzRkFBT0NBUUVBb3N0bnQ4cloKcS9oWWNNWDBBU3AremJqTjdISXF1SlVVVytNYlVoMlBpSFVvTHc2MEw5SjVWRHVEeDVXQmg3U2puWjBTT3d4MApmalhiQVdVQmZEM3lMUW1lYkt4Y3hTYVU5SFUrdyt1M25salhUbytjbUJXT0pFcmlHNXJXcHBTMWRESHM3VDFMClBTNE9EeWdMNXJDNXdDYWcxdXVhbUZTQkZCLytoVGU5Qzd0N2NGMEFuNmhYQWJCNllsVEk4YWo2TDlFWTRtMm0KV2tmRDd1cGc5TTN2dEZhVXFBVFFnYjZWL0FlRFpEem5wbCtqV0RMR3VjTUs3bElPSG5jT2I2TDRhamRDTUhHMApTaERwMnA3Q1o5eTdEVGxMTitQMlJJMERCd2xucmRUMkxKU2l1Ulh5eWxKUmd3TE1icGxqTUJ3cDFpWWdPU1BRCjVRN1luYUhUQkJtejd3PT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - - "1359" + - "1735" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:46:33 GMT + - Mon, 24 Mar 2025 08:22:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3839,10 +3829,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 83e76012-d59d-40c5-a3c5-df56fae9971a + - 03f4e556-15f2-4cc0-89a7-7bd487e492dd status: 200 OK code: 200 - duration: 187.168208ms + duration: 165.191531ms - id: 78 request: proto: HTTP/1.1 @@ -3858,8 +3848,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateway-networks/7b30df70-988f-4f93-a566-39c9e031bad5 + - 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/rdb/v1/regions/nl-ams/instances/91136575-4b1d-4c79-b240-08afeae48b00 method: GET response: proto: HTTP/2.0 @@ -3867,20 +3857,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 996 + content_length: 1066 uncompressed: false - body: '{"address":null,"created_at":"2025-02-06T13:46:16.106202Z","dhcp":{"address":"192.168.1.1","created_at":"2025-02-06T13:46:07.337972Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"0ef9e983-12c1-4a4d-9522-0da204e23193","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-02-06T13:46:07.337972Z","valid_lifetime":"3600s","zone":"nl-ams-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"b0d90017-9561-4e04-a14f-642b796c3d3b","id":"7b30df70-988f-4f93-a566-39c9e031bad5","ipam_config":null,"mac_address":"02:00:00:1C:4B:7C","private_network_id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","status":"ready","updated_at":"2025-02-06T13:46:26.993886Z","zone":"nl-ams-1"}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-03-24T08:19:09.337633Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[],"engine":"PostgreSQL-16","id":"91136575-4b1d-4c79-b240-08afeae48b00","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":"bssd","size":10000000000,"type":"bssd"}}' headers: Content-Length: - - "996" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:46:33 GMT + - Mon, 24 Mar 2025 08:22:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3888,10 +3878,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8ddba05c-f08e-40e3-87fe-7d4a3ed1d6dc + - c7329a90-e0b3-458f-8601-109f8cc65cbd status: 200 OK code: 200 - duration: 74.53075ms + duration: 238.635349ms - id: 79 request: proto: HTTP/1.1 @@ -3907,29 +3897,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/3876750e-71f5-49c6-a89d-ea83d6b6f18e/certificate - method: GET + - 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/rdb/v1/regions/nl-ams/instances/91136575-4b1d-4c79-b240-08afeae48b00 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1733 + content_length: 1069 uncompressed: false - body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURZekNDQWt1Z0F3SUJBZ0lVRkx5dXhHNG80UXluWk9QTXRLb0pNb1V3MEVNd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1Z6RUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RlRBVEJnTlZCQU1NRERFNU1pNHhOamd1TVM0ME1qQWVGdzB5Ck5UQXlNRFl4TXpReU16bGFGdzB6TlRBeU1EUXhNelF5TXpsYU1GY3hDekFKQmdOVkJBWVRBa1pTTVE0d0RBWUQKVlFRSURBVlFZWEpwY3pFT01Bd0dBMVVFQnd3RlVHRnlhWE14RVRBUEJnTlZCQW9NQ0ZOallXeGxkMkY1TVJVdwpFd1lEVlFRRERBd3hPVEl1TVRZNExqRXVOREl3Z2dFaU1BMEdDU3FHU0liM0RRRUJBUVVBQTRJQkR3QXdnZ0VLCkFvSUJBUUNiTmh6a3lQL3VUVnFhTlN6TTVQKzYzT201Unc1OGpUYXE4VTQxbXQxeUVmN0lLVTlSeWx1K0xhVjkKZU04QWFkUms5eTVNN1JTWDhpWFR5a0pQYmxVdVFyN1ZWWll5MmpDNlpwM3RkZE1QZG9zTUthVzNNd0Raa0duRgp5d3N0RzFTcjZCOHZINldick5LSzlsVVJKdy8wNFZsM0diZm11WUpFOHZPQlpnbFczUFEzUGp4NHZrcml2amRxCklrNXlKMjdKVkxRN09QQ0tqV0svdVo2SVcrVVYxSkVRRC9uVGFkTW14WWpoQ3VsUFcxVE9vSTBRWElJaXA3MngKMVY2b2FLZGg5N1hCRnhBVHM5R3ozU3dtUVVyNUp0aUdGaERzc2tmT0lqcUJhSDNILzVWMmZpOE04bDBnNHN1SwpMOXM3OExmR3pMOTd1VU9CWE5IV2NTbXZaVWRUQWdNQkFBR2pKekFsTUNNR0ExVWRFUVFjTUJxQ0RERTVNaTR4Ck5qZ3VNUzQwTW9jRU13ODdrNGNFd0tnQktqQU5CZ2txaGtpRzl3MEJBUXNGQUFPQ0FRRUFBdTRBZm1GNVJXRTIKQ1lwT1lnTzFXRTR0eXRVYlFBTFN5ajgvTlNqK0tMQW10Q0lERDBBdXRWK2w1a0M4clJ0UVBxWFc0a0kyTjF2cwovVHYyTTAxZjZpS3RUVXVmWmFqeUYxTEtSbXZ5Vk10eWxJWktrWlE2Rm5hVkQyT3NLZlU0MmtROGlCNENvVlU1Cm5TMTBNdEF6M0xFd1pyVHphTTJJUVlqNXlPUW8xakR6c3BzNGdKVGlwQlBTaWhVZ3JFeGVIY2ttVHNTcHF0YzAKdWdOL0cyYzA3QmxIR1A4Y3BIcnJTS21yTGcwYlhlWEhIUDlnaFdlWktsZ093VDcvTm9KOGxUekpXSFpCd0Nubgo0ZDVsamhMM0JOdTJVblA3NFFLSVhpVlowSkFkTXpCZ09rMXJ1UkhxQnR3U3JZYmd3NHdld3NnaWpDZHVrUTZPCktMakFJS0hCcmc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==","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-03-24T08:19:09.337633Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[],"engine":"PostgreSQL-16","id":"91136575-4b1d-4c79-b240-08afeae48b00","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":"bssd","size":10000000000,"type":"bssd"}}' headers: Content-Length: - - "1733" + - "1069" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:46:33 GMT + - Mon, 24 Mar 2025 08:22:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3937,10 +3927,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b3353430-766a-4ffc-8d4e-83bbb26ad27a + - b4570eeb-329f-4590-86ec-2ce0de0e212c status: 200 OK code: 200 - duration: 133.656208ms + duration: 326.440946ms - id: 80 request: proto: HTTP/1.1 @@ -3956,8 +3946,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/pat-rules/36c08dfe-569a-4088-8bd7-9f38f9d223e5 + - 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/rdb/v1/regions/nl-ams/instances/91136575-4b1d-4c79-b240-08afeae48b00 method: GET response: proto: HTTP/2.0 @@ -3965,20 +3955,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 291 + content_length: 1069 uncompressed: false - body: '{"created_at":"2025-02-06T13:46:32.103477Z","gateway_id":"b0d90017-9561-4e04-a14f-642b796c3d3b","id":"36c08dfe-569a-4088-8bd7-9f38f9d223e5","private_ip":"192.168.1.1","private_port":5432,"protocol":"both","public_port":42,"updated_at":"2025-02-06T13:46:32.103477Z","zone":"nl-ams-1"}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-03-24T08:19:09.337633Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[],"engine":"PostgreSQL-16","id":"91136575-4b1d-4c79-b240-08afeae48b00","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":"bssd","size":10000000000,"type":"bssd"}}' headers: Content-Length: - - "291" + - "1069" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:46:33 GMT + - Mon, 24 Mar 2025 08:22:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3986,10 +3976,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d45093a9-ee9b-443a-b89a-521a79e66f02 + - ac25ebf4-4d95-41ba-8dc3-4e5e2347c242 status: 200 OK code: 200 - duration: 54.387125ms + duration: 200.260023ms - id: 81 request: proto: HTTP/1.1 @@ -4005,29 +3995,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/pat-rules/36c08dfe-569a-4088-8bd7-9f38f9d223e5 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/be233441-59eb-4637-8768-a358f57d5908 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 291 + content_length: 0 uncompressed: false - body: '{"created_at":"2025-02-06T13:46:32.103477Z","gateway_id":"b0d90017-9561-4e04-a14f-642b796c3d3b","id":"36c08dfe-569a-4088-8bd7-9f38f9d223e5","private_ip":"192.168.1.1","private_port":5432,"protocol":"both","public_port":42,"updated_at":"2025-02-06T13:46:32.103477Z","zone":"nl-ams-1"}' + body: "" headers: - Content-Length: - - "291" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:46:34 GMT + - Mon, 24 Mar 2025 08:22:22 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4035,10 +4023,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eb0be27b-3e68-4368-a4b7-5d815cdb8cb2 - status: 200 OK - code: 200 - duration: 45.669ms + - 9fe55ffc-881b-4b76-b782-7a6b91fbd2f5 + status: 204 No Content + code: 204 + duration: 1.348692872s - id: 82 request: proto: HTTP/1.1 @@ -4054,127 +4042,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/dhcps/0ef9e983-12c1-4a4d-9522-0da204e23193 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/vpcs/3c716461-9ad4-4913-8eb7-6ca375c1079d + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 586 - uncompressed: false - body: '{"address":"192.168.1.1","created_at":"2025-02-06T13:46:07.337972Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"0ef9e983-12c1-4a4d-9522-0da204e23193","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-02-06T13:46:07.337972Z","valid_lifetime":"3600s","zone":"nl-ams-1"}' - headers: - Content-Length: - - "586" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 06 Feb 2025 13:46:34 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: - - d68651d0-404f-44a8-85fd-0a4957e9831e - status: 200 OK - code: 200 - duration: 45.428584ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1059 uncompressed: false - body: '{"created_at":"2025-02-06T13:41:20.570812Z","dhcp_enabled":true,"id":"31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff","name":"my_private_network_to_be_replaced","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"nl-ams","subnets":[{"created_at":"2025-02-06T13:41:20.570812Z","id":"5adcafd5-04f6-45af-9ec1-fdd92d6ff03a","private_network_id":"31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-02-06T13:41:20.570812Z","vpc_id":"5976fd03-14dd-4892-a481-034469de59c6"},{"created_at":"2025-02-06T13:41:20.570812Z","id":"90f0b514-8d8b-4dff-9c2f-a99f2598ae51","private_network_id":"31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5c:d510:d730:e822::/64","updated_at":"2025-02-06T13:41:20.570812Z","vpc_id":"5976fd03-14dd-4892-a481-034469de59c6"}],"tags":[],"updated_at":"2025-02-06T13:45:00.341206Z","vpc_id":"5976fd03-14dd-4892-a481-034469de59c6"}' - headers: - Content-Length: - - "1059" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 06 Feb 2025 13:46:34 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: - - 48f0eac0-77bc-40d7-99ab-d0605b951617 - status: 200 OK - code: 200 - duration: 46.375708ms - - id: 84 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/ips/4dd6d53b-dbbc-493e-ab3f-4321bce6cc37 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 401 - uncompressed: false - body: '{"address":"51.158.186.43","created_at":"2025-02-06T13:46:08.019129Z","gateway_id":"b0d90017-9561-4e04-a14f-642b796c3d3b","id":"4dd6d53b-dbbc-493e-ab3f-4321bce6cc37","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"43-186-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-02-06T13:46:08.019129Z","zone":"nl-ams-1"}' headers: - Content-Length: - - "401" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:46:34 GMT + - Mon, 24 Mar 2025 08:22:22 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4182,11 +4070,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f008092f-3cba-4e56-bbe9-6edd63cba7ec - status: 200 OK - code: 200 - duration: 49.22575ms - - id: 85 + - 92ae1cc9-1e5d-4be6-804b-1fbf93eb39cc + status: 204 No Content + code: 204 + duration: 206.471824ms + - id: 83 request: proto: HTTP/1.1 proto_major: 1 @@ -4201,8 +4089,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/b0d90017-9561-4e04-a14f-642b796c3d3b + - 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/rdb/v1/regions/nl-ams/instances/91136575-4b1d-4c79-b240-08afeae48b00 method: GET response: proto: HTTP/2.0 @@ -4210,20 +4098,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1992 + content_length: 129 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-02-06T13:46:08.342597Z","gateway_networks":[{"address":null,"created_at":"2025-02-06T13:46:16.106202Z","dhcp":{"address":"192.168.1.1","created_at":"2025-02-06T13:46:07.337972Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"0ef9e983-12c1-4a4d-9522-0da204e23193","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-02-06T13:46:07.337972Z","valid_lifetime":"3600s","zone":"nl-ams-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"b0d90017-9561-4e04-a14f-642b796c3d3b","id":"7b30df70-988f-4f93-a566-39c9e031bad5","ipam_config":null,"mac_address":"02:00:00:1C:4B:7C","private_network_id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","status":"ready","updated_at":"2025-02-06T13:46:26.993886Z","zone":"nl-ams-1"}],"id":"b0d90017-9561-4e04-a14f-642b796c3d3b","ip":{"address":"51.158.186.43","created_at":"2025-02-06T13:46:08.019129Z","gateway_id":"b0d90017-9561-4e04-a14f-642b796c3d3b","id":"4dd6d53b-dbbc-493e-ab3f-4321bce6cc37","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"43-186-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-02-06T13:46:08.019129Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-02-06T13:46:27.195624Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}' + body: '{"message":"resource is not found","resource":"instance","resource_id":"91136575-4b1d-4c79-b240-08afeae48b00","type":"not_found"}' headers: Content-Length: - - "1992" + - "129" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:46:34 GMT + - Mon, 24 Mar 2025 08:22:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4231,1861 +4119,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1d727f56-fd67-4187-b0ef-b7562b02afa7 - status: 200 OK - code: 200 - duration: 53.8135ms - - id: 86 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/d9e77bff-80da-4a0f-af19-50f6a6351ee3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1045 - uncompressed: false - body: '{"created_at":"2025-02-06T13:45:00.340948Z","dhcp_enabled":true,"id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","name":"my_private_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"nl-ams","subnets":[{"created_at":"2025-02-06T13:45:00.340948Z","id":"1700ae48-92a5-4410-926e-b2eedd472c34","private_network_id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"192.168.1.0/24","updated_at":"2025-02-06T13:46:14.109279Z","vpc_id":"d3806592-e166-472e-92e3-56a6a33fe554"},{"created_at":"2025-02-06T13:45:00.340948Z","id":"d2fb97b4-b81c-469c-b125-31c5bf67d870","private_network_id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5c:d510:d730:9d04::/64","updated_at":"2025-02-06T13:46:14.115560Z","vpc_id":"d3806592-e166-472e-92e3-56a6a33fe554"}],"tags":[],"updated_at":"2025-02-06T13:46:23.252342Z","vpc_id":"d3806592-e166-472e-92e3-56a6a33fe554"}' - headers: - Content-Length: - - "1045" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 06 Feb 2025 13:46:34 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: - - 687e457f-710c-4871-bd74-4abda0aacd2c - status: 200 OK - code: 200 - duration: 50.003459ms - - id: 87 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateway-networks/7b30df70-988f-4f93-a566-39c9e031bad5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 996 - uncompressed: false - body: '{"address":null,"created_at":"2025-02-06T13:46:16.106202Z","dhcp":{"address":"192.168.1.1","created_at":"2025-02-06T13:46:07.337972Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"0ef9e983-12c1-4a4d-9522-0da204e23193","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-02-06T13:46:07.337972Z","valid_lifetime":"3600s","zone":"nl-ams-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"b0d90017-9561-4e04-a14f-642b796c3d3b","id":"7b30df70-988f-4f93-a566-39c9e031bad5","ipam_config":null,"mac_address":"02:00:00:1C:4B:7C","private_network_id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","status":"ready","updated_at":"2025-02-06T13:46:26.993886Z","zone":"nl-ams-1"}' - headers: - Content-Length: - - "996" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 06 Feb 2025 13:46:34 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: - - 18650c71-95fb-4d29-970c-64740549eca6 - status: 200 OK - code: 200 - duration: 74.746708ms - - id: 88 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/b0d90017-9561-4e04-a14f-642b796c3d3b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1992 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-02-06T13:46:08.342597Z","gateway_networks":[{"address":null,"created_at":"2025-02-06T13:46:16.106202Z","dhcp":{"address":"192.168.1.1","created_at":"2025-02-06T13:46:07.337972Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"0ef9e983-12c1-4a4d-9522-0da204e23193","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-02-06T13:46:07.337972Z","valid_lifetime":"3600s","zone":"nl-ams-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"b0d90017-9561-4e04-a14f-642b796c3d3b","id":"7b30df70-988f-4f93-a566-39c9e031bad5","ipam_config":null,"mac_address":"02:00:00:1C:4B:7C","private_network_id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","status":"ready","updated_at":"2025-02-06T13:46:26.993886Z","zone":"nl-ams-1"}],"id":"b0d90017-9561-4e04-a14f-642b796c3d3b","ip":{"address":"51.158.186.43","created_at":"2025-02-06T13:46:08.019129Z","gateway_id":"b0d90017-9561-4e04-a14f-642b796c3d3b","id":"4dd6d53b-dbbc-493e-ab3f-4321bce6cc37","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"43-186-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-02-06T13:46:08.019129Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-02-06T13:46:27.195624Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}' - headers: - Content-Length: - - "1992" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 06 Feb 2025 13:46:34 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: - - 311ef54e-ac69-49e0-b037-dd20d91db981 - status: 200 OK - code: 200 - duration: 49.709041ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/3876750e-71f5-49c6-a89d-ea83d6b6f18e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1359 - uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-02-06T13:41:24.397115Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"a92094cc-9294-4bbf-947e-1d100db454c5","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"3876750e-71f5-49c6-a89d-ea83d6b6f18e","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","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":"bssd","size":10000000000,"type":"bssd"}}' - headers: - Content-Length: - - "1359" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 06 Feb 2025 13:46:34 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: - - ce492480-e19f-4ffb-9fa7-fc7d0ed590a2 - status: 200 OK - code: 200 - duration: 132.640375ms - - id: 90 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateway-networks/7b30df70-988f-4f93-a566-39c9e031bad5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 996 - uncompressed: false - body: '{"address":null,"created_at":"2025-02-06T13:46:16.106202Z","dhcp":{"address":"192.168.1.1","created_at":"2025-02-06T13:46:07.337972Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"0ef9e983-12c1-4a4d-9522-0da204e23193","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-02-06T13:46:07.337972Z","valid_lifetime":"3600s","zone":"nl-ams-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"b0d90017-9561-4e04-a14f-642b796c3d3b","id":"7b30df70-988f-4f93-a566-39c9e031bad5","ipam_config":null,"mac_address":"02:00:00:1C:4B:7C","private_network_id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","status":"ready","updated_at":"2025-02-06T13:46:26.993886Z","zone":"nl-ams-1"}' - headers: - Content-Length: - - "996" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 06 Feb 2025 13:46:34 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: - - d0ee26e9-a494-41a1-b19f-b1cff0724964 - status: 200 OK - code: 200 - duration: 79.697666ms - - id: 91 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/3876750e-71f5-49c6-a89d-ea83d6b6f18e/certificate - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1733 - uncompressed: false - body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURZekNDQWt1Z0F3SUJBZ0lVRkx5dXhHNG80UXluWk9QTXRLb0pNb1V3MEVNd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1Z6RUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RlRBVEJnTlZCQU1NRERFNU1pNHhOamd1TVM0ME1qQWVGdzB5Ck5UQXlNRFl4TXpReU16bGFGdzB6TlRBeU1EUXhNelF5TXpsYU1GY3hDekFKQmdOVkJBWVRBa1pTTVE0d0RBWUQKVlFRSURBVlFZWEpwY3pFT01Bd0dBMVVFQnd3RlVHRnlhWE14RVRBUEJnTlZCQW9NQ0ZOallXeGxkMkY1TVJVdwpFd1lEVlFRRERBd3hPVEl1TVRZNExqRXVOREl3Z2dFaU1BMEdDU3FHU0liM0RRRUJBUVVBQTRJQkR3QXdnZ0VLCkFvSUJBUUNiTmh6a3lQL3VUVnFhTlN6TTVQKzYzT201Unc1OGpUYXE4VTQxbXQxeUVmN0lLVTlSeWx1K0xhVjkKZU04QWFkUms5eTVNN1JTWDhpWFR5a0pQYmxVdVFyN1ZWWll5MmpDNlpwM3RkZE1QZG9zTUthVzNNd0Raa0duRgp5d3N0RzFTcjZCOHZINldick5LSzlsVVJKdy8wNFZsM0diZm11WUpFOHZPQlpnbFczUFEzUGp4NHZrcml2amRxCklrNXlKMjdKVkxRN09QQ0tqV0svdVo2SVcrVVYxSkVRRC9uVGFkTW14WWpoQ3VsUFcxVE9vSTBRWElJaXA3MngKMVY2b2FLZGg5N1hCRnhBVHM5R3ozU3dtUVVyNUp0aUdGaERzc2tmT0lqcUJhSDNILzVWMmZpOE04bDBnNHN1SwpMOXM3OExmR3pMOTd1VU9CWE5IV2NTbXZaVWRUQWdNQkFBR2pKekFsTUNNR0ExVWRFUVFjTUJxQ0RERTVNaTR4Ck5qZ3VNUzQwTW9jRU13ODdrNGNFd0tnQktqQU5CZ2txaGtpRzl3MEJBUXNGQUFPQ0FRRUFBdTRBZm1GNVJXRTIKQ1lwT1lnTzFXRTR0eXRVYlFBTFN5ajgvTlNqK0tMQW10Q0lERDBBdXRWK2w1a0M4clJ0UVBxWFc0a0kyTjF2cwovVHYyTTAxZjZpS3RUVXVmWmFqeUYxTEtSbXZ5Vk10eWxJWktrWlE2Rm5hVkQyT3NLZlU0MmtROGlCNENvVlU1Cm5TMTBNdEF6M0xFd1pyVHphTTJJUVlqNXlPUW8xakR6c3BzNGdKVGlwQlBTaWhVZ3JFeGVIY2ttVHNTcHF0YzAKdWdOL0cyYzA3QmxIR1A4Y3BIcnJTS21yTGcwYlhlWEhIUDlnaFdlWktsZ093VDcvTm9KOGxUekpXSFpCd0Nubgo0ZDVsamhMM0JOdTJVblA3NFFLSVhpVlowSkFkTXpCZ09rMXJ1UkhxQnR3U3JZYmd3NHdld3NnaWpDZHVrUTZPCktMakFJS0hCcmc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==","content_type":"application/x-pem-file","name":"ssl_certificate"}' - headers: - Content-Length: - - "1733" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 06 Feb 2025 13:46:35 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: - - e68eea68-92e7-48d8-901f-70d3a0ef7264 - status: 200 OK - code: 200 - duration: 157.55325ms - - id: 92 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/pat-rules/36c08dfe-569a-4088-8bd7-9f38f9d223e5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 291 - uncompressed: false - body: '{"created_at":"2025-02-06T13:46:32.103477Z","gateway_id":"b0d90017-9561-4e04-a14f-642b796c3d3b","id":"36c08dfe-569a-4088-8bd7-9f38f9d223e5","private_ip":"192.168.1.1","private_port":5432,"protocol":"both","public_port":42,"updated_at":"2025-02-06T13:46:32.103477Z","zone":"nl-ams-1"}' - headers: - Content-Length: - - "291" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 06 Feb 2025 13:46:36 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: - - 2014a0ba-8d09-485b-a4aa-9b0ed8581d27 - status: 200 OK - code: 200 - duration: 44.535375ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/b0d90017-9561-4e04-a14f-642b796c3d3b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1992 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-02-06T13:46:08.342597Z","gateway_networks":[{"address":null,"created_at":"2025-02-06T13:46:16.106202Z","dhcp":{"address":"192.168.1.1","created_at":"2025-02-06T13:46:07.337972Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"0ef9e983-12c1-4a4d-9522-0da204e23193","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-02-06T13:46:07.337972Z","valid_lifetime":"3600s","zone":"nl-ams-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"b0d90017-9561-4e04-a14f-642b796c3d3b","id":"7b30df70-988f-4f93-a566-39c9e031bad5","ipam_config":null,"mac_address":"02:00:00:1C:4B:7C","private_network_id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","status":"ready","updated_at":"2025-02-06T13:46:26.993886Z","zone":"nl-ams-1"}],"id":"b0d90017-9561-4e04-a14f-642b796c3d3b","ip":{"address":"51.158.186.43","created_at":"2025-02-06T13:46:08.019129Z","gateway_id":"b0d90017-9561-4e04-a14f-642b796c3d3b","id":"4dd6d53b-dbbc-493e-ab3f-4321bce6cc37","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"43-186-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-02-06T13:46:08.019129Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-02-06T13:46:27.195624Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}' - headers: - Content-Length: - - "1992" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 06 Feb 2025 13:46:36 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: - - 29fccee0-9aa9-4423-b76e-4ae91c6e9804 - status: 200 OK - code: 200 - duration: 59.21025ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/pat-rules/36c08dfe-569a-4088-8bd7-9f38f9d223e5 - 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, 06 Feb 2025 13:46:36 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: - - 3f839a45-931b-41e9-9141-ce1a3493d07c - status: 204 No Content - code: 204 - duration: 81.398375ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/b0d90017-9561-4e04-a14f-642b796c3d3b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1992 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-02-06T13:46:08.342597Z","gateway_networks":[{"address":null,"created_at":"2025-02-06T13:46:16.106202Z","dhcp":{"address":"192.168.1.1","created_at":"2025-02-06T13:46:07.337972Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"0ef9e983-12c1-4a4d-9522-0da204e23193","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-02-06T13:46:07.337972Z","valid_lifetime":"3600s","zone":"nl-ams-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"b0d90017-9561-4e04-a14f-642b796c3d3b","id":"7b30df70-988f-4f93-a566-39c9e031bad5","ipam_config":null,"mac_address":"02:00:00:1C:4B:7C","private_network_id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","status":"ready","updated_at":"2025-02-06T13:46:26.993886Z","zone":"nl-ams-1"}],"id":"b0d90017-9561-4e04-a14f-642b796c3d3b","ip":{"address":"51.158.186.43","created_at":"2025-02-06T13:46:08.019129Z","gateway_id":"b0d90017-9561-4e04-a14f-642b796c3d3b","id":"4dd6d53b-dbbc-493e-ab3f-4321bce6cc37","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"43-186-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-02-06T13:46:08.019129Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-02-06T13:46:27.195624Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}' - headers: - Content-Length: - - "1992" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 06 Feb 2025 13:46:36 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: - - 7caa5076-22f7-4fd1-9a03-1c9755616be0 - status: 200 OK - code: 200 - duration: 54.088542ms - - id: 96 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateway-networks/7b30df70-988f-4f93-a566-39c9e031bad5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 996 - uncompressed: false - body: '{"address":null,"created_at":"2025-02-06T13:46:16.106202Z","dhcp":{"address":"192.168.1.1","created_at":"2025-02-06T13:46:07.337972Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"0ef9e983-12c1-4a4d-9522-0da204e23193","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-02-06T13:46:07.337972Z","valid_lifetime":"3600s","zone":"nl-ams-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"b0d90017-9561-4e04-a14f-642b796c3d3b","id":"7b30df70-988f-4f93-a566-39c9e031bad5","ipam_config":null,"mac_address":"02:00:00:1C:4B:7C","private_network_id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","status":"ready","updated_at":"2025-02-06T13:46:26.993886Z","zone":"nl-ams-1"}' - headers: - Content-Length: - - "996" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 06 Feb 2025 13:46:36 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: - - edfaa8b0-6d1f-4428-b3ef-6e07975a8ba5 - status: 200 OK - code: 200 - duration: 91.875917ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/3876750e-71f5-49c6-a89d-ea83d6b6f18e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1359 - uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-02-06T13:41:24.397115Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"a92094cc-9294-4bbf-947e-1d100db454c5","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"3876750e-71f5-49c6-a89d-ea83d6b6f18e","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","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":"bssd","size":10000000000,"type":"bssd"}}' - headers: - Content-Length: - - "1359" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 06 Feb 2025 13:46:36 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: - - 2c6984fa-66a1-48ec-aa3e-7bfa0b81afee - status: 200 OK - code: 200 - duration: 157.225042ms - - id: 98 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateway-networks/7b30df70-988f-4f93-a566-39c9e031bad5?cleanup_dhcp=true - 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, 06 Feb 2025 13:46:36 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: - - 2a4238ea-9b5e-4e81-b6ec-ea666208e3d9 - status: 204 No Content - code: 204 - duration: 174.461208ms - - id: 99 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateway-networks/7b30df70-988f-4f93-a566-39c9e031bad5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1000 - uncompressed: false - body: '{"address":null,"created_at":"2025-02-06T13:46:16.106202Z","dhcp":{"address":"192.168.1.1","created_at":"2025-02-06T13:46:07.337972Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"0ef9e983-12c1-4a4d-9522-0da204e23193","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-02-06T13:46:07.337972Z","valid_lifetime":"3600s","zone":"nl-ams-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"b0d90017-9561-4e04-a14f-642b796c3d3b","id":"7b30df70-988f-4f93-a566-39c9e031bad5","ipam_config":null,"mac_address":"02:00:00:1C:4B:7C","private_network_id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","status":"detaching","updated_at":"2025-02-06T13:46:36.585678Z","zone":"nl-ams-1"}' - headers: - Content-Length: - - "1000" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 06 Feb 2025 13:46:36 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: - - edc4a602-f8f2-4b13-a700-b31201cd4471 - status: 200 OK - code: 200 - duration: 74.01825ms - - id: 100 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/3876750e-71f5-49c6-a89d-ea83d6b6f18e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1359 - uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-02-06T13:41:24.397115Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"a92094cc-9294-4bbf-947e-1d100db454c5","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"3876750e-71f5-49c6-a89d-ea83d6b6f18e","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","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":"bssd","size":10000000000,"type":"bssd"}}' - headers: - Content-Length: - - "1359" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 06 Feb 2025 13:46:36 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: - - 31b43af1-9ae6-47ab-b9fa-ceccda6f5baa - status: 200 OK - code: 200 - duration: 166.297209ms - - id: 101 - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/3876750e-71f5-49c6-a89d-ea83d6b6f18e - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1359 - uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-02-06T13:41:24.397115Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"a92094cc-9294-4bbf-947e-1d100db454c5","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"3876750e-71f5-49c6-a89d-ea83d6b6f18e","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","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":"bssd","size":10000000000,"type":"bssd"}}' - headers: - Content-Length: - - "1359" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 06 Feb 2025 13:46:36 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: - - 6c56e0c2-4070-4f1c-bbcd-ead268b05684 - status: 200 OK - code: 200 - duration: 348.910333ms - - id: 102 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/3876750e-71f5-49c6-a89d-ea83d6b6f18e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1359 - uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-02-06T13:41:24.397115Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"a92094cc-9294-4bbf-947e-1d100db454c5","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"3876750e-71f5-49c6-a89d-ea83d6b6f18e","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","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":"bssd","size":10000000000,"type":"bssd"}}' - headers: - Content-Length: - - "1359" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 06 Feb 2025 13:46:37 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: - - 50c55d3f-fc53-4f0e-8954-7090ea6bb07f - status: 200 OK - code: 200 - duration: 182.549083ms - - id: 103 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/31872a9a-fa0a-4c9a-b4e0-7c1ca4be0cff - 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, 06 Feb 2025 13:46:37 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: - - 0129f620-f9fc-4bd5-98fd-2f38c66a1af7 - status: 204 No Content - code: 204 - duration: 1.204381917s - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/endpoints/a92094cc-9294-4bbf-947e-1d100db454c5 - 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, 06 Feb 2025 13:46:37 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: - - 51f9d2ab-aa7a-47e8-b33f-55f1c4d062da - status: 204 No Content - code: 204 - duration: 236.186333ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/3876750e-71f5-49c6-a89d-ea83d6b6f18e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1365 - uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-02-06T13:41:24.397115Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"a92094cc-9294-4bbf-947e-1d100db454c5","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"3876750e-71f5-49c6-a89d-ea83d6b6f18e","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","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":"bssd","size":10000000000,"type":"bssd"}}' - headers: - Content-Length: - - "1365" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 06 Feb 2025 13:46:37 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: - - cad92629-24e7-4414-a1c0-09119af67be5 - status: 200 OK - code: 200 - duration: 151.160792ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateway-networks/7b30df70-988f-4f93-a566-39c9e031bad5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 136 - uncompressed: false - body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"7b30df70-988f-4f93-a566-39c9e031bad5","type":"not_found"}' - headers: - Content-Length: - - "136" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 06 Feb 2025 13:46:41 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: - - 5a9845df-b5e8-46ed-be77-68037e751b9c - status: 404 Not Found - code: 404 - duration: 41.681291ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/b0d90017-9561-4e04-a14f-642b796c3d3b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 996 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-02-06T13:46:08.342597Z","gateway_networks":[],"id":"b0d90017-9561-4e04-a14f-642b796c3d3b","ip":{"address":"51.158.186.43","created_at":"2025-02-06T13:46:08.019129Z","gateway_id":"b0d90017-9561-4e04-a14f-642b796c3d3b","id":"4dd6d53b-dbbc-493e-ab3f-4321bce6cc37","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"43-186-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-02-06T13:46:08.019129Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-02-06T13:46:27.195624Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}' - headers: - Content-Length: - - "996" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 06 Feb 2025 13:46:41 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: - - 76bcfe20-18d7-4741-a0d6-7f440edc329a - status: 200 OK - code: 200 - duration: 45.363041ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/b0d90017-9561-4e04-a14f-642b796c3d3b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 996 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-02-06T13:46:08.342597Z","gateway_networks":[],"id":"b0d90017-9561-4e04-a14f-642b796c3d3b","ip":{"address":"51.158.186.43","created_at":"2025-02-06T13:46:08.019129Z","gateway_id":"b0d90017-9561-4e04-a14f-642b796c3d3b","id":"4dd6d53b-dbbc-493e-ab3f-4321bce6cc37","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"43-186-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-02-06T13:46:08.019129Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-02-06T13:46:27.195624Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}' - headers: - Content-Length: - - "996" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 06 Feb 2025 13:46:41 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: - - 13669b80-cb59-4c0c-b09b-30819bf994a6 - status: 200 OK - code: 200 - duration: 43.041084ms - - id: 109 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/dhcps/0ef9e983-12c1-4a4d-9522-0da204e23193 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 125 - uncompressed: false - body: '{"message":"resource is not found","resource":"dhcp","resource_id":"0ef9e983-12c1-4a4d-9522-0da204e23193","type":"not_found"}' - headers: - Content-Length: - - "125" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 06 Feb 2025 13:46:41 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: - - 8a620f85-8c65-42ab-ad02-9864e0df3d79 - status: 404 Not Found - code: 404 - duration: 46.90825ms - - id: 110 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/b0d90017-9561-4e04-a14f-642b796c3d3b?cleanup_dhcp=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, 06 Feb 2025 13:46:41 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: - - 76a89105-b3b0-4ca5-a493-4dc164bee5a9 - status: 204 No Content - code: 204 - duration: 89.75525ms - - id: 111 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/b0d90017-9561-4e04-a14f-642b796c3d3b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 128 - uncompressed: false - body: '{"message":"resource is not found","resource":"gateway","resource_id":"b0d90017-9561-4e04-a14f-642b796c3d3b","type":"not_found"}' - headers: - Content-Length: - - "128" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 06 Feb 2025 13:46:41 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: - - 5c499a3e-88e5-4c36-95b9-bfd7225c2efa - status: 404 Not Found - code: 404 - duration: 51.191792ms - - id: 112 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/ips/4dd6d53b-dbbc-493e-ab3f-4321bce6cc37 - 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, 06 Feb 2025 13:46:42 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: - - b0e4a3b0-8fc7-4615-80c6-fd4eb83d3500 - status: 204 No Content - code: 204 - duration: 1.005226042s - - id: 113 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/3876750e-71f5-49c6-a89d-ea83d6b6f18e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1103 - uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-02-06T13:41:24.397115Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[],"engine":"PostgreSQL-15","id":"3876750e-71f5-49c6-a89d-ea83d6b6f18e","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","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":"bssd","size":10000000000,"type":"bssd"}}' - headers: - Content-Length: - - "1103" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 06 Feb 2025 13:47:07 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: - - b511ac95-a10f-4ca2-8bdc-bc0e65b7256e - status: 200 OK - code: 200 - duration: 176.656917ms - - id: 114 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/3876750e-71f5-49c6-a89d-ea83d6b6f18e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1103 - uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-02-06T13:41:24.397115Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[],"engine":"PostgreSQL-15","id":"3876750e-71f5-49c6-a89d-ea83d6b6f18e","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","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":"bssd","size":10000000000,"type":"bssd"}}' - headers: - Content-Length: - - "1103" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 06 Feb 2025 13:47:07 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: - - 386d56e9-a62e-42f2-b279-f74726236cf4 - status: 200 OK - code: 200 - duration: 209.520333ms - - id: 115 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/3876750e-71f5-49c6-a89d-ea83d6b6f18e/certificate - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1733 - uncompressed: false - body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURZekNDQWt1Z0F3SUJBZ0lVRkx5dXhHNG80UXluWk9QTXRLb0pNb1V3MEVNd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1Z6RUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RlRBVEJnTlZCQU1NRERFNU1pNHhOamd1TVM0ME1qQWVGdzB5Ck5UQXlNRFl4TXpReU16bGFGdzB6TlRBeU1EUXhNelF5TXpsYU1GY3hDekFKQmdOVkJBWVRBa1pTTVE0d0RBWUQKVlFRSURBVlFZWEpwY3pFT01Bd0dBMVVFQnd3RlVHRnlhWE14RVRBUEJnTlZCQW9NQ0ZOallXeGxkMkY1TVJVdwpFd1lEVlFRRERBd3hPVEl1TVRZNExqRXVOREl3Z2dFaU1BMEdDU3FHU0liM0RRRUJBUVVBQTRJQkR3QXdnZ0VLCkFvSUJBUUNiTmh6a3lQL3VUVnFhTlN6TTVQKzYzT201Unc1OGpUYXE4VTQxbXQxeUVmN0lLVTlSeWx1K0xhVjkKZU04QWFkUms5eTVNN1JTWDhpWFR5a0pQYmxVdVFyN1ZWWll5MmpDNlpwM3RkZE1QZG9zTUthVzNNd0Raa0duRgp5d3N0RzFTcjZCOHZINldick5LSzlsVVJKdy8wNFZsM0diZm11WUpFOHZPQlpnbFczUFEzUGp4NHZrcml2amRxCklrNXlKMjdKVkxRN09QQ0tqV0svdVo2SVcrVVYxSkVRRC9uVGFkTW14WWpoQ3VsUFcxVE9vSTBRWElJaXA3MngKMVY2b2FLZGg5N1hCRnhBVHM5R3ozU3dtUVVyNUp0aUdGaERzc2tmT0lqcUJhSDNILzVWMmZpOE04bDBnNHN1SwpMOXM3OExmR3pMOTd1VU9CWE5IV2NTbXZaVWRUQWdNQkFBR2pKekFsTUNNR0ExVWRFUVFjTUJxQ0RERTVNaTR4Ck5qZ3VNUzQwTW9jRU13ODdrNGNFd0tnQktqQU5CZ2txaGtpRzl3MEJBUXNGQUFPQ0FRRUFBdTRBZm1GNVJXRTIKQ1lwT1lnTzFXRTR0eXRVYlFBTFN5ajgvTlNqK0tMQW10Q0lERDBBdXRWK2w1a0M4clJ0UVBxWFc0a0kyTjF2cwovVHYyTTAxZjZpS3RUVXVmWmFqeUYxTEtSbXZ5Vk10eWxJWktrWlE2Rm5hVkQyT3NLZlU0MmtROGlCNENvVlU1Cm5TMTBNdEF6M0xFd1pyVHphTTJJUVlqNXlPUW8xakR6c3BzNGdKVGlwQlBTaWhVZ3JFeGVIY2ttVHNTcHF0YzAKdWdOL0cyYzA3QmxIR1A4Y3BIcnJTS21yTGcwYlhlWEhIUDlnaFdlWktsZ093VDcvTm9KOGxUekpXSFpCd0Nubgo0ZDVsamhMM0JOdTJVblA3NFFLSVhpVlowSkFkTXpCZ09rMXJ1UkhxQnR3U3JZYmd3NHdld3NnaWpDZHVrUTZPCktMakFJS0hCcmc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==","content_type":"application/x-pem-file","name":"ssl_certificate"}' - headers: - Content-Length: - - "1733" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 06 Feb 2025 13:47: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: - - 90d22f12-f34e-49ef-b732-80843570e1cf - status: 200 OK - code: 200 - duration: 120.817208ms - - id: 116 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/d9e77bff-80da-4a0f-af19-50f6a6351ee3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1045 - uncompressed: false - body: '{"created_at":"2025-02-06T13:45:00.340948Z","dhcp_enabled":true,"id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","name":"my_private_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"nl-ams","subnets":[{"created_at":"2025-02-06T13:45:00.340948Z","id":"1700ae48-92a5-4410-926e-b2eedd472c34","private_network_id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"192.168.1.0/24","updated_at":"2025-02-06T13:46:14.109279Z","vpc_id":"d3806592-e166-472e-92e3-56a6a33fe554"},{"created_at":"2025-02-06T13:45:00.340948Z","id":"d2fb97b4-b81c-469c-b125-31c5bf67d870","private_network_id":"d9e77bff-80da-4a0f-af19-50f6a6351ee3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5c:d510:d730:9d04::/64","updated_at":"2025-02-06T13:46:14.115560Z","vpc_id":"d3806592-e166-472e-92e3-56a6a33fe554"}],"tags":[],"updated_at":"2025-02-06T13:46:36.682194Z","vpc_id":"d3806592-e166-472e-92e3-56a6a33fe554"}' - headers: - Content-Length: - - "1045" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 06 Feb 2025 13:47:09 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: - - 655bb670-66ef-4b2b-b296-96d5bd53ec95 - status: 200 OK - code: 200 - duration: 46.46175ms - - id: 117 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/3876750e-71f5-49c6-a89d-ea83d6b6f18e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1103 - uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-02-06T13:41:24.397115Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[],"engine":"PostgreSQL-15","id":"3876750e-71f5-49c6-a89d-ea83d6b6f18e","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","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":"bssd","size":10000000000,"type":"bssd"}}' - headers: - Content-Length: - - "1103" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 06 Feb 2025 13:47:09 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: - - 73dfaae1-ba26-4548-9b40-10aacd5fe8ef - status: 200 OK - code: 200 - duration: 171.7785ms - - id: 118 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/3876750e-71f5-49c6-a89d-ea83d6b6f18e/certificate - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1733 - uncompressed: false - body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURZekNDQWt1Z0F3SUJBZ0lVRkx5dXhHNG80UXluWk9QTXRLb0pNb1V3MEVNd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1Z6RUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RlRBVEJnTlZCQU1NRERFNU1pNHhOamd1TVM0ME1qQWVGdzB5Ck5UQXlNRFl4TXpReU16bGFGdzB6TlRBeU1EUXhNelF5TXpsYU1GY3hDekFKQmdOVkJBWVRBa1pTTVE0d0RBWUQKVlFRSURBVlFZWEpwY3pFT01Bd0dBMVVFQnd3RlVHRnlhWE14RVRBUEJnTlZCQW9NQ0ZOallXeGxkMkY1TVJVdwpFd1lEVlFRRERBd3hPVEl1TVRZNExqRXVOREl3Z2dFaU1BMEdDU3FHU0liM0RRRUJBUVVBQTRJQkR3QXdnZ0VLCkFvSUJBUUNiTmh6a3lQL3VUVnFhTlN6TTVQKzYzT201Unc1OGpUYXE4VTQxbXQxeUVmN0lLVTlSeWx1K0xhVjkKZU04QWFkUms5eTVNN1JTWDhpWFR5a0pQYmxVdVFyN1ZWWll5MmpDNlpwM3RkZE1QZG9zTUthVzNNd0Raa0duRgp5d3N0RzFTcjZCOHZINldick5LSzlsVVJKdy8wNFZsM0diZm11WUpFOHZPQlpnbFczUFEzUGp4NHZrcml2amRxCklrNXlKMjdKVkxRN09QQ0tqV0svdVo2SVcrVVYxSkVRRC9uVGFkTW14WWpoQ3VsUFcxVE9vSTBRWElJaXA3MngKMVY2b2FLZGg5N1hCRnhBVHM5R3ozU3dtUVVyNUp0aUdGaERzc2tmT0lqcUJhSDNILzVWMmZpOE04bDBnNHN1SwpMOXM3OExmR3pMOTd1VU9CWE5IV2NTbXZaVWRUQWdNQkFBR2pKekFsTUNNR0ExVWRFUVFjTUJxQ0RERTVNaTR4Ck5qZ3VNUzQwTW9jRU13ODdrNGNFd0tnQktqQU5CZ2txaGtpRzl3MEJBUXNGQUFPQ0FRRUFBdTRBZm1GNVJXRTIKQ1lwT1lnTzFXRTR0eXRVYlFBTFN5ajgvTlNqK0tMQW10Q0lERDBBdXRWK2w1a0M4clJ0UVBxWFc0a0kyTjF2cwovVHYyTTAxZjZpS3RUVXVmWmFqeUYxTEtSbXZ5Vk10eWxJWktrWlE2Rm5hVkQyT3NLZlU0MmtROGlCNENvVlU1Cm5TMTBNdEF6M0xFd1pyVHphTTJJUVlqNXlPUW8xakR6c3BzNGdKVGlwQlBTaWhVZ3JFeGVIY2ttVHNTcHF0YzAKdWdOL0cyYzA3QmxIR1A4Y3BIcnJTS21yTGcwYlhlWEhIUDlnaFdlWktsZ093VDcvTm9KOGxUekpXSFpCd0Nubgo0ZDVsamhMM0JOdTJVblA3NFFLSVhpVlowSkFkTXpCZ09rMXJ1UkhxQnR3U3JZYmd3NHdld3NnaWpDZHVrUTZPCktMakFJS0hCcmc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==","content_type":"application/x-pem-file","name":"ssl_certificate"}' - headers: - Content-Length: - - "1733" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 06 Feb 2025 13:47:09 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: - - b3c86cc6-9b94-4618-a2c4-a8f4d373bacc - status: 200 OK - code: 200 - duration: 137.246708ms - - id: 119 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/3876750e-71f5-49c6-a89d-ea83d6b6f18e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1103 - uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-02-06T13:41:24.397115Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[],"engine":"PostgreSQL-15","id":"3876750e-71f5-49c6-a89d-ea83d6b6f18e","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","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":"bssd","size":10000000000,"type":"bssd"}}' - headers: - Content-Length: - - "1103" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 06 Feb 2025 13:47: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: - - d7e7837c-1828-4b50-84cb-25352747d0fb - status: 200 OK - code: 200 - duration: 191.144375ms - - id: 120 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/3876750e-71f5-49c6-a89d-ea83d6b6f18e - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1106 - uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-02-06T13:41:24.397115Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[],"engine":"PostgreSQL-15","id":"3876750e-71f5-49c6-a89d-ea83d6b6f18e","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","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":"bssd","size":10000000000,"type":"bssd"}}' - headers: - Content-Length: - - "1106" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 06 Feb 2025 13:47: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: - - 80a65fdb-3c41-43f6-8d2c-a29491958b0c - status: 200 OK - code: 200 - duration: 340.693625ms - - id: 121 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/3876750e-71f5-49c6-a89d-ea83d6b6f18e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1106 - uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-02-06T13:41:24.397115Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[],"engine":"PostgreSQL-15","id":"3876750e-71f5-49c6-a89d-ea83d6b6f18e","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","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":"bssd","size":10000000000,"type":"bssd"}}' - headers: - Content-Length: - - "1106" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 06 Feb 2025 13:47: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: - - 25eb6b17-a4a3-4dfd-b0e5-a874768648b4 - status: 200 OK - code: 200 - duration: 141.946042ms - - id: 122 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/d9e77bff-80da-4a0f-af19-50f6a6351ee3 - 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, 06 Feb 2025 13:47: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: - - f6377886-d042-45b3-9ce4-d1d9c1390eff - status: 204 No Content - code: 204 - duration: 1.124291041s - - id: 123 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/3876750e-71f5-49c6-a89d-ea83d6b6f18e - 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":"instance","resource_id":"3876750e-71f5-49c6-a89d-ea83d6b6f18e","type":"not_found"}' - headers: - Content-Length: - - "129" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 06 Feb 2025 13:47:41 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: - - c7f2d144-a0c2-486d-9563-51ffd93138d6 + - c6c5941a-a03e-4897-89fc-949775105027 status: 404 Not Found code: 404 - duration: 351.22625ms - - id: 124 + duration: 167.939833ms + - id: 84 request: proto: HTTP/1.1 proto_major: 1 @@ -6100,8 +4138,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/3876750e-71f5-49c6-a89d-ea83d6b6f18e + - 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/rdb/v1/regions/nl-ams/instances/91136575-4b1d-4c79-b240-08afeae48b00 method: GET response: proto: HTTP/2.0 @@ -6111,7 +4149,7 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"instance","resource_id":"3876750e-71f5-49c6-a89d-ea83d6b6f18e","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance","resource_id":"91136575-4b1d-4c79-b240-08afeae48b00","type":"not_found"}' headers: Content-Length: - "129" @@ -6120,9 +4158,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 06 Feb 2025 13:47:41 GMT + - Mon, 24 Mar 2025 08:22:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6130,7 +4168,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0c7e47a6-9d88-4490-92a8-61f08010c3ef + - f4651397-039f-4c70-bf94-ee3df32554e0 status: 404 Not Found code: 404 - duration: 115.732958ms + duration: 181.859361ms 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 12c7cb3b23..a9bb8e0480 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":"105bdce1-64c0-48ab-899d-868455867ecf","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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs method: POST response: @@ -29,7 +29,7 @@ interactions: trailer: {} content_length: 361 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:16.035861Z","id":"f720ca31-f623-4fd6-927c-86a30029bd9c","is_default":false,"name":"tf-vpc-route-01","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:16.035861Z"}' + body: '{"created_at":"2025-03-24T08:20:19.324875Z","id":"3501b80f-6388-4496-8e72-1dbadb8ac546","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-03-24T08:20:19.324875Z"}' headers: Content-Length: - "361" @@ -38,9 +38,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:16 GMT + - Mon, 24 Mar 2025 08:20:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac999cbf-9fca-4106-918e-8a9f6d60d041 + - aeac0df6-1da2-4c80-8bae-0f9d8d18a706 status: 200 OK code: 200 - duration: 598.078666ms + duration: 427.760157ms - id: 1 request: proto: HTTP/1.1 @@ -67,8 +67,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/f720ca31-f623-4fd6-927c-86a30029bd9c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/3501b80f-6388-4496-8e72-1dbadb8ac546 method: GET response: proto: HTTP/2.0 @@ -78,7 +78,7 @@ interactions: trailer: {} content_length: 361 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:16.035861Z","id":"f720ca31-f623-4fd6-927c-86a30029bd9c","is_default":false,"name":"tf-vpc-route-01","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:16.035861Z"}' + body: '{"created_at":"2025-03-24T08:20:19.324875Z","id":"3501b80f-6388-4496-8e72-1dbadb8ac546","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-03-24T08:20:19.324875Z"}' headers: Content-Length: - "361" @@ -87,9 +87,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:16 GMT + - Mon, 24 Mar 2025 08:20:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,28 +97,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65843e65-1e7e-4d3e-9de2-c9d1b4b166cf + - e0e23bd4-bc4d-4f48-988e-7a6da1d4d275 status: 200 OK code: 200 - duration: 31.3595ms + duration: 124.117794ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 147 + content_length: 149 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-pn_route","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}' + body: '{"name":"tf-pn_route_2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":null,"vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: @@ -127,20 +127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1038 + content_length: 1018 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:16.183673Z","dhcp_enabled":true,"id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","name":"tf-pn_route","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.183673Z","id":"403d4d59-a7a4-4ac1-9035-a63eb6c4598f","private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.20.0/22","updated_at":"2025-01-28T10:05:16.183673Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"},{"created_at":"2025-01-28T10:05:16.183673Z","id":"434bb0b8-72df-4500-9c31-e029ccc4d535","private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:b6aa::/64","updated_at":"2025-01-28T10:05:16.183673Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}],"tags":[],"updated_at":"2025-01-28T10:05:16.183673Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}' + body: '{"created_at":"2025-03-24T08:20:19.720438Z","dhcp_enabled":true,"id":"d44268b2-56ac-4d17-af16-5a782a7230da","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-03-24T08:20:19.720438Z","id":"8a9a380c-889b-4600-8226-04a031a0d551","private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.124.0/22","updated_at":"2025-03-24T08:20:19.720438Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"},{"created_at":"2025-03-24T08:20:19.720438Z","id":"1295a2f9-5a7c-4b7d-a6b7-4ed58f90ee1c","private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:4c57::/64","updated_at":"2025-03-24T08:20:19.720438Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}],"tags":[],"updated_at":"2025-03-24T08:20:19.720438Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}' headers: Content-Length: - - "1038" + - "1018" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:16 GMT + - Mon, 24 Mar 2025 08:20:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -148,48 +148,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 33a000f0-4cad-4525-8aed-4ff11b724139 + - 936683ff-e2bf-47e3-b39e-b53e76a3cae2 status: 200 OK code: 200 - duration: 828.82ms + duration: 873.712752ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 147 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-pn_route","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":null,"vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}' 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/096f0b26-855f-44a6-bb4f-eb76a73f42a0 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1015 + content_length: 1016 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:16.183673Z","dhcp_enabled":true,"id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","name":"tf-pn_route","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.183673Z","id":"403d4d59-a7a4-4ac1-9035-a63eb6c4598f","private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.20.0/22","updated_at":"2025-01-28T10:05:16.183673Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"},{"created_at":"2025-01-28T10:05:16.183673Z","id":"434bb0b8-72df-4500-9c31-e029ccc4d535","private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:b6aa::/64","updated_at":"2025-01-28T10:05:16.183673Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}],"tags":[],"updated_at":"2025-01-28T10:05:16.183673Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}' + body: '{"created_at":"2025-03-24T08:20:19.650254Z","dhcp_enabled":true,"id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","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-03-24T08:20:19.650254Z","id":"0214726b-3bc7-4624-8d87-ad7a458d08eb","private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.128.0/22","updated_at":"2025-03-24T08:20:19.650254Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"},{"created_at":"2025-03-24T08:20:19.650254Z","id":"20dcf9b9-028c-4917-97ce-bc4e282da973","private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:fd11::/64","updated_at":"2025-03-24T08:20:19.650254Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}],"tags":[],"updated_at":"2025-03-24T08:20:19.650254Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}' headers: Content-Length: - - "1015" + - "1016" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:16 GMT + - Mon, 24 Mar 2025 08:20:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,50 +199,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 108c7270-361a-4c30-b0c4-f5c984060dce + - ecedb97c-0d3e-4b6e-92ce-cb8ade124ac8 status: 200 OK code: 200 - duration: 32.684791ms + duration: 873.635835ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 149 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-pn_route_2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}' + 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 - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/080dfb1a-37f5-4757-b98e-348b0b40ae43 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1017 + content_length: 1016 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:16.253771Z","dhcp_enabled":true,"id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","name":"tf-pn_route_2","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.253771Z","id":"b90c6455-1228-4bcd-b33f-6d4bebb9eadf","private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.28.0/22","updated_at":"2025-01-28T10:05:16.253771Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"},{"created_at":"2025-01-28T10:05:16.253771Z","id":"af716d85-14d3-4535-bffb-67bc68ab68a7","private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:5f94::/64","updated_at":"2025-01-28T10:05:16.253771Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}],"tags":[],"updated_at":"2025-01-28T10:05:16.253771Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}' + body: '{"created_at":"2025-03-24T08:20:19.650254Z","dhcp_enabled":true,"id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","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-03-24T08:20:19.650254Z","id":"0214726b-3bc7-4624-8d87-ad7a458d08eb","private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.128.0/22","updated_at":"2025-03-24T08:20:19.650254Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"},{"created_at":"2025-03-24T08:20:19.650254Z","id":"20dcf9b9-028c-4917-97ce-bc4e282da973","private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:fd11::/64","updated_at":"2025-03-24T08:20:19.650254Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}],"tags":[],"updated_at":"2025-03-24T08:20:19.650254Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}' headers: Content-Length: - - "1017" + - "1016" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:17 GMT + - Mon, 24 Mar 2025 08:20:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -248,10 +248,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 29b6d1d4-542e-4a23-994c-466ef72a8ee6 + - 0fd9569e-a5fd-4a54-bc49-37af8de02268 status: 200 OK code: 200 - duration: 897.507875ms + duration: 125.8379ms - id: 5 request: proto: HTTP/1.1 @@ -267,8 +267,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9cb3032b-1bb9-4ced-a0e8-e099d7f65319 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d44268b2-56ac-4d17-af16-5a782a7230da method: GET response: proto: HTTP/2.0 @@ -276,20 +276,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1017 + content_length: 1018 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:16.253771Z","dhcp_enabled":true,"id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","name":"tf-pn_route_2","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.253771Z","id":"b90c6455-1228-4bcd-b33f-6d4bebb9eadf","private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.28.0/22","updated_at":"2025-01-28T10:05:16.253771Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"},{"created_at":"2025-01-28T10:05:16.253771Z","id":"af716d85-14d3-4535-bffb-67bc68ab68a7","private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:5f94::/64","updated_at":"2025-01-28T10:05:16.253771Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}],"tags":[],"updated_at":"2025-01-28T10:05:16.253771Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}' + body: '{"created_at":"2025-03-24T08:20:19.720438Z","dhcp_enabled":true,"id":"d44268b2-56ac-4d17-af16-5a782a7230da","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-03-24T08:20:19.720438Z","id":"8a9a380c-889b-4600-8226-04a031a0d551","private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.124.0/22","updated_at":"2025-03-24T08:20:19.720438Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"},{"created_at":"2025-03-24T08:20:19.720438Z","id":"1295a2f9-5a7c-4b7d-a6b7-4ed58f90ee1c","private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:4c57::/64","updated_at":"2025-03-24T08:20:19.720438Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}],"tags":[],"updated_at":"2025-03-24T08:20:19.720438Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}' headers: Content-Length: - - "1017" + - "1018" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:17 GMT + - Mon, 24 Mar 2025 08:20:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -297,10 +297,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6314c095-e448-49e9-b860-11c44d434c1b + - 6cadd611-5cc8-4dea-bdac-3013033afe31 status: 200 OK code: 200 - duration: 36.4835ms + duration: 144.923138ms - id: 6 request: proto: HTTP/1.1 @@ -316,8 +316,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/f720ca31-f623-4fd6-927c-86a30029bd9c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/3501b80f-6388-4496-8e72-1dbadb8ac546 method: GET response: proto: HTTP/2.0 @@ -327,7 +327,7 @@ interactions: trailer: {} content_length: 361 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:16.035861Z","id":"f720ca31-f623-4fd6-927c-86a30029bd9c","is_default":false,"name":"tf-vpc-route-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":2,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-01-28T10:05:16.035861Z"}' + body: '{"created_at":"2025-03-24T08:20:19.324875Z","id":"3501b80f-6388-4496-8e72-1dbadb8ac546","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-03-24T08:20:19.324875Z"}' headers: Content-Length: - "361" @@ -336,9 +336,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:18 GMT + - Mon, 24 Mar 2025 08:20:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -346,10 +346,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9b8853fd-74bd-4ad8-9ba0-aace2e0a58ed + - 838d9c41-b1d7-4048-8954-cd8e15026394 status: 200 OK code: 200 - duration: 58.58675ms + duration: 85.508499ms - id: 7 request: proto: HTTP/1.1 @@ -365,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/9cb3032b-1bb9-4ced-a0e8-e099d7f65319 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d44268b2-56ac-4d17-af16-5a782a7230da method: GET response: proto: HTTP/2.0 @@ -374,20 +374,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1017 + content_length: 1018 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:16.253771Z","dhcp_enabled":true,"id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","name":"tf-pn_route_2","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.253771Z","id":"b90c6455-1228-4bcd-b33f-6d4bebb9eadf","private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.28.0/22","updated_at":"2025-01-28T10:05:16.253771Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"},{"created_at":"2025-01-28T10:05:16.253771Z","id":"af716d85-14d3-4535-bffb-67bc68ab68a7","private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:5f94::/64","updated_at":"2025-01-28T10:05:16.253771Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}],"tags":[],"updated_at":"2025-01-28T10:05:16.253771Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}' + body: '{"created_at":"2025-03-24T08:20:19.720438Z","dhcp_enabled":true,"id":"d44268b2-56ac-4d17-af16-5a782a7230da","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-03-24T08:20:19.720438Z","id":"8a9a380c-889b-4600-8226-04a031a0d551","private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.124.0/22","updated_at":"2025-03-24T08:20:19.720438Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"},{"created_at":"2025-03-24T08:20:19.720438Z","id":"1295a2f9-5a7c-4b7d-a6b7-4ed58f90ee1c","private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:4c57::/64","updated_at":"2025-03-24T08:20:19.720438Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}],"tags":[],"updated_at":"2025-03-24T08:20:19.720438Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}' headers: Content-Length: - - "1017" + - "1018" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:18 GMT + - Mon, 24 Mar 2025 08:20:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -395,10 +395,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3eb485fa-b954-4d32-a58e-1ba3c542e471 + - 428b7d49-c40c-4b71-a3d9-e1d9b65ed57e status: 200 OK code: 200 - duration: 29.199125ms + duration: 130.849243ms - id: 8 request: proto: HTTP/1.1 @@ -414,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/096f0b26-855f-44a6-bb4f-eb76a73f42a0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/080dfb1a-37f5-4757-b98e-348b0b40ae43 method: GET response: proto: HTTP/2.0 @@ -423,20 +423,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1038 + content_length: 1016 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:16.183673Z","dhcp_enabled":true,"id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","name":"tf-pn_route","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.183673Z","id":"403d4d59-a7a4-4ac1-9035-a63eb6c4598f","private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.20.0/22","updated_at":"2025-01-28T10:05:16.183673Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"},{"created_at":"2025-01-28T10:05:16.183673Z","id":"434bb0b8-72df-4500-9c31-e029ccc4d535","private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:b6aa::/64","updated_at":"2025-01-28T10:05:16.183673Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}],"tags":[],"updated_at":"2025-01-28T10:05:16.183673Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}' + body: '{"created_at":"2025-03-24T08:20:19.650254Z","dhcp_enabled":true,"id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","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-03-24T08:20:19.650254Z","id":"0214726b-3bc7-4624-8d87-ad7a458d08eb","private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.128.0/22","updated_at":"2025-03-24T08:20:19.650254Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"},{"created_at":"2025-03-24T08:20:19.650254Z","id":"20dcf9b9-028c-4917-97ce-bc4e282da973","private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:fd11::/64","updated_at":"2025-03-24T08:20:19.650254Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}],"tags":[],"updated_at":"2025-03-24T08:20:19.650254Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}' headers: Content-Length: - - "1038" + - "1016" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:18 GMT + - Mon, 24 Mar 2025 08:20:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -444,10 +444,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0444d859-392f-4310-9ff4-8d3fb46069a2 + - ff34b662-6998-4b43-a120-04280ae13d90 status: 200 OK code: 200 - duration: 35.890375ms + duration: 130.839207ms - id: 9 request: proto: HTTP/1.1 @@ -463,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/f720ca31-f623-4fd6-927c-86a30029bd9c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/3501b80f-6388-4496-8e72-1dbadb8ac546 method: GET response: proto: HTTP/2.0 @@ -474,7 +474,7 @@ interactions: trailer: {} content_length: 361 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:16.035861Z","id":"f720ca31-f623-4fd6-927c-86a30029bd9c","is_default":false,"name":"tf-vpc-route-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":2,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-01-28T10:05:16.035861Z"}' + body: '{"created_at":"2025-03-24T08:20:19.324875Z","id":"3501b80f-6388-4496-8e72-1dbadb8ac546","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-03-24T08:20:19.324875Z"}' headers: Content-Length: - "361" @@ -483,9 +483,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:19 GMT + - Mon, 24 Mar 2025 08:20:22 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -493,10 +493,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c35cb989-f19d-43f4-be00-ac9f06aa981b + - 8ebd2e01-94bc-4a09-bf38-fa760ad144da status: 200 OK code: 200 - duration: 36.600458ms + duration: 108.915404ms - id: 10 request: proto: HTTP/1.1 @@ -512,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/9cb3032b-1bb9-4ced-a0e8-e099d7f65319 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d44268b2-56ac-4d17-af16-5a782a7230da method: GET response: proto: HTTP/2.0 @@ -521,20 +521,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1040 + content_length: 1018 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:16.253771Z","dhcp_enabled":true,"id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","name":"tf-pn_route_2","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.253771Z","id":"b90c6455-1228-4bcd-b33f-6d4bebb9eadf","private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.28.0/22","updated_at":"2025-01-28T10:05:16.253771Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"},{"created_at":"2025-01-28T10:05:16.253771Z","id":"af716d85-14d3-4535-bffb-67bc68ab68a7","private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:5f94::/64","updated_at":"2025-01-28T10:05:16.253771Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}],"tags":[],"updated_at":"2025-01-28T10:05:16.253771Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}' + body: '{"created_at":"2025-03-24T08:20:19.720438Z","dhcp_enabled":true,"id":"d44268b2-56ac-4d17-af16-5a782a7230da","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-03-24T08:20:19.720438Z","id":"8a9a380c-889b-4600-8226-04a031a0d551","private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.124.0/22","updated_at":"2025-03-24T08:20:19.720438Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"},{"created_at":"2025-03-24T08:20:19.720438Z","id":"1295a2f9-5a7c-4b7d-a6b7-4ed58f90ee1c","private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:4c57::/64","updated_at":"2025-03-24T08:20:19.720438Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}],"tags":[],"updated_at":"2025-03-24T08:20:19.720438Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}' headers: Content-Length: - - "1040" + - "1018" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:19 GMT + - Mon, 24 Mar 2025 08:20:22 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -542,10 +542,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ba13b9d5-2965-4f92-a82a-0515eca9240f + - d4f25ecd-246f-46db-9d88-b7d51104115f status: 200 OK code: 200 - duration: 31.917083ms + duration: 89.635395ms - id: 11 request: proto: HTTP/1.1 @@ -561,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/fr-par/private-networks/096f0b26-855f-44a6-bb4f-eb76a73f42a0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/080dfb1a-37f5-4757-b98e-348b0b40ae43 method: GET response: proto: HTTP/2.0 @@ -570,20 +570,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1015 + content_length: 1016 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:16.183673Z","dhcp_enabled":true,"id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","name":"tf-pn_route","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.183673Z","id":"403d4d59-a7a4-4ac1-9035-a63eb6c4598f","private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.20.0/22","updated_at":"2025-01-28T10:05:16.183673Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"},{"created_at":"2025-01-28T10:05:16.183673Z","id":"434bb0b8-72df-4500-9c31-e029ccc4d535","private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:b6aa::/64","updated_at":"2025-01-28T10:05:16.183673Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}],"tags":[],"updated_at":"2025-01-28T10:05:16.183673Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}' + body: '{"created_at":"2025-03-24T08:20:19.650254Z","dhcp_enabled":true,"id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","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-03-24T08:20:19.650254Z","id":"0214726b-3bc7-4624-8d87-ad7a458d08eb","private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.128.0/22","updated_at":"2025-03-24T08:20:19.650254Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"},{"created_at":"2025-03-24T08:20:19.650254Z","id":"20dcf9b9-028c-4917-97ce-bc4e282da973","private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:fd11::/64","updated_at":"2025-03-24T08:20:19.650254Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}],"tags":[],"updated_at":"2025-03-24T08:20:19.650254Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}' headers: Content-Length: - - "1015" + - "1016" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:19 GMT + - Mon, 24 Mar 2025 08:20:22 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -591,29 +591,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 752d1984-8288-4b16-949e-902497533424 + - 3d6107c2-e2a5-434e-95db-858f5e519d0d status: 200 OK code: 200 - duration: 33.71425ms + duration: 117.286591ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 171 + content_length: 145 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"tf-gw-route","tags":[],"type":"VPC-GW-S","upstream_dns_servers":[],"enable_smtp":false,"enable_bastion":false}' + 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways method: POST response: proto: HTTP/2.0 @@ -621,20 +621,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1007 + content_length: 887 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-28T10:05:22.098871Z","gateway_networks":[],"id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","ip":{"address":"163.172.190.242","created_at":"2025-01-28T10:05:22.080386Z","gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"a66f37f5-b1c0-4dc3-835d-4b1481ffd96a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"242-190-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-01-28T10:05:22.080386Z","zone":"fr-par-1"},"ip_mobility_enabled":false,"is_legacy":false,"name":"tf-gw-route","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-28T10:05:22.098871Z","upstream_dns_servers":[],"version":null,"zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T08:20:24.144155Z","gateway_networks":[],"id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","ipv4":{"address":"212.47.234.64","created_at":"2025-03-24T08:20:24.092798Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"b1f7a0e9-81fc-4dfb-badc-13a65562fb71","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"64-234-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T08:20:24.092798Z","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-03-24T08:20:24.144155Z","zone":"fr-par-1"}' headers: Content-Length: - - "1007" + - "887" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:22 GMT + - Mon, 24 Mar 2025 08:20:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -642,10 +642,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ebedd400-6617-4ce6-9ea2-c953f5cc8f6c + - fbe900be-4274-4b02-827c-85a81742e554 status: 200 OK code: 200 - duration: 1.063000208s + duration: 1.310945416s - id: 13 request: proto: HTTP/1.1 @@ -661,8 +661,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/c44b6bb5-dc33-4e76-8f88-7df018c50db0 method: GET response: proto: HTTP/2.0 @@ -670,20 +670,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 979 + content_length: 905 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-28T10:05:22.098871Z","gateway_networks":[],"id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","ip":{"address":"163.172.190.242","created_at":"2025-01-28T10:05:22.080386Z","gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"a66f37f5-b1c0-4dc3-835d-4b1481ffd96a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"242-190-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-01-28T10:05:22.080386Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"tf-gw-route","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-28T10:05:22.135097Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T08:20:24.144155Z","gateway_networks":[],"id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","ipv4":{"address":"212.47.234.64","created_at":"2025-03-24T08:20:24.092798Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"b1f7a0e9-81fc-4dfb-badc-13a65562fb71","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"64-234-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T08:20:24.092798Z","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-03-24T08:20:24.217907Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "979" + - "905" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:22 GMT + - Mon, 24 Mar 2025 08:20:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -691,10 +691,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 961758e8-b681-49c8-b660-897233840c42 + - ccbfb2e3-d397-415d-866b-8e0270c68a44 status: 200 OK code: 200 - duration: 51.023709ms + duration: 111.718145ms - id: 14 request: proto: HTTP/1.1 @@ -710,8 +710,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/c44b6bb5-dc33-4e76-8f88-7df018c50db0 method: GET response: proto: HTTP/2.0 @@ -719,20 +719,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1006 + content_length: 902 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-28T10:05:22.098871Z","gateway_networks":[],"id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","ip":{"address":"163.172.190.242","created_at":"2025-01-28T10:05:22.080386Z","gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"a66f37f5-b1c0-4dc3-835d-4b1481ffd96a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"242-190-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-01-28T10:05:22.080386Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"tf-gw-route","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-28T10:05:26.963603Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T08:20:24.144155Z","gateway_networks":[],"id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","ipv4":{"address":"212.47.234.64","created_at":"2025-03-24T08:20:24.092798Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"b1f7a0e9-81fc-4dfb-badc-13a65562fb71","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"64-234-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T08:20:24.092798Z","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-03-24T08:20:26.878683Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "1006" + - "902" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:27 GMT + - Mon, 24 Mar 2025 08:20:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -740,10 +740,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9076ab4b-2d58-4c16-8a8c-f82fe8d314d7 + - 265c8b61-b4d7-4163-a9dc-3986c8155099 status: 200 OK code: 200 - duration: 27.969708ms + duration: 136.582478ms - id: 15 request: proto: HTTP/1.1 @@ -759,8 +759,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/c44b6bb5-dc33-4e76-8f88-7df018c50db0 method: GET response: proto: HTTP/2.0 @@ -768,20 +768,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 976 + content_length: 902 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-28T10:05:22.098871Z","gateway_networks":[],"id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","ip":{"address":"163.172.190.242","created_at":"2025-01-28T10:05:22.080386Z","gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"a66f37f5-b1c0-4dc3-835d-4b1481ffd96a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"242-190-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-01-28T10:05:22.080386Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"tf-gw-route","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-28T10:05:26.963603Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T08:20:24.144155Z","gateway_networks":[],"id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","ipv4":{"address":"212.47.234.64","created_at":"2025-03-24T08:20:24.092798Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"b1f7a0e9-81fc-4dfb-badc-13a65562fb71","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"64-234-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T08:20:24.092798Z","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-03-24T08:20:26.878683Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "976" + - "902" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:27 GMT + - Mon, 24 Mar 2025 08:20:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -789,10 +789,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0e871867-615c-4210-904f-33977186fa84 + - f98e8103-e9e3-4492-9271-430933e33eb1 status: 200 OK code: 200 - duration: 28.500709ms + duration: 99.553551ms - id: 16 request: proto: HTTP/1.1 @@ -808,8 +808,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/c44b6bb5-dc33-4e76-8f88-7df018c50db0 method: GET response: proto: HTTP/2.0 @@ -817,20 +817,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 976 + content_length: 902 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-28T10:05:22.098871Z","gateway_networks":[],"id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","ip":{"address":"163.172.190.242","created_at":"2025-01-28T10:05:22.080386Z","gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"a66f37f5-b1c0-4dc3-835d-4b1481ffd96a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"242-190-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-01-28T10:05:22.080386Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"tf-gw-route","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-28T10:05:26.963603Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T08:20:24.144155Z","gateway_networks":[],"id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","ipv4":{"address":"212.47.234.64","created_at":"2025-03-24T08:20:24.092798Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"b1f7a0e9-81fc-4dfb-badc-13a65562fb71","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"64-234-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T08:20:24.092798Z","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-03-24T08:20:26.878683Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "976" + - "902" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:27 GMT + - Mon, 24 Mar 2025 08:20:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -838,10 +838,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b860e453-3579-4e08-9ec2-9b5a189bb9a0 + - bca120dc-e84b-46cf-80cf-08fdb877c5c0 status: 200 OK code: 200 - duration: 27.835333ms + duration: 115.597448ms - id: 17 request: proto: HTTP/1.1 @@ -857,8 +857,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/c44b6bb5-dc33-4e76-8f88-7df018c50db0 method: GET response: proto: HTTP/2.0 @@ -866,20 +866,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1006 + content_length: 902 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-28T10:05:22.098871Z","gateway_networks":[],"id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","ip":{"address":"163.172.190.242","created_at":"2025-01-28T10:05:22.080386Z","gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"a66f37f5-b1c0-4dc3-835d-4b1481ffd96a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"242-190-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-01-28T10:05:22.080386Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"tf-gw-route","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-28T10:05:26.963603Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T08:20:24.144155Z","gateway_networks":[],"id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","ipv4":{"address":"212.47.234.64","created_at":"2025-03-24T08:20:24.092798Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"b1f7a0e9-81fc-4dfb-badc-13a65562fb71","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"64-234-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T08:20:24.092798Z","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-03-24T08:20:26.878683Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "1006" + - "902" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:27 GMT + - Mon, 24 Mar 2025 08:20:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -887,29 +887,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 074a5b45-45ec-424c-8d6f-f40acbe8125b + - dee4eb77-388e-4609-8af0-eb5e91272e07 status: 200 OK code: 200 - duration: 30.743916ms + duration: 112.09829ms - id: 18 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 217 + content_length: 164 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","enable_masquerade":true,"enable_dhcp":true,"ipam_config":{"push_default_route":true,"ipam_ip_id":null}}' + body: '{"gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks method: POST response: proto: HTTP/2.0 @@ -917,20 +917,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 175 + content_length: 384 uncompressed: false - body: '{"current_state":"configuring","message":"resource is in a transient state","resource":"gateway","resource_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","type":"transient_state"}' + body: '{"created_at":"2025-03-24T08:20:30.432064Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"6bdb89d1-2dfd-43d0-ba57-8b24c17e9523","ipam_ip_id":"a0b14595-67f8-4ab9-95ae-060867bd837a","masquerade_enabled":true,"private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","push_default_route":true,"status":"created","updated_at":"2025-03-24T08:20:30.432064Z","zone":"fr-par-1"}' headers: Content-Length: - - "175" + - "384" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:27 GMT + - Mon, 24 Mar 2025 08:20:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -938,29 +938,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 07bceda8-9cb6-4e29-a37f-494891c71f78 - status: 409 Conflict - code: 409 - duration: 560.730375ms + - b6582ef2-cc4d-4753-b817-a1d121a34388 + status: 200 OK + code: 200 + duration: 749.182931ms - id: 19 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 217 + content_length: 164 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","enable_masquerade":true,"enable_dhcp":true,"ipam_config":{"push_default_route":true,"ipam_ip_id":null}}' + body: '{"gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks method: POST response: proto: HTTP/2.0 @@ -968,20 +968,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 476 + content_length: 175 uncompressed: false - body: '{"address":"172.16.28.2/22","created_at":"2025-01-28T10:05:27.777096Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"1d6506fd-ebd0-4a54-96ef-08e3af29f175","ipam_config":{"ipam_ip_id":"026259f3-d6c2-43cd-a548-a8387566ab54","push_default_route":true},"mac_address":null,"private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","status":"created","updated_at":"2025-01-28T10:05:27.777096Z","zone":"fr-par-1"}' + body: '{"current_state":"configuring","message":"resource is in a transient state","resource":"gateway","resource_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","type":"transient_state"}' headers: Content-Length: - - "476" + - "175" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:27 GMT + - Mon, 24 Mar 2025 08:20:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -989,10 +989,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 317c4ddc-afcf-413a-8af2-fe37dbfa8cc2 - status: 200 OK - code: 200 - duration: 561.219333ms + - 76e4e1e8-b65f-41ef-a40e-2cc9a559dd2a + status: 409 Conflict + code: 409 + duration: 799.136173ms - id: 20 request: proto: HTTP/1.1 @@ -1008,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-gw/v1/zones/fr-par-1/gateways/da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/c44b6bb5-dc33-4e76-8f88-7df018c50db0 method: GET response: proto: HTTP/2.0 @@ -1017,20 +1017,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1456 + content_length: 1290 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-28T10:05:22.098871Z","gateway_networks":[{"address":"172.16.28.2/22","created_at":"2025-01-28T10:05:27.777096Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"1d6506fd-ebd0-4a54-96ef-08e3af29f175","ipam_config":{"ipam_ip_id":"026259f3-d6c2-43cd-a548-a8387566ab54","push_default_route":true},"mac_address":null,"private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","status":"created","updated_at":"2025-01-28T10:05:27.777096Z","zone":"fr-par-1"}],"id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","ip":{"address":"163.172.190.242","created_at":"2025-01-28T10:05:22.080386Z","gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"a66f37f5-b1c0-4dc3-835d-4b1481ffd96a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"242-190-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-01-28T10:05:22.080386Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"tf-gw-route","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-28T10:05:27.865511Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T08:20:24.144155Z","gateway_networks":[{"created_at":"2025-03-24T08:20:30.432064Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"6bdb89d1-2dfd-43d0-ba57-8b24c17e9523","ipam_ip_id":"a0b14595-67f8-4ab9-95ae-060867bd837a","masquerade_enabled":true,"private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","push_default_route":true,"status":"created","updated_at":"2025-03-24T08:20:30.432064Z","zone":"fr-par-1"}],"id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","ipv4":{"address":"212.47.234.64","created_at":"2025-03-24T08:20:24.092798Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"b1f7a0e9-81fc-4dfb-badc-13a65562fb71","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"64-234-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T08:20:24.092798Z","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-03-24T08:20:30.520014Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "1456" + - "1290" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:27 GMT + - Mon, 24 Mar 2025 08:20:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1038,10 +1038,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3b193102-f6b8-4a77-b6c5-f56e86938ecc + - a8753dfd-30a5-4eb5-b389-97b1ef2cf2ff status: 200 OK code: 200 - duration: 43.932417ms + duration: 99.753002ms - id: 21 request: proto: HTTP/1.1 @@ -1057,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-gw/v1/zones/fr-par-1/gateways/da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/c44b6bb5-dc33-4e76-8f88-7df018c50db0 method: GET response: proto: HTTP/2.0 @@ -1066,20 +1066,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1499 + content_length: 1290 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-28T10:05:22.098871Z","gateway_networks":[{"address":"172.16.28.2/22","created_at":"2025-01-28T10:05:27.777096Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"1d6506fd-ebd0-4a54-96ef-08e3af29f175","ipam_config":{"ipam_ip_id":"026259f3-d6c2-43cd-a548-a8387566ab54","push_default_route":true},"mac_address":null,"private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","status":"created","updated_at":"2025-01-28T10:05:27.777096Z","zone":"fr-par-1"}],"id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","ip":{"address":"163.172.190.242","created_at":"2025-01-28T10:05:22.080386Z","gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"a66f37f5-b1c0-4dc3-835d-4b1481ffd96a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"242-190-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-01-28T10:05:22.080386Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"tf-gw-route","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-28T10:05:27.865511Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T08:20:24.144155Z","gateway_networks":[{"created_at":"2025-03-24T08:20:30.432064Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"6bdb89d1-2dfd-43d0-ba57-8b24c17e9523","ipam_ip_id":"a0b14595-67f8-4ab9-95ae-060867bd837a","masquerade_enabled":true,"private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","push_default_route":true,"status":"created","updated_at":"2025-03-24T08:20:30.432064Z","zone":"fr-par-1"}],"id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","ipv4":{"address":"212.47.234.64","created_at":"2025-03-24T08:20:24.092798Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"b1f7a0e9-81fc-4dfb-badc-13a65562fb71","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"64-234-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T08:20:24.092798Z","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-03-24T08:20:30.520014Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "1499" + - "1290" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:27 GMT + - Mon, 24 Mar 2025 08:20:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1087,10 +1087,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6f3c2956-dfbb-4f3d-91ce-13f1e261025e + - bf3eafb3-c6fc-4592-9c7b-44d438629715 status: 200 OK code: 200 - duration: 46.615875ms + duration: 99.766076ms - id: 22 request: proto: HTTP/1.1 @@ -1106,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-gw/v1/zones/fr-par-1/gateways/da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/c44b6bb5-dc33-4e76-8f88-7df018c50db0 method: GET response: proto: HTTP/2.0 @@ -1115,20 +1115,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1456 + content_length: 1290 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-28T10:05:22.098871Z","gateway_networks":[{"address":"172.16.28.2/22","created_at":"2025-01-28T10:05:27.777096Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"1d6506fd-ebd0-4a54-96ef-08e3af29f175","ipam_config":{"ipam_ip_id":"026259f3-d6c2-43cd-a548-a8387566ab54","push_default_route":true},"mac_address":null,"private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","status":"created","updated_at":"2025-01-28T10:05:27.777096Z","zone":"fr-par-1"}],"id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","ip":{"address":"163.172.190.242","created_at":"2025-01-28T10:05:22.080386Z","gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"a66f37f5-b1c0-4dc3-835d-4b1481ffd96a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"242-190-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-01-28T10:05:22.080386Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"tf-gw-route","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-28T10:05:27.865511Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T08:20:24.144155Z","gateway_networks":[{"created_at":"2025-03-24T08:20:30.432064Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"6bdb89d1-2dfd-43d0-ba57-8b24c17e9523","ipam_ip_id":"a0b14595-67f8-4ab9-95ae-060867bd837a","masquerade_enabled":true,"private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","push_default_route":true,"status":"created","updated_at":"2025-03-24T08:20:30.432064Z","zone":"fr-par-1"}],"id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","ipv4":{"address":"212.47.234.64","created_at":"2025-03-24T08:20:24.092798Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"b1f7a0e9-81fc-4dfb-badc-13a65562fb71","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"64-234-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T08:20:24.092798Z","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-03-24T08:20:30.520014Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "1456" + - "1290" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:33 GMT + - Mon, 24 Mar 2025 08:20:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1136,10 +1136,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a2b363b-b76c-45de-96f9-8cfa8b9c4e84 + - 3c53f5dc-6556-4b5a-a093-652eec68eabc status: 200 OK code: 200 - duration: 534.057417ms + duration: 98.914993ms - id: 23 request: proto: HTTP/1.1 @@ -1155,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-gw/v1/zones/fr-par-1/gateways/da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/c44b6bb5-dc33-4e76-8f88-7df018c50db0 method: GET response: proto: HTTP/2.0 @@ -1164,20 +1164,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1499 + content_length: 1290 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-28T10:05:22.098871Z","gateway_networks":[{"address":"172.16.28.2/22","created_at":"2025-01-28T10:05:27.777096Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"1d6506fd-ebd0-4a54-96ef-08e3af29f175","ipam_config":{"ipam_ip_id":"026259f3-d6c2-43cd-a548-a8387566ab54","push_default_route":true},"mac_address":null,"private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","status":"created","updated_at":"2025-01-28T10:05:27.777096Z","zone":"fr-par-1"}],"id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","ip":{"address":"163.172.190.242","created_at":"2025-01-28T10:05:22.080386Z","gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"a66f37f5-b1c0-4dc3-835d-4b1481ffd96a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"242-190-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-01-28T10:05:22.080386Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"tf-gw-route","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-28T10:05:27.865511Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T08:20:24.144155Z","gateway_networks":[{"created_at":"2025-03-24T08:20:30.432064Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"6bdb89d1-2dfd-43d0-ba57-8b24c17e9523","ipam_ip_id":"a0b14595-67f8-4ab9-95ae-060867bd837a","masquerade_enabled":true,"private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","push_default_route":true,"status":"created","updated_at":"2025-03-24T08:20:30.432064Z","zone":"fr-par-1"}],"id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","ipv4":{"address":"212.47.234.64","created_at":"2025-03-24T08:20:24.092798Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"b1f7a0e9-81fc-4dfb-badc-13a65562fb71","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"64-234-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T08:20:24.092798Z","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-03-24T08:20:30.520014Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "1499" + - "1290" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:33 GMT + - Mon, 24 Mar 2025 08:20:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1185,10 +1185,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3be6d980-7b9a-4d42-a47e-4834a53e593a + - e5ae5768-0954-40ca-b38b-70c9015d1dd2 status: 200 OK code: 200 - duration: 538.463083ms + duration: 98.906594ms - id: 24 request: proto: HTTP/1.1 @@ -1204,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-gw/v1/zones/fr-par-1/gateways/da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/c44b6bb5-dc33-4e76-8f88-7df018c50db0 method: GET response: proto: HTTP/2.0 @@ -1213,20 +1213,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1518 + content_length: 1328 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-28T10:05:22.098871Z","gateway_networks":[{"address":"172.16.28.2/22","created_at":"2025-01-28T10:05:27.777096Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"1d6506fd-ebd0-4a54-96ef-08e3af29f175","ipam_config":{"ipam_ip_id":"026259f3-d6c2-43cd-a548-a8387566ab54","push_default_route":true},"mac_address":"02:00:00:12:31:08","private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","status":"configuring","updated_at":"2025-01-28T10:05:33.642882Z","zone":"fr-par-1"}],"id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","ip":{"address":"163.172.190.242","created_at":"2025-01-28T10:05:22.080386Z","gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"a66f37f5-b1c0-4dc3-835d-4b1481ffd96a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"242-190-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-01-28T10:05:22.080386Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"tf-gw-route","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-28T10:05:27.865511Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T08:20:24.144155Z","gateway_networks":[{"created_at":"2025-03-24T08:20:30.432064Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"6bdb89d1-2dfd-43d0-ba57-8b24c17e9523","ipam_ip_id":"a0b14595-67f8-4ab9-95ae-060867bd837a","mac_address":"02:00:00:10:C0:AF","masquerade_enabled":true,"private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","push_default_route":true,"status":"configuring","updated_at":"2025-03-24T08:20:36.175856Z","zone":"fr-par-1"}],"id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","ipv4":{"address":"212.47.234.64","created_at":"2025-03-24T08:20:24.092798Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"b1f7a0e9-81fc-4dfb-badc-13a65562fb71","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"64-234-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T08:20:24.092798Z","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-03-24T08:20:30.520014Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "1518" + - "1328" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:38 GMT + - Mon, 24 Mar 2025 08:20:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1234,10 +1234,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3ea51e9b-3225-47d4-9418-92784ec78382 + - a4176c50-87cd-41b2-bb02-63253ba818bc status: 200 OK code: 200 - duration: 29.468875ms + duration: 699.445113ms - id: 25 request: proto: HTTP/1.1 @@ -1253,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-gw/v1/zones/fr-par-1/gateways/da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/c44b6bb5-dc33-4e76-8f88-7df018c50db0 method: GET response: proto: HTTP/2.0 @@ -1262,20 +1262,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1475 + content_length: 1328 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-28T10:05:22.098871Z","gateway_networks":[{"address":"172.16.28.2/22","created_at":"2025-01-28T10:05:27.777096Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"1d6506fd-ebd0-4a54-96ef-08e3af29f175","ipam_config":{"ipam_ip_id":"026259f3-d6c2-43cd-a548-a8387566ab54","push_default_route":true},"mac_address":"02:00:00:12:31:08","private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","status":"configuring","updated_at":"2025-01-28T10:05:33.642882Z","zone":"fr-par-1"}],"id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","ip":{"address":"163.172.190.242","created_at":"2025-01-28T10:05:22.080386Z","gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"a66f37f5-b1c0-4dc3-835d-4b1481ffd96a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"242-190-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-01-28T10:05:22.080386Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"tf-gw-route","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-28T10:05:27.865511Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T08:20:24.144155Z","gateway_networks":[{"created_at":"2025-03-24T08:20:30.432064Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"6bdb89d1-2dfd-43d0-ba57-8b24c17e9523","ipam_ip_id":"a0b14595-67f8-4ab9-95ae-060867bd837a","mac_address":"02:00:00:10:C0:AF","masquerade_enabled":true,"private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","push_default_route":true,"status":"configuring","updated_at":"2025-03-24T08:20:36.175856Z","zone":"fr-par-1"}],"id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","ipv4":{"address":"212.47.234.64","created_at":"2025-03-24T08:20:24.092798Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"b1f7a0e9-81fc-4dfb-badc-13a65562fb71","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"64-234-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T08:20:24.092798Z","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-03-24T08:20:30.520014Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "1475" + - "1328" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:38 GMT + - Mon, 24 Mar 2025 08:20:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1283,10 +1283,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0122dd8d-0677-4b5b-8fc7-a42e5675c42b + - 1ac41a83-d56f-4fd3-bef2-53539c6ab44f status: 200 OK code: 200 - duration: 36.577833ms + duration: 649.128578ms - id: 26 request: proto: HTTP/1.1 @@ -1302,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-gw/v1/zones/fr-par-1/gateways/da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/c44b6bb5-dc33-4e76-8f88-7df018c50db0 method: GET response: proto: HTTP/2.0 @@ -1311,20 +1311,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1508 + content_length: 1318 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-28T10:05:22.098871Z","gateway_networks":[{"address":"172.16.28.2/22","created_at":"2025-01-28T10:05:27.777096Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"1d6506fd-ebd0-4a54-96ef-08e3af29f175","ipam_config":{"ipam_ip_id":"026259f3-d6c2-43cd-a548-a8387566ab54","push_default_route":true},"mac_address":"02:00:00:12:31:08","private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","status":"ready","updated_at":"2025-01-28T10:05:38.656834Z","zone":"fr-par-1"}],"id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","ip":{"address":"163.172.190.242","created_at":"2025-01-28T10:05:22.080386Z","gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"a66f37f5-b1c0-4dc3-835d-4b1481ffd96a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"242-190-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-01-28T10:05:22.080386Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"tf-gw-route","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-28T10:05:38.858381Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T08:20:24.144155Z","gateway_networks":[{"created_at":"2025-03-24T08:20:30.432064Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"6bdb89d1-2dfd-43d0-ba57-8b24c17e9523","ipam_ip_id":"a0b14595-67f8-4ab9-95ae-060867bd837a","mac_address":"02:00:00:10:C0:AF","masquerade_enabled":true,"private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","push_default_route":true,"status":"ready","updated_at":"2025-03-24T08:20:40.865930Z","zone":"fr-par-1"}],"id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","ipv4":{"address":"212.47.234.64","created_at":"2025-03-24T08:20:24.092798Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"b1f7a0e9-81fc-4dfb-badc-13a65562fb71","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"64-234-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T08:20:24.092798Z","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-03-24T08:20:41.063494Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "1508" + - "1318" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:43 GMT + - Mon, 24 Mar 2025 08:20:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1332,10 +1332,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 42f1bbaa-5a3f-497a-b7d7-1c9f8aa1a21e + - 6bcf9093-19cf-4336-95f1-f037b3941b88 status: 200 OK code: 200 - duration: 31.718875ms + duration: 98.989399ms - id: 27 request: proto: HTTP/1.1 @@ -1351,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-gw/v1/zones/fr-par-1/gateways/da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/c44b6bb5-dc33-4e76-8f88-7df018c50db0 method: GET response: proto: HTTP/2.0 @@ -1360,20 +1360,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1465 + content_length: 1318 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-28T10:05:22.098871Z","gateway_networks":[{"address":"172.16.28.2/22","created_at":"2025-01-28T10:05:27.777096Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"1d6506fd-ebd0-4a54-96ef-08e3af29f175","ipam_config":{"ipam_ip_id":"026259f3-d6c2-43cd-a548-a8387566ab54","push_default_route":true},"mac_address":"02:00:00:12:31:08","private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","status":"ready","updated_at":"2025-01-28T10:05:38.656834Z","zone":"fr-par-1"}],"id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","ip":{"address":"163.172.190.242","created_at":"2025-01-28T10:05:22.080386Z","gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"a66f37f5-b1c0-4dc3-835d-4b1481ffd96a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"242-190-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-01-28T10:05:22.080386Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"tf-gw-route","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-28T10:05:38.858381Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T08:20:24.144155Z","gateway_networks":[{"created_at":"2025-03-24T08:20:30.432064Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"6bdb89d1-2dfd-43d0-ba57-8b24c17e9523","ipam_ip_id":"a0b14595-67f8-4ab9-95ae-060867bd837a","mac_address":"02:00:00:10:C0:AF","masquerade_enabled":true,"private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","push_default_route":true,"status":"ready","updated_at":"2025-03-24T08:20:40.865930Z","zone":"fr-par-1"}],"id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","ipv4":{"address":"212.47.234.64","created_at":"2025-03-24T08:20:24.092798Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"b1f7a0e9-81fc-4dfb-badc-13a65562fb71","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"64-234-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T08:20:24.092798Z","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-03-24T08:20:41.063494Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "1465" + - "1318" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:43 GMT + - Mon, 24 Mar 2025 08:20:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1381,10 +1381,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8595a407-21e0-429f-9e68-ce9f5572dc83 + - 3a486c3c-40c0-4543-960c-63c32918a0db status: 200 OK code: 200 - duration: 28.792083ms + duration: 98.95396ms - id: 28 request: proto: HTTP/1.1 @@ -1400,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-gw/v1/zones/fr-par-1/gateway-networks/1d6506fd-ebd0-4a54-96ef-08e3af29f175 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/6bdb89d1-2dfd-43d0-ba57-8b24c17e9523 method: GET response: proto: HTTP/2.0 @@ -1409,20 +1409,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 502 + content_length: 416 uncompressed: false - body: '{"address":"172.16.28.2/22","created_at":"2025-01-28T10:05:27.777096Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"1d6506fd-ebd0-4a54-96ef-08e3af29f175","ipam_config":{"ipam_ip_id":"026259f3-d6c2-43cd-a548-a8387566ab54","push_default_route":true},"mac_address":"02:00:00:12:31:08","private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","status":"ready","updated_at":"2025-01-28T10:05:38.656834Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-24T08:20:30.432064Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"6bdb89d1-2dfd-43d0-ba57-8b24c17e9523","ipam_ip_id":"a0b14595-67f8-4ab9-95ae-060867bd837a","mac_address":"02:00:00:10:C0:AF","masquerade_enabled":true,"private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","push_default_route":true,"status":"ready","updated_at":"2025-03-24T08:20:40.865930Z","zone":"fr-par-1"}' headers: Content-Length: - - "502" + - "416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:43 GMT + - Mon, 24 Mar 2025 08:20:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1430,10 +1430,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 92be36b7-6867-42c7-9cc4-0f96140add92 + - 280616af-fc10-4287-a8f4-23c7fab9fe7c status: 200 OK code: 200 - duration: 51.35525ms + duration: 152.662074ms - id: 29 request: proto: HTTP/1.1 @@ -1449,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-gw/v1/zones/fr-par-1/gateway-networks/1d6506fd-ebd0-4a54-96ef-08e3af29f175 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/6bdb89d1-2dfd-43d0-ba57-8b24c17e9523 method: GET response: proto: HTTP/2.0 @@ -1458,20 +1458,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 502 + content_length: 416 uncompressed: false - body: '{"address":"172.16.28.2/22","created_at":"2025-01-28T10:05:27.777096Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"1d6506fd-ebd0-4a54-96ef-08e3af29f175","ipam_config":{"ipam_ip_id":"026259f3-d6c2-43cd-a548-a8387566ab54","push_default_route":true},"mac_address":"02:00:00:12:31:08","private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","status":"ready","updated_at":"2025-01-28T10:05:38.656834Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-24T08:20:30.432064Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"6bdb89d1-2dfd-43d0-ba57-8b24c17e9523","ipam_ip_id":"a0b14595-67f8-4ab9-95ae-060867bd837a","mac_address":"02:00:00:10:C0:AF","masquerade_enabled":true,"private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","push_default_route":true,"status":"ready","updated_at":"2025-03-24T08:20:40.865930Z","zone":"fr-par-1"}' headers: Content-Length: - - "502" + - "416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:43 GMT + - Mon, 24 Mar 2025 08:20:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1479,48 +1479,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ef18bba0-2631-42f7-b50e-feea17e0e7b3 + - 391ea709-cafd-4920-b5a4-5e613f6a8392 status: 200 OK code: 200 - duration: 68.207584ms + duration: 129.413883ms - id: 30 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":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-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: 1465 + content_length: 384 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-28T10:05:22.098871Z","gateway_networks":[{"address":"172.16.28.2/22","created_at":"2025-01-28T10:05:27.777096Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"1d6506fd-ebd0-4a54-96ef-08e3af29f175","ipam_config":{"ipam_ip_id":"026259f3-d6c2-43cd-a548-a8387566ab54","push_default_route":true},"mac_address":"02:00:00:12:31:08","private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","status":"ready","updated_at":"2025-01-28T10:05:38.656834Z","zone":"fr-par-1"}],"id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","ip":{"address":"163.172.190.242","created_at":"2025-01-28T10:05:22.080386Z","gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"a66f37f5-b1c0-4dc3-835d-4b1481ffd96a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"242-190-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-01-28T10:05:22.080386Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"tf-gw-route","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-28T10:05:38.858381Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-24T08:20:47.090585Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"89472c1d-2530-45ba-9927-65c29c934fd5","ipam_ip_id":"7845b111-0dbe-4bf8-a6c0-c26f8839f84a","masquerade_enabled":true,"private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","push_default_route":true,"status":"created","updated_at":"2025-03-24T08:20:47.090585Z","zone":"fr-par-1"}' headers: Content-Length: - - "1465" + - "384" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:43 GMT + - Mon, 24 Mar 2025 08:20:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1528,10 +1530,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed77f84a-ba53-4434-92cd-f07afbbd7247 + - a54a6df6-3468-4daa-87e7-e9cd41538473 status: 200 OK code: 200 - duration: 30.342208ms + duration: 673.366003ms - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/1d6506fd-ebd0-4a54-96ef-08e3af29f175 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/c44b6bb5-dc33-4e76-8f88-7df018c50db0 method: GET response: proto: HTTP/2.0 @@ -1556,20 +1558,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 502 + content_length: 1707 uncompressed: false - body: '{"address":"172.16.28.2/22","created_at":"2025-01-28T10:05:27.777096Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"1d6506fd-ebd0-4a54-96ef-08e3af29f175","ipam_config":{"ipam_ip_id":"026259f3-d6c2-43cd-a548-a8387566ab54","push_default_route":true},"mac_address":"02:00:00:12:31:08","private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","status":"ready","updated_at":"2025-01-28T10:05:38.656834Z","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T08:20:24.144155Z","gateway_networks":[{"created_at":"2025-03-24T08:20:30.432064Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"6bdb89d1-2dfd-43d0-ba57-8b24c17e9523","ipam_ip_id":"a0b14595-67f8-4ab9-95ae-060867bd837a","mac_address":"02:00:00:10:C0:AF","masquerade_enabled":true,"private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","push_default_route":true,"status":"ready","updated_at":"2025-03-24T08:20:40.865930Z","zone":"fr-par-1"},{"created_at":"2025-03-24T08:20:47.090585Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"89472c1d-2530-45ba-9927-65c29c934fd5","ipam_ip_id":"7845b111-0dbe-4bf8-a6c0-c26f8839f84a","masquerade_enabled":true,"private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","push_default_route":true,"status":"created","updated_at":"2025-03-24T08:20:47.090585Z","zone":"fr-par-1"}],"id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","ipv4":{"address":"212.47.234.64","created_at":"2025-03-24T08:20:24.092798Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"b1f7a0e9-81fc-4dfb-badc-13a65562fb71","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"64-234-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T08:20:24.092798Z","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-03-24T08:20:47.178265Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "502" + - "1707" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:43 GMT + - Mon, 24 Mar 2025 08:20:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1577,50 +1579,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 79539be5-eded-49d0-991b-c480f3f138f9 + - caf28b74-57f4-49bf-8c24-b9dfd3a41e99 status: 200 OK code: 200 - duration: 68.068416ms + duration: 99.072827ms - id: 32 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 217 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","enable_masquerade":true,"enable_dhcp":true,"ipam_config":{"push_default_route":true,"ipam_ip_id":null}}' + 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-gw/v1/zones/fr-par-1/gateway-networks - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/c44b6bb5-dc33-4e76-8f88-7df018c50db0 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 476 + content_length: 1707 uncompressed: false - body: '{"address":"172.16.20.3/22","created_at":"2025-01-28T10:05:44.268760Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"0d4eb476-ccfb-4598-adf1-2d727af92fba","ipam_config":{"ipam_ip_id":"1a9b308d-89a9-4f60-aa5b-9787c36f432f","push_default_route":true},"mac_address":null,"private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","status":"created","updated_at":"2025-01-28T10:05:44.268760Z","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T08:20:24.144155Z","gateway_networks":[{"created_at":"2025-03-24T08:20:30.432064Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"6bdb89d1-2dfd-43d0-ba57-8b24c17e9523","ipam_ip_id":"a0b14595-67f8-4ab9-95ae-060867bd837a","mac_address":"02:00:00:10:C0:AF","masquerade_enabled":true,"private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","push_default_route":true,"status":"ready","updated_at":"2025-03-24T08:20:40.865930Z","zone":"fr-par-1"},{"created_at":"2025-03-24T08:20:47.090585Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"89472c1d-2530-45ba-9927-65c29c934fd5","ipam_ip_id":"7845b111-0dbe-4bf8-a6c0-c26f8839f84a","masquerade_enabled":true,"private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","push_default_route":true,"status":"created","updated_at":"2025-03-24T08:20:47.090585Z","zone":"fr-par-1"}],"id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","ipv4":{"address":"212.47.234.64","created_at":"2025-03-24T08:20:24.092798Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"b1f7a0e9-81fc-4dfb-badc-13a65562fb71","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"64-234-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T08:20:24.092798Z","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-03-24T08:20:47.178265Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "476" + - "1707" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:44 GMT + - Mon, 24 Mar 2025 08:20:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1628,10 +1628,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cda78720-756a-4c26-b935-78b815f02789 + - f9e9b631-34ac-415b-bacc-e2229b905d63 status: 200 OK code: 200 - duration: 852.449708ms + duration: 97.303489ms - id: 33 request: proto: HTTP/1.1 @@ -1647,8 +1647,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-gw/v1/zones/fr-par-1/gateways/da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/c44b6bb5-dc33-4e76-8f88-7df018c50db0 method: GET response: proto: HTTP/2.0 @@ -1656,20 +1656,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1946 + content_length: 1735 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-28T10:05:22.098871Z","gateway_networks":[{"address":"172.16.28.2/22","created_at":"2025-01-28T10:05:27.777096Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"1d6506fd-ebd0-4a54-96ef-08e3af29f175","ipam_config":{"ipam_ip_id":"026259f3-d6c2-43cd-a548-a8387566ab54","push_default_route":true},"mac_address":"02:00:00:12:31:08","private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","status":"ready","updated_at":"2025-01-28T10:05:38.656834Z","zone":"fr-par-1"},{"address":"172.16.20.3/22","created_at":"2025-01-28T10:05:44.268760Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"0d4eb476-ccfb-4598-adf1-2d727af92fba","ipam_config":{"ipam_ip_id":"1a9b308d-89a9-4f60-aa5b-9787c36f432f","push_default_route":true},"mac_address":null,"private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","status":"created","updated_at":"2025-01-28T10:05:44.268760Z","zone":"fr-par-1"}],"id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","ip":{"address":"163.172.190.242","created_at":"2025-01-28T10:05:22.080386Z","gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"a66f37f5-b1c0-4dc3-835d-4b1481ffd96a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"242-190-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-01-28T10:05:22.080386Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"tf-gw-route","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-28T10:05:44.349418Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T08:20:24.144155Z","gateway_networks":[{"created_at":"2025-03-24T08:20:30.432064Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"6bdb89d1-2dfd-43d0-ba57-8b24c17e9523","ipam_ip_id":"a0b14595-67f8-4ab9-95ae-060867bd837a","mac_address":"02:00:00:10:C0:AF","masquerade_enabled":true,"private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","push_default_route":true,"status":"ready","updated_at":"2025-03-24T08:20:40.865930Z","zone":"fr-par-1"},{"created_at":"2025-03-24T08:20:47.090585Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"89472c1d-2530-45ba-9927-65c29c934fd5","ipam_ip_id":"7845b111-0dbe-4bf8-a6c0-c26f8839f84a","mac_address":"02:00:00:13:8A:DB","masquerade_enabled":true,"private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","push_default_route":true,"status":"ready","updated_at":"2025-03-24T08:20:54.575476Z","zone":"fr-par-1"}],"id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","ipv4":{"address":"212.47.234.64","created_at":"2025-03-24T08:20:24.092798Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"b1f7a0e9-81fc-4dfb-badc-13a65562fb71","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"64-234-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T08:20:24.092798Z","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-03-24T08:20:54.707583Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "1946" + - "1735" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:44 GMT + - Mon, 24 Mar 2025 08:20:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1677,10 +1677,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 37ace297-ab93-4b01-904f-7f051fc19a80 + - 5d295806-61ec-42fa-9c5c-7ea88636c6c3 status: 200 OK code: 200 - duration: 40.843333ms + duration: 95.428848ms - id: 34 request: proto: HTTP/1.1 @@ -1696,8 +1696,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-gw/v1/zones/fr-par-1/gateways/da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/89472c1d-2530-45ba-9927-65c29c934fd5 method: GET response: proto: HTTP/2.0 @@ -1705,20 +1705,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2003 + content_length: 416 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-28T10:05:22.098871Z","gateway_networks":[{"address":"172.16.28.2/22","created_at":"2025-01-28T10:05:27.777096Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"1d6506fd-ebd0-4a54-96ef-08e3af29f175","ipam_config":{"ipam_ip_id":"026259f3-d6c2-43cd-a548-a8387566ab54","push_default_route":true},"mac_address":"02:00:00:12:31:08","private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","status":"ready","updated_at":"2025-01-28T10:05:38.656834Z","zone":"fr-par-1"},{"address":"172.16.20.3/22","created_at":"2025-01-28T10:05:44.268760Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"0d4eb476-ccfb-4598-adf1-2d727af92fba","ipam_config":{"ipam_ip_id":"1a9b308d-89a9-4f60-aa5b-9787c36f432f","push_default_route":true},"mac_address":null,"private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","status":"created","updated_at":"2025-01-28T10:05:44.268760Z","zone":"fr-par-1"}],"id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","ip":{"address":"163.172.190.242","created_at":"2025-01-28T10:05:22.080386Z","gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"a66f37f5-b1c0-4dc3-835d-4b1481ffd96a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"242-190-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-01-28T10:05:22.080386Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"tf-gw-route","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-28T10:05:44.349418Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-24T08:20:47.090585Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"89472c1d-2530-45ba-9927-65c29c934fd5","ipam_ip_id":"7845b111-0dbe-4bf8-a6c0-c26f8839f84a","mac_address":"02:00:00:13:8A:DB","masquerade_enabled":true,"private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","push_default_route":true,"status":"ready","updated_at":"2025-03-24T08:20:54.575476Z","zone":"fr-par-1"}' headers: Content-Length: - - "2003" + - "416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:49 GMT + - Mon, 24 Mar 2025 08:20:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1726,10 +1726,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 809ab1b2-a122-440b-9223-eb66aafa455b + - 5ab0e667-369f-4f3d-a937-022380a03960 status: 200 OK code: 200 - duration: 163.458542ms + duration: 107.859606ms - id: 35 request: proto: HTTP/1.1 @@ -1745,8 +1745,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-gw/v1/zones/fr-par-1/gateways/da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/89472c1d-2530-45ba-9927-65c29c934fd5 method: GET response: proto: HTTP/2.0 @@ -1754,20 +1754,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2022 + content_length: 416 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-28T10:05:22.098871Z","gateway_networks":[{"address":"172.16.28.2/22","created_at":"2025-01-28T10:05:27.777096Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"1d6506fd-ebd0-4a54-96ef-08e3af29f175","ipam_config":{"ipam_ip_id":"026259f3-d6c2-43cd-a548-a8387566ab54","push_default_route":true},"mac_address":"02:00:00:12:31:08","private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","status":"ready","updated_at":"2025-01-28T10:05:38.656834Z","zone":"fr-par-1"},{"address":"172.16.20.3/22","created_at":"2025-01-28T10:05:44.268760Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"0d4eb476-ccfb-4598-adf1-2d727af92fba","ipam_config":{"ipam_ip_id":"1a9b308d-89a9-4f60-aa5b-9787c36f432f","push_default_route":true},"mac_address":"02:00:00:12:B4:4E","private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","status":"configuring","updated_at":"2025-01-28T10:05:50.092426Z","zone":"fr-par-1"}],"id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","ip":{"address":"163.172.190.242","created_at":"2025-01-28T10:05:22.080386Z","gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"a66f37f5-b1c0-4dc3-835d-4b1481ffd96a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"242-190-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-01-28T10:05:22.080386Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"tf-gw-route","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-28T10:05:44.349418Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-24T08:20:47.090585Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"89472c1d-2530-45ba-9927-65c29c934fd5","ipam_ip_id":"7845b111-0dbe-4bf8-a6c0-c26f8839f84a","mac_address":"02:00:00:13:8A:DB","masquerade_enabled":true,"private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","push_default_route":true,"status":"ready","updated_at":"2025-03-24T08:20:54.575476Z","zone":"fr-par-1"}' headers: Content-Length: - - "2022" + - "416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:54 GMT + - Mon, 24 Mar 2025 08:20:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1775,10 +1775,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3a8a7f83-6f00-459b-92b4-6dee79cb7f59 + - e34399e0-7cca-4ebc-9696-cbf4baca0467 status: 200 OK code: 200 - duration: 30.471291ms + duration: 123.347341ms - id: 36 request: proto: HTTP/1.1 @@ -1794,8 +1794,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-gw/v1/zones/fr-par-1/gateways/da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/3501b80f-6388-4496-8e72-1dbadb8ac546 method: GET response: proto: HTTP/2.0 @@ -1803,20 +1803,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1955 + content_length: 361 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-28T10:05:22.098871Z","gateway_networks":[{"address":"172.16.28.2/22","created_at":"2025-01-28T10:05:27.777096Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"1d6506fd-ebd0-4a54-96ef-08e3af29f175","ipam_config":{"ipam_ip_id":"026259f3-d6c2-43cd-a548-a8387566ab54","push_default_route":true},"mac_address":"02:00:00:12:31:08","private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","status":"ready","updated_at":"2025-01-28T10:05:38.656834Z","zone":"fr-par-1"},{"address":"172.16.20.3/22","created_at":"2025-01-28T10:05:44.268760Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"0d4eb476-ccfb-4598-adf1-2d727af92fba","ipam_config":{"ipam_ip_id":"1a9b308d-89a9-4f60-aa5b-9787c36f432f","push_default_route":true},"mac_address":"02:00:00:12:B4:4E","private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","status":"ready","updated_at":"2025-01-28T10:05:55.074705Z","zone":"fr-par-1"}],"id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","ip":{"address":"163.172.190.242","created_at":"2025-01-28T10:05:22.080386Z","gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"a66f37f5-b1c0-4dc3-835d-4b1481ffd96a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"242-190-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-01-28T10:05:22.080386Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"tf-gw-route","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-28T10:05:55.262496Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-24T08:20:19.324875Z","id":"3501b80f-6388-4496-8e72-1dbadb8ac546","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-03-24T08:20:19.324875Z"}' headers: Content-Length: - - "1955" + - "361" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:59 GMT + - Mon, 24 Mar 2025 08:20:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1824,10 +1824,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f1fbb498-f1a5-4771-b78d-0f22a544d433 + - f296aa35-4aab-4f91-84ad-53f50fc97796 status: 200 OK code: 200 - duration: 34.173541ms + duration: 111.02087ms - id: 37 request: proto: HTTP/1.1 @@ -1843,8 +1843,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-gw/v1/zones/fr-par-1/gateway-networks/0d4eb476-ccfb-4598-adf1-2d727af92fba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/c44b6bb5-dc33-4e76-8f88-7df018c50db0 method: GET response: proto: HTTP/2.0 @@ -1852,20 +1852,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 502 + content_length: 1735 uncompressed: false - body: '{"address":"172.16.20.3/22","created_at":"2025-01-28T10:05:44.268760Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"0d4eb476-ccfb-4598-adf1-2d727af92fba","ipam_config":{"ipam_ip_id":"1a9b308d-89a9-4f60-aa5b-9787c36f432f","push_default_route":true},"mac_address":"02:00:00:12:B4:4E","private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","status":"ready","updated_at":"2025-01-28T10:05:55.074705Z","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T08:20:24.144155Z","gateway_networks":[{"created_at":"2025-03-24T08:20:30.432064Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"6bdb89d1-2dfd-43d0-ba57-8b24c17e9523","ipam_ip_id":"a0b14595-67f8-4ab9-95ae-060867bd837a","mac_address":"02:00:00:10:C0:AF","masquerade_enabled":true,"private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","push_default_route":true,"status":"ready","updated_at":"2025-03-24T08:20:40.865930Z","zone":"fr-par-1"},{"created_at":"2025-03-24T08:20:47.090585Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"89472c1d-2530-45ba-9927-65c29c934fd5","ipam_ip_id":"7845b111-0dbe-4bf8-a6c0-c26f8839f84a","mac_address":"02:00:00:13:8A:DB","masquerade_enabled":true,"private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","push_default_route":true,"status":"ready","updated_at":"2025-03-24T08:20:54.575476Z","zone":"fr-par-1"}],"id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","ipv4":{"address":"212.47.234.64","created_at":"2025-03-24T08:20:24.092798Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"b1f7a0e9-81fc-4dfb-badc-13a65562fb71","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"64-234-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T08:20:24.092798Z","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-03-24T08:20:54.707583Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "502" + - "1735" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:59 GMT + - Mon, 24 Mar 2025 08:20:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1873,10 +1873,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 52030b77-4ee1-448c-9740-0432e0ff2a18 + - 4b1ae0cd-7c1d-48c5-bbcd-e7b0e93bea47 status: 200 OK code: 200 - duration: 49.640792ms + duration: 110.345181ms - id: 38 request: proto: HTTP/1.1 @@ -1892,8 +1892,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-gw/v1/zones/fr-par-1/gateway-networks/0d4eb476-ccfb-4598-adf1-2d727af92fba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d44268b2-56ac-4d17-af16-5a782a7230da method: GET response: proto: HTTP/2.0 @@ -1901,20 +1901,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 489 + content_length: 1018 uncompressed: false - body: '{"address":"172.16.20.3/22","created_at":"2025-01-28T10:05:44.268760Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"0d4eb476-ccfb-4598-adf1-2d727af92fba","ipam_config":{"ipam_ip_id":"1a9b308d-89a9-4f60-aa5b-9787c36f432f","push_default_route":true},"mac_address":"02:00:00:12:B4:4E","private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","status":"ready","updated_at":"2025-01-28T10:05:55.074705Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-24T08:20:19.720438Z","dhcp_enabled":true,"id":"d44268b2-56ac-4d17-af16-5a782a7230da","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-03-24T08:20:19.720438Z","id":"8a9a380c-889b-4600-8226-04a031a0d551","private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.124.0/22","updated_at":"2025-03-24T08:20:19.720438Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"},{"created_at":"2025-03-24T08:20:19.720438Z","id":"1295a2f9-5a7c-4b7d-a6b7-4ed58f90ee1c","private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:4c57::/64","updated_at":"2025-03-24T08:20:19.720438Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}],"tags":[],"updated_at":"2025-03-24T08:20:36.926203Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}' headers: Content-Length: - - "489" + - "1018" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:59 GMT + - Mon, 24 Mar 2025 08:20:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1922,10 +1922,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 37e3ff29-897a-41ac-8036-0033bbe6288b + - 8cbb53bb-11e3-44fe-ace7-c58c9699ae8e status: 200 OK code: 200 - duration: 47.024375ms + duration: 90.700762ms - id: 39 request: proto: HTTP/1.1 @@ -1941,8 +1941,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-gw/v1/zones/fr-par-1/gateways/da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/080dfb1a-37f5-4757-b98e-348b0b40ae43 method: GET response: proto: HTTP/2.0 @@ -1950,20 +1950,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2012 + content_length: 1016 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-28T10:05:22.098871Z","gateway_networks":[{"address":"172.16.28.2/22","created_at":"2025-01-28T10:05:27.777096Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"1d6506fd-ebd0-4a54-96ef-08e3af29f175","ipam_config":{"ipam_ip_id":"026259f3-d6c2-43cd-a548-a8387566ab54","push_default_route":true},"mac_address":"02:00:00:12:31:08","private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","status":"ready","updated_at":"2025-01-28T10:05:38.656834Z","zone":"fr-par-1"},{"address":"172.16.20.3/22","created_at":"2025-01-28T10:05:44.268760Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"0d4eb476-ccfb-4598-adf1-2d727af92fba","ipam_config":{"ipam_ip_id":"1a9b308d-89a9-4f60-aa5b-9787c36f432f","push_default_route":true},"mac_address":"02:00:00:12:B4:4E","private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","status":"ready","updated_at":"2025-01-28T10:05:55.074705Z","zone":"fr-par-1"}],"id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","ip":{"address":"163.172.190.242","created_at":"2025-01-28T10:05:22.080386Z","gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"a66f37f5-b1c0-4dc3-835d-4b1481ffd96a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"242-190-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-01-28T10:05:22.080386Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"tf-gw-route","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-28T10:05:55.262496Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-24T08:20:19.650254Z","dhcp_enabled":true,"id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","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-03-24T08:20:19.650254Z","id":"0214726b-3bc7-4624-8d87-ad7a458d08eb","private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.128.0/22","updated_at":"2025-03-24T08:20:19.650254Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"},{"created_at":"2025-03-24T08:20:19.650254Z","id":"20dcf9b9-028c-4917-97ce-bc4e282da973","private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:fd11::/64","updated_at":"2025-03-24T08:20:19.650254Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}],"tags":[],"updated_at":"2025-03-24T08:20:53.598394Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}' headers: Content-Length: - - "2012" + - "1016" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:59 GMT + - Mon, 24 Mar 2025 08:20:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1971,10 +1971,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b7ae3bd9-ce03-4faa-aa51-48731d6773fd + - b9c33e76-7e0b-48a0-b495-028fff7315c8 status: 200 OK code: 200 - duration: 35.275041ms + duration: 189.626753ms - id: 40 request: proto: HTTP/1.1 @@ -1990,8 +1990,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-gw/v1/zones/fr-par-1/gateway-networks/0d4eb476-ccfb-4598-adf1-2d727af92fba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/6bdb89d1-2dfd-43d0-ba57-8b24c17e9523 method: GET response: proto: HTTP/2.0 @@ -1999,20 +1999,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 489 + content_length: 416 uncompressed: false - body: '{"address":"172.16.20.3/22","created_at":"2025-01-28T10:05:44.268760Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"0d4eb476-ccfb-4598-adf1-2d727af92fba","ipam_config":{"ipam_ip_id":"1a9b308d-89a9-4f60-aa5b-9787c36f432f","push_default_route":true},"mac_address":"02:00:00:12:B4:4E","private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","status":"ready","updated_at":"2025-01-28T10:05:55.074705Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-24T08:20:30.432064Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"6bdb89d1-2dfd-43d0-ba57-8b24c17e9523","ipam_ip_id":"a0b14595-67f8-4ab9-95ae-060867bd837a","mac_address":"02:00:00:10:C0:AF","masquerade_enabled":true,"private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","push_default_route":true,"status":"ready","updated_at":"2025-03-24T08:20:40.865930Z","zone":"fr-par-1"}' headers: Content-Length: - - "489" + - "416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:59 GMT + - Mon, 24 Mar 2025 08:20:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2020,10 +2020,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c5e42bf8-3ff8-4ee2-9990-1bb3f3590ffc + - 0ede46c2-9e8e-45f0-8103-d86aa0b945b2 status: 200 OK code: 200 - duration: 47.680167ms + duration: 105.811493ms - id: 41 request: proto: HTTP/1.1 @@ -2039,8 +2039,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-gw/v1/zones/fr-par-1/gateways/da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/89472c1d-2530-45ba-9927-65c29c934fd5 method: GET response: proto: HTTP/2.0 @@ -2048,20 +2048,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2012 + content_length: 416 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-28T10:05:22.098871Z","gateway_networks":[{"address":"172.16.28.2/22","created_at":"2025-01-28T10:05:27.777096Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"1d6506fd-ebd0-4a54-96ef-08e3af29f175","ipam_config":{"ipam_ip_id":"026259f3-d6c2-43cd-a548-a8387566ab54","push_default_route":true},"mac_address":"02:00:00:12:31:08","private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","status":"ready","updated_at":"2025-01-28T10:05:38.656834Z","zone":"fr-par-1"},{"address":"172.16.20.3/22","created_at":"2025-01-28T10:05:44.268760Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"0d4eb476-ccfb-4598-adf1-2d727af92fba","ipam_config":{"ipam_ip_id":"1a9b308d-89a9-4f60-aa5b-9787c36f432f","push_default_route":true},"mac_address":"02:00:00:12:B4:4E","private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","status":"ready","updated_at":"2025-01-28T10:05:55.074705Z","zone":"fr-par-1"}],"id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","ip":{"address":"163.172.190.242","created_at":"2025-01-28T10:05:22.080386Z","gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"a66f37f5-b1c0-4dc3-835d-4b1481ffd96a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"242-190-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-01-28T10:05:22.080386Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"tf-gw-route","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-28T10:05:55.262496Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-24T08:20:47.090585Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"89472c1d-2530-45ba-9927-65c29c934fd5","ipam_ip_id":"7845b111-0dbe-4bf8-a6c0-c26f8839f84a","mac_address":"02:00:00:13:8A:DB","masquerade_enabled":true,"private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","push_default_route":true,"status":"ready","updated_at":"2025-03-24T08:20:54.575476Z","zone":"fr-par-1"}' headers: Content-Length: - - "2012" + - "416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:06:00 GMT + - Mon, 24 Mar 2025 08:20:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2069,10 +2069,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b95a251f-0a6c-4c0e-9a7f-cddf553eb734 + - c84ba790-32bf-4892-9e9b-4cdfae015f57 status: 200 OK code: 200 - duration: 31.35425ms + duration: 97.518202ms - id: 42 request: proto: HTTP/1.1 @@ -2088,8 +2088,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/f720ca31-f623-4fd6-927c-86a30029bd9c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/c44b6bb5-dc33-4e76-8f88-7df018c50db0 method: GET response: proto: HTTP/2.0 @@ -2097,20 +2097,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 361 + content_length: 1735 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:16.035861Z","id":"f720ca31-f623-4fd6-927c-86a30029bd9c","is_default":false,"name":"tf-vpc-route-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":2,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-01-28T10:05:16.035861Z"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T08:20:24.144155Z","gateway_networks":[{"created_at":"2025-03-24T08:20:30.432064Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"6bdb89d1-2dfd-43d0-ba57-8b24c17e9523","ipam_ip_id":"a0b14595-67f8-4ab9-95ae-060867bd837a","mac_address":"02:00:00:10:C0:AF","masquerade_enabled":true,"private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","push_default_route":true,"status":"ready","updated_at":"2025-03-24T08:20:40.865930Z","zone":"fr-par-1"},{"created_at":"2025-03-24T08:20:47.090585Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"89472c1d-2530-45ba-9927-65c29c934fd5","ipam_ip_id":"7845b111-0dbe-4bf8-a6c0-c26f8839f84a","mac_address":"02:00:00:13:8A:DB","masquerade_enabled":true,"private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","push_default_route":true,"status":"ready","updated_at":"2025-03-24T08:20:54.575476Z","zone":"fr-par-1"}],"id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","ipv4":{"address":"212.47.234.64","created_at":"2025-03-24T08:20:24.092798Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"b1f7a0e9-81fc-4dfb-badc-13a65562fb71","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"64-234-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T08:20:24.092798Z","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-03-24T08:20:54.707583Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "361" + - "1735" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:06:00 GMT + - Mon, 24 Mar 2025 08:20:59 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2118,10 +2118,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 23fc4ff6-150b-48de-ab3a-a42e8a8d9cb3 + - 35d5a3ca-8702-4a56-9a35-cebf6175150e status: 200 OK code: 200 - duration: 58.257125ms + duration: 127.784862ms - id: 43 request: proto: HTTP/1.1 @@ -2137,8 +2137,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/9cb3032b-1bb9-4ced-a0e8-e099d7f65319 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/3501b80f-6388-4496-8e72-1dbadb8ac546 method: GET response: proto: HTTP/2.0 @@ -2146,20 +2146,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1040 + content_length: 361 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:16.253771Z","dhcp_enabled":true,"id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","name":"tf-pn_route_2","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.253771Z","id":"b90c6455-1228-4bcd-b33f-6d4bebb9eadf","private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.28.0/22","updated_at":"2025-01-28T10:05:16.253771Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"},{"created_at":"2025-01-28T10:05:16.253771Z","id":"af716d85-14d3-4535-bffb-67bc68ab68a7","private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:5f94::/64","updated_at":"2025-01-28T10:05:16.253771Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}],"tags":[],"updated_at":"2025-01-28T10:05:34.742948Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}' + body: '{"created_at":"2025-03-24T08:20:19.324875Z","id":"3501b80f-6388-4496-8e72-1dbadb8ac546","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-03-24T08:20:19.324875Z"}' headers: Content-Length: - - "1040" + - "361" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:06:00 GMT + - Mon, 24 Mar 2025 08:20:59 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2167,10 +2167,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 88d6a51e-b2ab-4dc7-8148-6232003cdd14 + - d9d7bdd4-22d5-4173-bfb1-95bed874ea0a status: 200 OK code: 200 - duration: 30.131ms + duration: 130.810934ms - id: 44 request: proto: HTTP/1.1 @@ -2186,8 +2186,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/096f0b26-855f-44a6-bb4f-eb76a73f42a0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/080dfb1a-37f5-4757-b98e-348b0b40ae43 method: GET response: proto: HTTP/2.0 @@ -2195,20 +2195,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1015 + content_length: 1016 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:16.183673Z","dhcp_enabled":true,"id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","name":"tf-pn_route","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.183673Z","id":"403d4d59-a7a4-4ac1-9035-a63eb6c4598f","private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.20.0/22","updated_at":"2025-01-28T10:05:16.183673Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"},{"created_at":"2025-01-28T10:05:16.183673Z","id":"434bb0b8-72df-4500-9c31-e029ccc4d535","private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:b6aa::/64","updated_at":"2025-01-28T10:05:16.183673Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}],"tags":[],"updated_at":"2025-01-28T10:05:50.934235Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}' + body: '{"created_at":"2025-03-24T08:20:19.650254Z","dhcp_enabled":true,"id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","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-03-24T08:20:19.650254Z","id":"0214726b-3bc7-4624-8d87-ad7a458d08eb","private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.128.0/22","updated_at":"2025-03-24T08:20:19.650254Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"},{"created_at":"2025-03-24T08:20:19.650254Z","id":"20dcf9b9-028c-4917-97ce-bc4e282da973","private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:fd11::/64","updated_at":"2025-03-24T08:20:19.650254Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}],"tags":[],"updated_at":"2025-03-24T08:20:53.598394Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}' headers: Content-Length: - - "1015" + - "1016" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:06:00 GMT + - Mon, 24 Mar 2025 08:20:59 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2216,10 +2216,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 50e404f9-d68f-4eca-8211-06f93bb0647d + - 9a690c87-97b8-4430-88c1-f45b671094e7 status: 200 OK code: 200 - duration: 35.29125ms + duration: 97.52014ms - id: 45 request: proto: HTTP/1.1 @@ -2235,8 +2235,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-gw/v1/zones/fr-par-1/gateway-networks/0d4eb476-ccfb-4598-adf1-2d727af92fba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d44268b2-56ac-4d17-af16-5a782a7230da method: GET response: proto: HTTP/2.0 @@ -2244,20 +2244,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 489 + content_length: 1018 uncompressed: false - body: '{"address":"172.16.20.3/22","created_at":"2025-01-28T10:05:44.268760Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"0d4eb476-ccfb-4598-adf1-2d727af92fba","ipam_config":{"ipam_ip_id":"1a9b308d-89a9-4f60-aa5b-9787c36f432f","push_default_route":true},"mac_address":"02:00:00:12:B4:4E","private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","status":"ready","updated_at":"2025-01-28T10:05:55.074705Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-24T08:20:19.720438Z","dhcp_enabled":true,"id":"d44268b2-56ac-4d17-af16-5a782a7230da","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-03-24T08:20:19.720438Z","id":"8a9a380c-889b-4600-8226-04a031a0d551","private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.124.0/22","updated_at":"2025-03-24T08:20:19.720438Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"},{"created_at":"2025-03-24T08:20:19.720438Z","id":"1295a2f9-5a7c-4b7d-a6b7-4ed58f90ee1c","private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:4c57::/64","updated_at":"2025-03-24T08:20:19.720438Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}],"tags":[],"updated_at":"2025-03-24T08:20:36.926203Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}' headers: Content-Length: - - "489" + - "1018" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:06:00 GMT + - Mon, 24 Mar 2025 08:20:59 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2265,10 +2265,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5be27e2e-00c7-46aa-b6ad-8cfb438d300a + - 4c7b527a-2a2a-461c-84e7-9f916589cd4f status: 200 OK code: 200 - duration: 55.167583ms + duration: 100.70432ms - id: 46 request: proto: HTTP/1.1 @@ -2284,8 +2284,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-gw/v1/zones/fr-par-1/gateway-networks/1d6506fd-ebd0-4a54-96ef-08e3af29f175 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes-with-nexthop?is_ipv6=true&nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=3501b80f-6388-4496-8e72-1dbadb8ac546 method: GET response: proto: HTTP/2.0 @@ -2293,20 +2293,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 502 + content_length: 1040 uncompressed: false - body: '{"address":"172.16.28.2/22","created_at":"2025-01-28T10:05:27.777096Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"1d6506fd-ebd0-4a54-96ef-08e3af29f175","ipam_config":{"ipam_ip_id":"026259f3-d6c2-43cd-a548-a8387566ab54","push_default_route":true},"mac_address":"02:00:00:12:31:08","private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","status":"ready","updated_at":"2025-01-28T10:05:38.656834Z","zone":"fr-par-1"}' + body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-03-24T08:20:19.324875Z","description":"Generated route for subnet 1295a2f9-5a7c-4b7d-a6b7-4ed58f90ee1c","destination":"fd46:78ab:30b8:4c57::/64","id":"","is_read_only":true,"nexthop_private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-03-24T08:20:19.324875Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-03-24T08:20:19.324875Z","description":"Generated route for subnet 20dcf9b9-028c-4917-97ce-bc4e282da973","destination":"fd46:78ab:30b8:fd11::/64","id":"","is_read_only":true,"nexthop_private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-03-24T08:20:19.324875Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}}],"total_count":2}' headers: Content-Length: - - "502" + - "1040" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:06:00 GMT + - Mon, 24 Mar 2025 08:20:59 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2314,10 +2314,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 390addb0-9ee1-4c31-899b-e2f5cf3caaaf + - 55b53e67-f1bd-49aa-8f3c-ef8371e9e719 status: 200 OK code: 200 - duration: 61.698167ms + duration: 119.117469ms - id: 47 request: proto: HTTP/1.1 @@ -2333,8 +2333,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-gw/v1/zones/fr-par-1/gateways/da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes-with-nexthop?nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=3501b80f-6388-4496-8e72-1dbadb8ac546 method: GET response: proto: HTTP/2.0 @@ -2342,20 +2342,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2012 + content_length: 3040 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-28T10:05:22.098871Z","gateway_networks":[{"address":"172.16.28.2/22","created_at":"2025-01-28T10:05:27.777096Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"1d6506fd-ebd0-4a54-96ef-08e3af29f175","ipam_config":{"ipam_ip_id":"026259f3-d6c2-43cd-a548-a8387566ab54","push_default_route":true},"mac_address":"02:00:00:12:31:08","private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","status":"ready","updated_at":"2025-01-28T10:05:38.656834Z","zone":"fr-par-1"},{"address":"172.16.20.3/22","created_at":"2025-01-28T10:05:44.268760Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"0d4eb476-ccfb-4598-adf1-2d727af92fba","ipam_config":{"ipam_ip_id":"1a9b308d-89a9-4f60-aa5b-9787c36f432f","push_default_route":true},"mac_address":"02:00:00:12:B4:4E","private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","status":"ready","updated_at":"2025-01-28T10:05:55.074705Z","zone":"fr-par-1"}],"id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","ip":{"address":"163.172.190.242","created_at":"2025-01-28T10:05:22.080386Z","gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"a66f37f5-b1c0-4dc3-835d-4b1481ffd96a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"242-190-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-01-28T10:05:22.080386Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"tf-gw-route","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-28T10:05:55.262496Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-03-24T08:20:19.324875Z","description":"Generated route for subnet 8a9a380c-889b-4600-8226-04a031a0d551","destination":"172.16.124.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-03-24T08:20:19.324875Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-03-24T08:20:19.324875Z","description":"Generated route for subnet 0214726b-3bc7-4624-8d87-ad7a458d08eb","destination":"172.16.128.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-03-24T08:20:19.324875Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-03-24T08:20:19.324875Z","description":"Generated route for subnet 1295a2f9-5a7c-4b7d-a6b7-4ed58f90ee1c","destination":"fd46:78ab:30b8:4c57::/64","id":"","is_read_only":true,"nexthop_private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-03-24T08:20:19.324875Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-03-24T08:20:19.324875Z","description":"Generated route for subnet 20dcf9b9-028c-4917-97ce-bc4e282da973","destination":"fd46:78ab:30b8:fd11::/64","id":"","is_read_only":true,"nexthop_private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-03-24T08:20:19.324875Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-03-24T08:20:36.834617Z","description":"","destination":"0.0.0.0/0","id":"16c8579c-4435-4bf1-a21e-87ba3a32be9b","is_read_only":true,"nexthop_private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","nexthop_resource_id":"6bdb89d1-2dfd-43d0-ba57-8b24c17e9523","region":"fr-par","tags":[],"updated_at":"2025-03-24T08:20:36.834617Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-03-24T08:20:53.510353Z","description":"","destination":"0.0.0.0/0","id":"64dd0d7c-da47-458e-a40c-d7239a9decb9","is_read_only":true,"nexthop_private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","nexthop_resource_id":"89472c1d-2530-45ba-9927-65c29c934fd5","region":"fr-par","tags":[],"updated_at":"2025-03-24T08:20:53.510353Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}}],"total_count":6}' headers: Content-Length: - - "2012" + - "3040" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:06:00 GMT + - Mon, 24 Mar 2025 08:20:59 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2363,10 +2363,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 392470d7-db67-43cf-97ec-b8eab4148a16 + - 9266b34c-ccad-45c5-a692-6b403f00ddb8 status: 200 OK code: 200 - duration: 35.716958ms + duration: 125.590683ms - id: 48 request: proto: HTTP/1.1 @@ -2382,8 +2382,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-gw/v1/zones/fr-par-1/gateways/da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/89472c1d-2530-45ba-9927-65c29c934fd5 method: GET response: proto: HTTP/2.0 @@ -2391,20 +2391,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1955 + content_length: 416 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-28T10:05:22.098871Z","gateway_networks":[{"address":"172.16.28.2/22","created_at":"2025-01-28T10:05:27.777096Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"1d6506fd-ebd0-4a54-96ef-08e3af29f175","ipam_config":{"ipam_ip_id":"026259f3-d6c2-43cd-a548-a8387566ab54","push_default_route":true},"mac_address":"02:00:00:12:31:08","private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","status":"ready","updated_at":"2025-01-28T10:05:38.656834Z","zone":"fr-par-1"},{"address":"172.16.20.3/22","created_at":"2025-01-28T10:05:44.268760Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"0d4eb476-ccfb-4598-adf1-2d727af92fba","ipam_config":{"ipam_ip_id":"1a9b308d-89a9-4f60-aa5b-9787c36f432f","push_default_route":true},"mac_address":"02:00:00:12:B4:4E","private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","status":"ready","updated_at":"2025-01-28T10:05:55.074705Z","zone":"fr-par-1"}],"id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","ip":{"address":"163.172.190.242","created_at":"2025-01-28T10:05:22.080386Z","gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"a66f37f5-b1c0-4dc3-835d-4b1481ffd96a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"242-190-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-01-28T10:05:22.080386Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"tf-gw-route","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-28T10:05:55.262496Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-24T08:20:47.090585Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"89472c1d-2530-45ba-9927-65c29c934fd5","ipam_ip_id":"7845b111-0dbe-4bf8-a6c0-c26f8839f84a","mac_address":"02:00:00:13:8A:DB","masquerade_enabled":true,"private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","push_default_route":true,"status":"ready","updated_at":"2025-03-24T08:20:54.575476Z","zone":"fr-par-1"}' headers: Content-Length: - - "1955" + - "416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:06:00 GMT + - Mon, 24 Mar 2025 08:20:59 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2412,10 +2412,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 706b4e36-65ee-4b97-a62d-c08333a40dd2 + - d3871a9a-1290-4aa9-8ecb-7cb8f5ae2a54 status: 200 OK code: 200 - duration: 39.786292ms + duration: 107.690411ms - id: 49 request: proto: HTTP/1.1 @@ -2431,8 +2431,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-gw/v1/zones/fr-par-1/gateway-networks/0d4eb476-ccfb-4598-adf1-2d727af92fba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/6bdb89d1-2dfd-43d0-ba57-8b24c17e9523 method: GET response: proto: HTTP/2.0 @@ -2440,20 +2440,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 489 + content_length: 416 uncompressed: false - body: '{"address":"172.16.20.3/22","created_at":"2025-01-28T10:05:44.268760Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"0d4eb476-ccfb-4598-adf1-2d727af92fba","ipam_config":{"ipam_ip_id":"1a9b308d-89a9-4f60-aa5b-9787c36f432f","push_default_route":true},"mac_address":"02:00:00:12:B4:4E","private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","status":"ready","updated_at":"2025-01-28T10:05:55.074705Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-24T08:20:30.432064Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"6bdb89d1-2dfd-43d0-ba57-8b24c17e9523","ipam_ip_id":"a0b14595-67f8-4ab9-95ae-060867bd837a","mac_address":"02:00:00:10:C0:AF","masquerade_enabled":true,"private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","push_default_route":true,"status":"ready","updated_at":"2025-03-24T08:20:40.865930Z","zone":"fr-par-1"}' headers: Content-Length: - - "489" + - "416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:06:00 GMT + - Mon, 24 Mar 2025 08:20:59 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2461,10 +2461,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4e0cd627-1231-4279-b3a0-a7c7f7c70391 + - 951d070a-3596-45af-9f0c-687cae3154ee status: 200 OK code: 200 - duration: 54.925834ms + duration: 109.123938ms - id: 50 request: proto: HTTP/1.1 @@ -2480,8 +2480,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-gw/v1/zones/fr-par-1/gateway-networks/1d6506fd-ebd0-4a54-96ef-08e3af29f175 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes-with-nexthop?nexthop_private_network_id=080dfb1a-37f5-4757-b98e-348b0b40ae43&nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=3501b80f-6388-4496-8e72-1dbadb8ac546 method: GET response: proto: HTTP/2.0 @@ -2489,20 +2489,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 502 + content_length: 1534 uncompressed: false - body: '{"address":"172.16.28.2/22","created_at":"2025-01-28T10:05:27.777096Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"1d6506fd-ebd0-4a54-96ef-08e3af29f175","ipam_config":{"ipam_ip_id":"026259f3-d6c2-43cd-a548-a8387566ab54","push_default_route":true},"mac_address":"02:00:00:12:31:08","private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","status":"ready","updated_at":"2025-01-28T10:05:38.656834Z","zone":"fr-par-1"}' + body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-03-24T08:20:19.324875Z","description":"Generated route for subnet 0214726b-3bc7-4624-8d87-ad7a458d08eb","destination":"172.16.128.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-03-24T08:20:19.324875Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-03-24T08:20:19.324875Z","description":"Generated route for subnet 20dcf9b9-028c-4917-97ce-bc4e282da973","destination":"fd46:78ab:30b8:fd11::/64","id":"","is_read_only":true,"nexthop_private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-03-24T08:20:19.324875Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-03-24T08:20:53.510353Z","description":"","destination":"0.0.0.0/0","id":"64dd0d7c-da47-458e-a40c-d7239a9decb9","is_read_only":true,"nexthop_private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","nexthop_resource_id":"89472c1d-2530-45ba-9927-65c29c934fd5","region":"fr-par","tags":[],"updated_at":"2025-03-24T08:20:53.510353Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}}],"total_count":3}' headers: Content-Length: - - "502" + - "1534" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:06:00 GMT + - Mon, 24 Mar 2025 08:20:59 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2510,10 +2510,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1a9175a8-2c17-416d-b97a-203d6923df83 + - df640639-915d-43e8-84f1-9622bbab7f66 status: 200 OK code: 200 - duration: 47.942208ms + duration: 133.965818ms - id: 51 request: proto: HTTP/1.1 @@ -2529,8 +2529,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/f720ca31-f623-4fd6-927c-86a30029bd9c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes-with-nexthop?nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=3501b80f-6388-4496-8e72-1dbadb8ac546 method: GET response: proto: HTTP/2.0 @@ -2538,20 +2538,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 371 + content_length: 3040 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:16.035861Z","id":"f720ca31-f623-4fd6-927c-86a30029bd9c","is_default":false,"name":"tf-vpc-route-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":2,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-01-28T10:05:16.035861Z"}' + body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-03-24T08:20:19.324875Z","description":"Generated route for subnet 8a9a380c-889b-4600-8226-04a031a0d551","destination":"172.16.124.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-03-24T08:20:19.324875Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-03-24T08:20:19.324875Z","description":"Generated route for subnet 0214726b-3bc7-4624-8d87-ad7a458d08eb","destination":"172.16.128.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-03-24T08:20:19.324875Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-03-24T08:20:19.324875Z","description":"Generated route for subnet 1295a2f9-5a7c-4b7d-a6b7-4ed58f90ee1c","destination":"fd46:78ab:30b8:4c57::/64","id":"","is_read_only":true,"nexthop_private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-03-24T08:20:19.324875Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-03-24T08:20:19.324875Z","description":"Generated route for subnet 20dcf9b9-028c-4917-97ce-bc4e282da973","destination":"fd46:78ab:30b8:fd11::/64","id":"","is_read_only":true,"nexthop_private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-03-24T08:20:19.324875Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-03-24T08:20:36.834617Z","description":"","destination":"0.0.0.0/0","id":"16c8579c-4435-4bf1-a21e-87ba3a32be9b","is_read_only":true,"nexthop_private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","nexthop_resource_id":"6bdb89d1-2dfd-43d0-ba57-8b24c17e9523","region":"fr-par","tags":[],"updated_at":"2025-03-24T08:20:36.834617Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-03-24T08:20:53.510353Z","description":"","destination":"0.0.0.0/0","id":"64dd0d7c-da47-458e-a40c-d7239a9decb9","is_read_only":true,"nexthop_private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","nexthop_resource_id":"89472c1d-2530-45ba-9927-65c29c934fd5","region":"fr-par","tags":[],"updated_at":"2025-03-24T08:20:53.510353Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}}],"total_count":6}' headers: Content-Length: - - "371" + - "3040" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:06:01 GMT + - Mon, 24 Mar 2025 08:20:59 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2559,10 +2559,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cef35456-ec4c-4024-8914-58cc9308c54c + - 18741f96-a82e-4ada-a780-fb887475c17f status: 200 OK code: 200 - duration: 37.727542ms + duration: 139.096195ms - id: 52 request: proto: HTTP/1.1 @@ -2578,8 +2578,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-gw/v1/zones/fr-par-1/gateways/da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes-with-nexthop?is_ipv6=true&nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=3501b80f-6388-4496-8e72-1dbadb8ac546 method: GET response: proto: HTTP/2.0 @@ -2587,20 +2587,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1955 + content_length: 1040 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-28T10:05:22.098871Z","gateway_networks":[{"address":"172.16.28.2/22","created_at":"2025-01-28T10:05:27.777096Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"1d6506fd-ebd0-4a54-96ef-08e3af29f175","ipam_config":{"ipam_ip_id":"026259f3-d6c2-43cd-a548-a8387566ab54","push_default_route":true},"mac_address":"02:00:00:12:31:08","private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","status":"ready","updated_at":"2025-01-28T10:05:38.656834Z","zone":"fr-par-1"},{"address":"172.16.20.3/22","created_at":"2025-01-28T10:05:44.268760Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"0d4eb476-ccfb-4598-adf1-2d727af92fba","ipam_config":{"ipam_ip_id":"1a9b308d-89a9-4f60-aa5b-9787c36f432f","push_default_route":true},"mac_address":"02:00:00:12:B4:4E","private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","status":"ready","updated_at":"2025-01-28T10:05:55.074705Z","zone":"fr-par-1"}],"id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","ip":{"address":"163.172.190.242","created_at":"2025-01-28T10:05:22.080386Z","gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"a66f37f5-b1c0-4dc3-835d-4b1481ffd96a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"242-190-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-01-28T10:05:22.080386Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"tf-gw-route","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-28T10:05:55.262496Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-03-24T08:20:19.324875Z","description":"Generated route for subnet 1295a2f9-5a7c-4b7d-a6b7-4ed58f90ee1c","destination":"fd46:78ab:30b8:4c57::/64","id":"","is_read_only":true,"nexthop_private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-03-24T08:20:19.324875Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-03-24T08:20:19.324875Z","description":"Generated route for subnet 20dcf9b9-028c-4917-97ce-bc4e282da973","destination":"fd46:78ab:30b8:fd11::/64","id":"","is_read_only":true,"nexthop_private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-03-24T08:20:19.324875Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}}],"total_count":2}' headers: Content-Length: - - "1955" + - "1040" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:06:01 GMT + - Mon, 24 Mar 2025 08:20:59 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2608,10 +2608,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cb6cbbb7-858f-44a5-9896-171afe545b90 + - 6a883859-5bdb-47a4-97cf-e0d41f8a5177 status: 200 OK code: 200 - duration: 34.155167ms + duration: 164.116642ms - id: 53 request: proto: HTTP/1.1 @@ -2627,8 +2627,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/9cb3032b-1bb9-4ced-a0e8-e099d7f65319 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes-with-nexthop?nexthop_private_network_id=080dfb1a-37f5-4757-b98e-348b0b40ae43&nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=3501b80f-6388-4496-8e72-1dbadb8ac546 method: GET response: proto: HTTP/2.0 @@ -2636,20 +2636,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1040 + content_length: 1534 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:16.253771Z","dhcp_enabled":true,"id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","name":"tf-pn_route_2","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.253771Z","id":"b90c6455-1228-4bcd-b33f-6d4bebb9eadf","private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.28.0/22","updated_at":"2025-01-28T10:05:16.253771Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"},{"created_at":"2025-01-28T10:05:16.253771Z","id":"af716d85-14d3-4535-bffb-67bc68ab68a7","private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:5f94::/64","updated_at":"2025-01-28T10:05:16.253771Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}],"tags":[],"updated_at":"2025-01-28T10:05:34.742948Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}' + body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-03-24T08:20:19.324875Z","description":"Generated route for subnet 0214726b-3bc7-4624-8d87-ad7a458d08eb","destination":"172.16.128.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-03-24T08:20:19.324875Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-03-24T08:20:19.324875Z","description":"Generated route for subnet 20dcf9b9-028c-4917-97ce-bc4e282da973","destination":"fd46:78ab:30b8:fd11::/64","id":"","is_read_only":true,"nexthop_private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-03-24T08:20:19.324875Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-03-24T08:20:53.510353Z","description":"","destination":"0.0.0.0/0","id":"64dd0d7c-da47-458e-a40c-d7239a9decb9","is_read_only":true,"nexthop_private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","nexthop_resource_id":"89472c1d-2530-45ba-9927-65c29c934fd5","region":"fr-par","tags":[],"updated_at":"2025-03-24T08:20:53.510353Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}}],"total_count":3}' headers: Content-Length: - - "1040" + - "1534" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:06:01 GMT + - Mon, 24 Mar 2025 08:20:59 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2657,10 +2657,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5de39a0b-f73e-473a-ac58-f212a1f78210 + - 78015d8e-f835-4cf7-a4d5-b682f6136ed0 status: 200 OK code: 200 - duration: 34.250959ms + duration: 176.816026ms - id: 54 request: proto: HTTP/1.1 @@ -2676,8 +2676,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/096f0b26-855f-44a6-bb4f-eb76a73f42a0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes-with-nexthop?nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=3501b80f-6388-4496-8e72-1dbadb8ac546 method: GET response: proto: HTTP/2.0 @@ -2685,20 +2685,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1015 + content_length: 3040 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:16.183673Z","dhcp_enabled":true,"id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","name":"tf-pn_route","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.183673Z","id":"403d4d59-a7a4-4ac1-9035-a63eb6c4598f","private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.20.0/22","updated_at":"2025-01-28T10:05:16.183673Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"},{"created_at":"2025-01-28T10:05:16.183673Z","id":"434bb0b8-72df-4500-9c31-e029ccc4d535","private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:b6aa::/64","updated_at":"2025-01-28T10:05:16.183673Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}],"tags":[],"updated_at":"2025-01-28T10:05:50.934235Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}' + body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-03-24T08:20:19.324875Z","description":"Generated route for subnet 8a9a380c-889b-4600-8226-04a031a0d551","destination":"172.16.124.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-03-24T08:20:19.324875Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-03-24T08:20:19.324875Z","description":"Generated route for subnet 0214726b-3bc7-4624-8d87-ad7a458d08eb","destination":"172.16.128.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-03-24T08:20:19.324875Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-03-24T08:20:19.324875Z","description":"Generated route for subnet 1295a2f9-5a7c-4b7d-a6b7-4ed58f90ee1c","destination":"fd46:78ab:30b8:4c57::/64","id":"","is_read_only":true,"nexthop_private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-03-24T08:20:19.324875Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-03-24T08:20:19.324875Z","description":"Generated route for subnet 20dcf9b9-028c-4917-97ce-bc4e282da973","destination":"fd46:78ab:30b8:fd11::/64","id":"","is_read_only":true,"nexthop_private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-03-24T08:20:19.324875Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-03-24T08:20:36.834617Z","description":"","destination":"0.0.0.0/0","id":"16c8579c-4435-4bf1-a21e-87ba3a32be9b","is_read_only":true,"nexthop_private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","nexthop_resource_id":"6bdb89d1-2dfd-43d0-ba57-8b24c17e9523","region":"fr-par","tags":[],"updated_at":"2025-03-24T08:20:36.834617Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-03-24T08:20:53.510353Z","description":"","destination":"0.0.0.0/0","id":"64dd0d7c-da47-458e-a40c-d7239a9decb9","is_read_only":true,"nexthop_private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","nexthop_resource_id":"89472c1d-2530-45ba-9927-65c29c934fd5","region":"fr-par","tags":[],"updated_at":"2025-03-24T08:20:53.510353Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}}],"total_count":6}' headers: Content-Length: - - "1015" + - "3040" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:06:01 GMT + - Mon, 24 Mar 2025 08:21:00 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2706,10 +2706,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f2753aec-65bc-46d3-8fd7-df7ea49b9e4b + - 5e613ff1-0d74-46c4-935e-c602b87b9d0e status: 200 OK code: 200 - duration: 36.08375ms + duration: 129.15148ms - id: 55 request: proto: HTTP/1.1 @@ -2725,8 +2725,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/routes-with-nexthop?is_ipv6=true&nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=f720ca31-f623-4fd6-927c-86a30029bd9c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes-with-nexthop?is_ipv6=true&nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=3501b80f-6388-4496-8e72-1dbadb8ac546 method: GET response: proto: HTTP/2.0 @@ -2734,20 +2734,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1068 + content_length: 1040 uncompressed: false - body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-01-28T10:05:16.035861Z","description":"Generated route for subnet af716d85-14d3-4535-bffb-67bc68ab68a7","destination":"fd5f:519c:6d46:5f94::/64","id":"","is_read_only":true,"nexthop_private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-01-28T10:05:16.035861Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-01-28T10:05:16.035861Z","description":"Generated route for subnet 434bb0b8-72df-4500-9c31-e029ccc4d535","destination":"fd5f:519c:6d46:b6aa::/64","id":"","is_read_only":true,"nexthop_private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-01-28T10:05:16.035861Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}}],"total_count":2}' + body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-03-24T08:20:19.324875Z","description":"Generated route for subnet 1295a2f9-5a7c-4b7d-a6b7-4ed58f90ee1c","destination":"fd46:78ab:30b8:4c57::/64","id":"","is_read_only":true,"nexthop_private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-03-24T08:20:19.324875Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-03-24T08:20:19.324875Z","description":"Generated route for subnet 20dcf9b9-028c-4917-97ce-bc4e282da973","destination":"fd46:78ab:30b8:fd11::/64","id":"","is_read_only":true,"nexthop_private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-03-24T08:20:19.324875Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}}],"total_count":2}' headers: Content-Length: - - "1068" + - "1040" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:06:01 GMT + - Mon, 24 Mar 2025 08:21:00 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2755,10 +2755,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2784dd77-e36b-4419-95b4-65301036c6e4 + - 6d4330f5-4feb-4ef1-ae5e-e3ef810758bc status: 200 OK code: 200 - duration: 75.4855ms + duration: 132.957744ms - id: 56 request: proto: HTTP/1.1 @@ -2774,8 +2774,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/routes-with-nexthop?nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=f720ca31-f623-4fd6-927c-86a30029bd9c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes-with-nexthop?nexthop_private_network_id=080dfb1a-37f5-4757-b98e-348b0b40ae43&nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=3501b80f-6388-4496-8e72-1dbadb8ac546 method: GET response: proto: HTTP/2.0 @@ -2783,20 +2783,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3038 + content_length: 1534 uncompressed: false - body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-01-28T10:05:16.035861Z","description":"Generated route for subnet 403d4d59-a7a4-4ac1-9035-a63eb6c4598f","destination":"172.16.20.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-01-28T10:05:16.035861Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-01-28T10:05:16.035861Z","description":"Generated route for subnet b90c6455-1228-4bcd-b33f-6d4bebb9eadf","destination":"172.16.28.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-01-28T10:05:16.035861Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-01-28T10:05:16.035861Z","description":"Generated route for subnet af716d85-14d3-4535-bffb-67bc68ab68a7","destination":"fd5f:519c:6d46:5f94::/64","id":"","is_read_only":true,"nexthop_private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-01-28T10:05:16.035861Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-01-28T10:05:16.035861Z","description":"Generated route for subnet 434bb0b8-72df-4500-9c31-e029ccc4d535","destination":"fd5f:519c:6d46:b6aa::/64","id":"","is_read_only":true,"nexthop_private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-01-28T10:05:16.035861Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-01-28T10:05:34.656952Z","description":"","destination":"0.0.0.0/0","id":"f048e16b-36f2-4de9-b777-0876116abe94","is_read_only":true,"nexthop_private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","nexthop_resource_id":"1d6506fd-ebd0-4a54-96ef-08e3af29f175","region":"fr-par","tags":[],"updated_at":"2025-01-28T10:05:34.656952Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-01-28T10:05:50.843603Z","description":"","destination":"0.0.0.0/0","id":"4930c66e-ef1c-4d56-9d2f-f451c67a2151","is_read_only":true,"nexthop_private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","nexthop_resource_id":"0d4eb476-ccfb-4598-adf1-2d727af92fba","region":"fr-par","tags":[],"updated_at":"2025-01-28T10:05:50.843603Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}}],"total_count":6}' + body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-03-24T08:20:19.324875Z","description":"Generated route for subnet 0214726b-3bc7-4624-8d87-ad7a458d08eb","destination":"172.16.128.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-03-24T08:20:19.324875Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-03-24T08:20:19.324875Z","description":"Generated route for subnet 20dcf9b9-028c-4917-97ce-bc4e282da973","destination":"fd46:78ab:30b8:fd11::/64","id":"","is_read_only":true,"nexthop_private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-03-24T08:20:19.324875Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-03-24T08:20:53.510353Z","description":"","destination":"0.0.0.0/0","id":"64dd0d7c-da47-458e-a40c-d7239a9decb9","is_read_only":true,"nexthop_private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","nexthop_resource_id":"89472c1d-2530-45ba-9927-65c29c934fd5","region":"fr-par","tags":[],"updated_at":"2025-03-24T08:20:53.510353Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}}],"total_count":3}' headers: Content-Length: - - "3038" + - "1534" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:06:01 GMT + - Mon, 24 Mar 2025 08:21:00 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2804,10 +2804,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f4cc79c4-db79-4bac-b45d-dd403cfa38fc + - d2db38b0-4560-49ee-b471-09b7672d7271 status: 200 OK code: 200 - duration: 77.613292ms + duration: 154.988345ms - id: 57 request: proto: HTTP/1.1 @@ -2823,8 +2823,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-gw/v1/zones/fr-par-1/gateway-networks/0d4eb476-ccfb-4598-adf1-2d727af92fba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/c44b6bb5-dc33-4e76-8f88-7df018c50db0 method: GET response: proto: HTTP/2.0 @@ -2832,20 +2832,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 489 + content_length: 1735 uncompressed: false - body: '{"address":"172.16.20.3/22","created_at":"2025-01-28T10:05:44.268760Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"0d4eb476-ccfb-4598-adf1-2d727af92fba","ipam_config":{"ipam_ip_id":"1a9b308d-89a9-4f60-aa5b-9787c36f432f","push_default_route":true},"mac_address":"02:00:00:12:B4:4E","private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","status":"ready","updated_at":"2025-01-28T10:05:55.074705Z","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T08:20:24.144155Z","gateway_networks":[{"created_at":"2025-03-24T08:20:30.432064Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"6bdb89d1-2dfd-43d0-ba57-8b24c17e9523","ipam_ip_id":"a0b14595-67f8-4ab9-95ae-060867bd837a","mac_address":"02:00:00:10:C0:AF","masquerade_enabled":true,"private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","push_default_route":true,"status":"ready","updated_at":"2025-03-24T08:20:40.865930Z","zone":"fr-par-1"},{"created_at":"2025-03-24T08:20:47.090585Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"89472c1d-2530-45ba-9927-65c29c934fd5","ipam_ip_id":"7845b111-0dbe-4bf8-a6c0-c26f8839f84a","mac_address":"02:00:00:13:8A:DB","masquerade_enabled":true,"private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","push_default_route":true,"status":"ready","updated_at":"2025-03-24T08:20:54.575476Z","zone":"fr-par-1"}],"id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","ipv4":{"address":"212.47.234.64","created_at":"2025-03-24T08:20:24.092798Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"b1f7a0e9-81fc-4dfb-badc-13a65562fb71","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"64-234-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T08:20:24.092798Z","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-03-24T08:20:54.707583Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "489" + - "1735" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:06:01 GMT + - Mon, 24 Mar 2025 08:21:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2853,10 +2853,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dc13c007-adc0-4b78-84c5-661ee5e41c5a + - 6e053c85-b7a9-4067-b812-5ed540c44cd3 status: 200 OK code: 200 - duration: 44.171875ms + duration: 101.442811ms - id: 58 request: proto: HTTP/1.1 @@ -2872,8 +2872,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-gw/v1/zones/fr-par-1/gateway-networks/1d6506fd-ebd0-4a54-96ef-08e3af29f175 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/3501b80f-6388-4496-8e72-1dbadb8ac546 method: GET response: proto: HTTP/2.0 @@ -2881,20 +2881,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 502 + content_length: 361 uncompressed: false - body: '{"address":"172.16.28.2/22","created_at":"2025-01-28T10:05:27.777096Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"1d6506fd-ebd0-4a54-96ef-08e3af29f175","ipam_config":{"ipam_ip_id":"026259f3-d6c2-43cd-a548-a8387566ab54","push_default_route":true},"mac_address":"02:00:00:12:31:08","private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","status":"ready","updated_at":"2025-01-28T10:05:38.656834Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-24T08:20:19.324875Z","id":"3501b80f-6388-4496-8e72-1dbadb8ac546","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-03-24T08:20:19.324875Z"}' headers: Content-Length: - - "502" + - "361" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:06:01 GMT + - Mon, 24 Mar 2025 08:21:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2902,10 +2902,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 38fe43e1-ee52-4ea8-b359-b8c41977f82e + - a124c852-b027-4b95-96dd-a8eb0c0edb24 status: 200 OK code: 200 - duration: 60.315666ms + duration: 101.871162ms - id: 59 request: proto: HTTP/1.1 @@ -2921,8 +2921,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/routes-with-nexthop?nexthop_private_network_id=096f0b26-855f-44a6-bb4f-eb76a73f42a0&nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=f720ca31-f623-4fd6-927c-86a30029bd9c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/080dfb1a-37f5-4757-b98e-348b0b40ae43 method: GET response: proto: HTTP/2.0 @@ -2930,20 +2930,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1575 + content_length: 1016 uncompressed: false - body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-01-28T10:05:16.035861Z","description":"Generated route for subnet 403d4d59-a7a4-4ac1-9035-a63eb6c4598f","destination":"172.16.20.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-01-28T10:05:16.035861Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-01-28T10:05:16.035861Z","description":"Generated route for subnet 434bb0b8-72df-4500-9c31-e029ccc4d535","destination":"fd5f:519c:6d46:b6aa::/64","id":"","is_read_only":true,"nexthop_private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-01-28T10:05:16.035861Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-01-28T10:05:50.843603Z","description":"","destination":"0.0.0.0/0","id":"4930c66e-ef1c-4d56-9d2f-f451c67a2151","is_read_only":true,"nexthop_private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","nexthop_resource_id":"0d4eb476-ccfb-4598-adf1-2d727af92fba","region":"fr-par","tags":[],"updated_at":"2025-01-28T10:05:50.843603Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}}],"total_count":3}' + body: '{"created_at":"2025-03-24T08:20:19.650254Z","dhcp_enabled":true,"id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","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-03-24T08:20:19.650254Z","id":"0214726b-3bc7-4624-8d87-ad7a458d08eb","private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.128.0/22","updated_at":"2025-03-24T08:20:19.650254Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"},{"created_at":"2025-03-24T08:20:19.650254Z","id":"20dcf9b9-028c-4917-97ce-bc4e282da973","private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:fd11::/64","updated_at":"2025-03-24T08:20:19.650254Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}],"tags":[],"updated_at":"2025-03-24T08:20:53.598394Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}' headers: Content-Length: - - "1575" + - "1016" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:06:01 GMT + - Mon, 24 Mar 2025 08:21:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2951,10 +2951,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8936f713-2e46-4390-9525-4eb29cd9b8cc + - a70f79be-cedf-4403-bf08-5f271aebfc99 status: 200 OK code: 200 - duration: 65.231666ms + duration: 111.2874ms - id: 60 request: proto: HTTP/1.1 @@ -2970,8 +2970,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-gw/v1/zones/fr-par-1/gateways/da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes-with-nexthop?is_ipv6=true&nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=3501b80f-6388-4496-8e72-1dbadb8ac546 method: GET response: proto: HTTP/2.0 @@ -2979,20 +2979,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2012 + content_length: 1040 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-28T10:05:22.098871Z","gateway_networks":[{"address":"172.16.28.2/22","created_at":"2025-01-28T10:05:27.777096Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"1d6506fd-ebd0-4a54-96ef-08e3af29f175","ipam_config":{"ipam_ip_id":"026259f3-d6c2-43cd-a548-a8387566ab54","push_default_route":true},"mac_address":"02:00:00:12:31:08","private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","status":"ready","updated_at":"2025-01-28T10:05:38.656834Z","zone":"fr-par-1"},{"address":"172.16.20.3/22","created_at":"2025-01-28T10:05:44.268760Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"0d4eb476-ccfb-4598-adf1-2d727af92fba","ipam_config":{"ipam_ip_id":"1a9b308d-89a9-4f60-aa5b-9787c36f432f","push_default_route":true},"mac_address":"02:00:00:12:B4:4E","private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","status":"ready","updated_at":"2025-01-28T10:05:55.074705Z","zone":"fr-par-1"}],"id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","ip":{"address":"163.172.190.242","created_at":"2025-01-28T10:05:22.080386Z","gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"a66f37f5-b1c0-4dc3-835d-4b1481ffd96a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"242-190-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-01-28T10:05:22.080386Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"tf-gw-route","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-28T10:05:55.262496Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-03-24T08:20:19.324875Z","description":"Generated route for subnet 1295a2f9-5a7c-4b7d-a6b7-4ed58f90ee1c","destination":"fd46:78ab:30b8:4c57::/64","id":"","is_read_only":true,"nexthop_private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-03-24T08:20:19.324875Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-03-24T08:20:19.324875Z","description":"Generated route for subnet 20dcf9b9-028c-4917-97ce-bc4e282da973","destination":"fd46:78ab:30b8:fd11::/64","id":"","is_read_only":true,"nexthop_private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-03-24T08:20:19.324875Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}}],"total_count":2}' headers: Content-Length: - - "2012" + - "1040" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:06:01 GMT + - Mon, 24 Mar 2025 08:21:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3000,10 +3000,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 91849703-815d-4782-b254-d3f934ce8eb9 + - c2532aeb-a822-4bf2-adb1-b214eee29892 status: 200 OK code: 200 - duration: 28.975541ms + duration: 120.759714ms - id: 61 request: proto: HTTP/1.1 @@ -3019,8 +3019,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-gw/v1/zones/fr-par-1/gateways/da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d44268b2-56ac-4d17-af16-5a782a7230da method: GET response: proto: HTTP/2.0 @@ -3028,20 +3028,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1955 + content_length: 1018 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-28T10:05:22.098871Z","gateway_networks":[{"address":"172.16.28.2/22","created_at":"2025-01-28T10:05:27.777096Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"1d6506fd-ebd0-4a54-96ef-08e3af29f175","ipam_config":{"ipam_ip_id":"026259f3-d6c2-43cd-a548-a8387566ab54","push_default_route":true},"mac_address":"02:00:00:12:31:08","private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","status":"ready","updated_at":"2025-01-28T10:05:38.656834Z","zone":"fr-par-1"},{"address":"172.16.20.3/22","created_at":"2025-01-28T10:05:44.268760Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"0d4eb476-ccfb-4598-adf1-2d727af92fba","ipam_config":{"ipam_ip_id":"1a9b308d-89a9-4f60-aa5b-9787c36f432f","push_default_route":true},"mac_address":"02:00:00:12:B4:4E","private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","status":"ready","updated_at":"2025-01-28T10:05:55.074705Z","zone":"fr-par-1"}],"id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","ip":{"address":"163.172.190.242","created_at":"2025-01-28T10:05:22.080386Z","gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"a66f37f5-b1c0-4dc3-835d-4b1481ffd96a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"242-190-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-01-28T10:05:22.080386Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"tf-gw-route","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-28T10:05:55.262496Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-24T08:20:19.720438Z","dhcp_enabled":true,"id":"d44268b2-56ac-4d17-af16-5a782a7230da","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-03-24T08:20:19.720438Z","id":"8a9a380c-889b-4600-8226-04a031a0d551","private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.124.0/22","updated_at":"2025-03-24T08:20:19.720438Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"},{"created_at":"2025-03-24T08:20:19.720438Z","id":"1295a2f9-5a7c-4b7d-a6b7-4ed58f90ee1c","private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:4c57::/64","updated_at":"2025-03-24T08:20:19.720438Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}],"tags":[],"updated_at":"2025-03-24T08:20:36.926203Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}' headers: Content-Length: - - "1955" + - "1018" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:06:01 GMT + - Mon, 24 Mar 2025 08:21:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3049,10 +3049,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f962f636-a9b8-49a0-8ecc-0e0ad35b34cd + - 4e952099-fcb4-4735-8fb7-5a4c91024f96 status: 200 OK code: 200 - duration: 33.783083ms + duration: 161.707085ms - id: 62 request: proto: HTTP/1.1 @@ -3068,8 +3068,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-gw/v1/zones/fr-par-1/gateway-networks/0d4eb476-ccfb-4598-adf1-2d727af92fba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes-with-nexthop?nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=3501b80f-6388-4496-8e72-1dbadb8ac546 method: GET response: proto: HTTP/2.0 @@ -3077,20 +3077,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 502 + content_length: 3040 uncompressed: false - body: '{"address":"172.16.20.3/22","created_at":"2025-01-28T10:05:44.268760Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"0d4eb476-ccfb-4598-adf1-2d727af92fba","ipam_config":{"ipam_ip_id":"1a9b308d-89a9-4f60-aa5b-9787c36f432f","push_default_route":true},"mac_address":"02:00:00:12:B4:4E","private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","status":"ready","updated_at":"2025-01-28T10:05:55.074705Z","zone":"fr-par-1"}' + body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-03-24T08:20:19.324875Z","description":"Generated route for subnet 8a9a380c-889b-4600-8226-04a031a0d551","destination":"172.16.124.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-03-24T08:20:19.324875Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-03-24T08:20:19.324875Z","description":"Generated route for subnet 0214726b-3bc7-4624-8d87-ad7a458d08eb","destination":"172.16.128.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-03-24T08:20:19.324875Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-03-24T08:20:19.324875Z","description":"Generated route for subnet 1295a2f9-5a7c-4b7d-a6b7-4ed58f90ee1c","destination":"fd46:78ab:30b8:4c57::/64","id":"","is_read_only":true,"nexthop_private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-03-24T08:20:19.324875Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-03-24T08:20:19.324875Z","description":"Generated route for subnet 20dcf9b9-028c-4917-97ce-bc4e282da973","destination":"fd46:78ab:30b8:fd11::/64","id":"","is_read_only":true,"nexthop_private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-03-24T08:20:19.324875Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-03-24T08:20:36.834617Z","description":"","destination":"0.0.0.0/0","id":"16c8579c-4435-4bf1-a21e-87ba3a32be9b","is_read_only":true,"nexthop_private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","nexthop_resource_id":"6bdb89d1-2dfd-43d0-ba57-8b24c17e9523","region":"fr-par","tags":[],"updated_at":"2025-03-24T08:20:36.834617Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-03-24T08:20:53.510353Z","description":"","destination":"0.0.0.0/0","id":"64dd0d7c-da47-458e-a40c-d7239a9decb9","is_read_only":true,"nexthop_private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","nexthop_resource_id":"89472c1d-2530-45ba-9927-65c29c934fd5","region":"fr-par","tags":[],"updated_at":"2025-03-24T08:20:53.510353Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}}],"total_count":6}' headers: Content-Length: - - "502" + - "3040" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:06:01 GMT + - Mon, 24 Mar 2025 08:21:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3098,10 +3098,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 77123dfb-b4d2-4c7d-a961-6bdbb0ce682e + - fe5d2b65-4e8d-40a5-8327-697934ee09a1 status: 200 OK code: 200 - duration: 45.487042ms + duration: 212.612986ms - id: 63 request: proto: HTTP/1.1 @@ -3117,8 +3117,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-gw/v1/zones/fr-par-1/gateway-networks/1d6506fd-ebd0-4a54-96ef-08e3af29f175 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes-with-nexthop?nexthop_private_network_id=080dfb1a-37f5-4757-b98e-348b0b40ae43&nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=3501b80f-6388-4496-8e72-1dbadb8ac546 method: GET response: proto: HTTP/2.0 @@ -3126,20 +3126,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 489 + content_length: 1534 uncompressed: false - body: '{"address":"172.16.28.2/22","created_at":"2025-01-28T10:05:27.777096Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"1d6506fd-ebd0-4a54-96ef-08e3af29f175","ipam_config":{"ipam_ip_id":"026259f3-d6c2-43cd-a548-a8387566ab54","push_default_route":true},"mac_address":"02:00:00:12:31:08","private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","status":"ready","updated_at":"2025-01-28T10:05:38.656834Z","zone":"fr-par-1"}' + body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-03-24T08:20:19.324875Z","description":"Generated route for subnet 0214726b-3bc7-4624-8d87-ad7a458d08eb","destination":"172.16.128.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-03-24T08:20:19.324875Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-03-24T08:20:19.324875Z","description":"Generated route for subnet 20dcf9b9-028c-4917-97ce-bc4e282da973","destination":"fd46:78ab:30b8:fd11::/64","id":"","is_read_only":true,"nexthop_private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-03-24T08:20:19.324875Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-03-24T08:20:53.510353Z","description":"","destination":"0.0.0.0/0","id":"64dd0d7c-da47-458e-a40c-d7239a9decb9","is_read_only":true,"nexthop_private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","nexthop_resource_id":"89472c1d-2530-45ba-9927-65c29c934fd5","region":"fr-par","tags":[],"updated_at":"2025-03-24T08:20:53.510353Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}}],"total_count":3}' headers: Content-Length: - - "489" + - "1534" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:06:01 GMT + - Mon, 24 Mar 2025 08:21:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3147,10 +3147,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4e03cc44-dff7-4095-9ccb-66a78ddd2023 + - ceb3f0e0-ad2d-4033-b97d-6f21bf64c59c status: 200 OK code: 200 - duration: 55.41075ms + duration: 109.044113ms - id: 64 request: proto: HTTP/1.1 @@ -3166,8 +3166,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/routes-with-nexthop?nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=f720ca31-f623-4fd6-927c-86a30029bd9c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/89472c1d-2530-45ba-9927-65c29c934fd5 method: GET response: proto: HTTP/2.0 @@ -3175,20 +3175,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3038 + content_length: 416 uncompressed: false - body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-01-28T10:05:16.035861Z","description":"Generated route for subnet 403d4d59-a7a4-4ac1-9035-a63eb6c4598f","destination":"172.16.20.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-01-28T10:05:16.035861Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-01-28T10:05:16.035861Z","description":"Generated route for subnet b90c6455-1228-4bcd-b33f-6d4bebb9eadf","destination":"172.16.28.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-01-28T10:05:16.035861Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-01-28T10:05:16.035861Z","description":"Generated route for subnet af716d85-14d3-4535-bffb-67bc68ab68a7","destination":"fd5f:519c:6d46:5f94::/64","id":"","is_read_only":true,"nexthop_private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-01-28T10:05:16.035861Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-01-28T10:05:16.035861Z","description":"Generated route for subnet 434bb0b8-72df-4500-9c31-e029ccc4d535","destination":"fd5f:519c:6d46:b6aa::/64","id":"","is_read_only":true,"nexthop_private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-01-28T10:05:16.035861Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-01-28T10:05:34.656952Z","description":"","destination":"0.0.0.0/0","id":"f048e16b-36f2-4de9-b777-0876116abe94","is_read_only":true,"nexthop_private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","nexthop_resource_id":"1d6506fd-ebd0-4a54-96ef-08e3af29f175","region":"fr-par","tags":[],"updated_at":"2025-01-28T10:05:34.656952Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-01-28T10:05:50.843603Z","description":"","destination":"0.0.0.0/0","id":"4930c66e-ef1c-4d56-9d2f-f451c67a2151","is_read_only":true,"nexthop_private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","nexthop_resource_id":"0d4eb476-ccfb-4598-adf1-2d727af92fba","region":"fr-par","tags":[],"updated_at":"2025-01-28T10:05:50.843603Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}}],"total_count":6}' + body: '{"created_at":"2025-03-24T08:20:47.090585Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"89472c1d-2530-45ba-9927-65c29c934fd5","ipam_ip_id":"7845b111-0dbe-4bf8-a6c0-c26f8839f84a","mac_address":"02:00:00:13:8A:DB","masquerade_enabled":true,"private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","push_default_route":true,"status":"ready","updated_at":"2025-03-24T08:20:54.575476Z","zone":"fr-par-1"}' headers: Content-Length: - - "3038" + - "416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:06:02 GMT + - Mon, 24 Mar 2025 08:21:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3196,10 +3196,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2fa526d9-6e37-4b7b-b443-b172ad4fdbfd + - fab187bd-a362-4021-b01f-692382adfbd1 status: 200 OK code: 200 - duration: 60.129917ms + duration: 109.493974ms - id: 65 request: proto: HTTP/1.1 @@ -3215,8 +3215,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/routes-with-nexthop?is_ipv6=true&nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=f720ca31-f623-4fd6-927c-86a30029bd9c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/6bdb89d1-2dfd-43d0-ba57-8b24c17e9523 method: GET response: proto: HTTP/2.0 @@ -3224,20 +3224,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1068 + content_length: 416 uncompressed: false - body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-01-28T10:05:16.035861Z","description":"Generated route for subnet af716d85-14d3-4535-bffb-67bc68ab68a7","destination":"fd5f:519c:6d46:5f94::/64","id":"","is_read_only":true,"nexthop_private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-01-28T10:05:16.035861Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-01-28T10:05:16.035861Z","description":"Generated route for subnet 434bb0b8-72df-4500-9c31-e029ccc4d535","destination":"fd5f:519c:6d46:b6aa::/64","id":"","is_read_only":true,"nexthop_private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-01-28T10:05:16.035861Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}}],"total_count":2}' + body: '{"created_at":"2025-03-24T08:20:30.432064Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"6bdb89d1-2dfd-43d0-ba57-8b24c17e9523","ipam_ip_id":"a0b14595-67f8-4ab9-95ae-060867bd837a","mac_address":"02:00:00:10:C0:AF","masquerade_enabled":true,"private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","push_default_route":true,"status":"ready","updated_at":"2025-03-24T08:20:40.865930Z","zone":"fr-par-1"}' headers: Content-Length: - - "1068" + - "416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:06:02 GMT + - Mon, 24 Mar 2025 08:21:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3245,10 +3245,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e747226f-b2a9-449f-8615-65728fa3d5c4 + - 6f6cabfc-f5a4-4be4-8690-b2c9ac6a46db status: 200 OK code: 200 - duration: 78.299584ms + duration: 121.33575ms - id: 66 request: proto: HTTP/1.1 @@ -3264,8 +3264,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/routes-with-nexthop?nexthop_private_network_id=096f0b26-855f-44a6-bb4f-eb76a73f42a0&nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=f720ca31-f623-4fd6-927c-86a30029bd9c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes-with-nexthop?nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=3501b80f-6388-4496-8e72-1dbadb8ac546 method: GET response: proto: HTTP/2.0 @@ -3273,20 +3273,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1575 + content_length: 3040 uncompressed: false - body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-01-28T10:05:16.035861Z","description":"Generated route for subnet 403d4d59-a7a4-4ac1-9035-a63eb6c4598f","destination":"172.16.20.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-01-28T10:05:16.035861Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-01-28T10:05:16.035861Z","description":"Generated route for subnet 434bb0b8-72df-4500-9c31-e029ccc4d535","destination":"fd5f:519c:6d46:b6aa::/64","id":"","is_read_only":true,"nexthop_private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-01-28T10:05:16.035861Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-01-28T10:05:50.843603Z","description":"","destination":"0.0.0.0/0","id":"4930c66e-ef1c-4d56-9d2f-f451c67a2151","is_read_only":true,"nexthop_private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","nexthop_resource_id":"0d4eb476-ccfb-4598-adf1-2d727af92fba","region":"fr-par","tags":[],"updated_at":"2025-01-28T10:05:50.843603Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}}],"total_count":3}' + body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-03-24T08:20:19.324875Z","description":"Generated route for subnet 8a9a380c-889b-4600-8226-04a031a0d551","destination":"172.16.124.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-03-24T08:20:19.324875Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-03-24T08:20:19.324875Z","description":"Generated route for subnet 0214726b-3bc7-4624-8d87-ad7a458d08eb","destination":"172.16.128.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-03-24T08:20:19.324875Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-03-24T08:20:19.324875Z","description":"Generated route for subnet 1295a2f9-5a7c-4b7d-a6b7-4ed58f90ee1c","destination":"fd46:78ab:30b8:4c57::/64","id":"","is_read_only":true,"nexthop_private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-03-24T08:20:19.324875Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-03-24T08:20:19.324875Z","description":"Generated route for subnet 20dcf9b9-028c-4917-97ce-bc4e282da973","destination":"fd46:78ab:30b8:fd11::/64","id":"","is_read_only":true,"nexthop_private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-03-24T08:20:19.324875Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-03-24T08:20:36.834617Z","description":"","destination":"0.0.0.0/0","id":"16c8579c-4435-4bf1-a21e-87ba3a32be9b","is_read_only":true,"nexthop_private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","nexthop_resource_id":"6bdb89d1-2dfd-43d0-ba57-8b24c17e9523","region":"fr-par","tags":[],"updated_at":"2025-03-24T08:20:36.834617Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-03-24T08:20:53.510353Z","description":"","destination":"0.0.0.0/0","id":"64dd0d7c-da47-458e-a40c-d7239a9decb9","is_read_only":true,"nexthop_private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","nexthop_resource_id":"89472c1d-2530-45ba-9927-65c29c934fd5","region":"fr-par","tags":[],"updated_at":"2025-03-24T08:20:53.510353Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}}],"total_count":6}' headers: Content-Length: - - "1575" + - "3040" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:06:02 GMT + - Mon, 24 Mar 2025 08:21:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3294,10 +3294,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 12a0917d-90b4-42d2-b6d2-deced4e4ec55 + - 00de11fc-e30d-403d-9fcf-2f96bea819b8 status: 200 OK code: 200 - duration: 87.996333ms + duration: 112.440196ms - id: 67 request: proto: HTTP/1.1 @@ -3313,8 +3313,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/routes-with-nexthop?nexthop_private_network_id=096f0b26-855f-44a6-bb4f-eb76a73f42a0&nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=f720ca31-f623-4fd6-927c-86a30029bd9c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes-with-nexthop?nexthop_private_network_id=080dfb1a-37f5-4757-b98e-348b0b40ae43&nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=3501b80f-6388-4496-8e72-1dbadb8ac546 method: GET response: proto: HTTP/2.0 @@ -3322,20 +3322,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1533 + content_length: 1534 uncompressed: false - body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-01-28T10:05:16.035861Z","description":"Generated route for subnet 403d4d59-a7a4-4ac1-9035-a63eb6c4598f","destination":"172.16.20.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-01-28T10:05:16.035861Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-01-28T10:05:16.035861Z","description":"Generated route for subnet 434bb0b8-72df-4500-9c31-e029ccc4d535","destination":"fd5f:519c:6d46:b6aa::/64","id":"","is_read_only":true,"nexthop_private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-01-28T10:05:16.035861Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-01-28T10:05:50.843603Z","description":"","destination":"0.0.0.0/0","id":"4930c66e-ef1c-4d56-9d2f-f451c67a2151","is_read_only":true,"nexthop_private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","nexthop_resource_id":"0d4eb476-ccfb-4598-adf1-2d727af92fba","region":"fr-par","tags":[],"updated_at":"2025-01-28T10:05:50.843603Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}}],"total_count":3}' + body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-03-24T08:20:19.324875Z","description":"Generated route for subnet 0214726b-3bc7-4624-8d87-ad7a458d08eb","destination":"172.16.128.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-03-24T08:20:19.324875Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-03-24T08:20:19.324875Z","description":"Generated route for subnet 20dcf9b9-028c-4917-97ce-bc4e282da973","destination":"fd46:78ab:30b8:fd11::/64","id":"","is_read_only":true,"nexthop_private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-03-24T08:20:19.324875Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-03-24T08:20:53.510353Z","description":"","destination":"0.0.0.0/0","id":"64dd0d7c-da47-458e-a40c-d7239a9decb9","is_read_only":true,"nexthop_private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","nexthop_resource_id":"89472c1d-2530-45ba-9927-65c29c934fd5","region":"fr-par","tags":[],"updated_at":"2025-03-24T08:20:53.510353Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}}],"total_count":3}' headers: Content-Length: - - "1533" + - "1534" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:06:03 GMT + - Mon, 24 Mar 2025 08:21:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3343,10 +3343,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b334587-9ba4-440a-bec9-6e309744bc68 + - e6055f9e-e055-4472-b29e-1e904d60b7e3 status: 200 OK code: 200 - duration: 79.890541ms + duration: 131.489783ms - id: 68 request: proto: HTTP/1.1 @@ -3362,8 +3362,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/routes-with-nexthop?is_ipv6=true&nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=f720ca31-f623-4fd6-927c-86a30029bd9c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes-with-nexthop?is_ipv6=true&nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=3501b80f-6388-4496-8e72-1dbadb8ac546 method: GET response: proto: HTTP/2.0 @@ -3371,20 +3371,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1068 + content_length: 1040 uncompressed: false - body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-01-28T10:05:16.035861Z","description":"Generated route for subnet af716d85-14d3-4535-bffb-67bc68ab68a7","destination":"fd5f:519c:6d46:5f94::/64","id":"","is_read_only":true,"nexthop_private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-01-28T10:05:16.035861Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-01-28T10:05:16.035861Z","description":"Generated route for subnet 434bb0b8-72df-4500-9c31-e029ccc4d535","destination":"fd5f:519c:6d46:b6aa::/64","id":"","is_read_only":true,"nexthop_private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-01-28T10:05:16.035861Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}}],"total_count":2}' + body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-03-24T08:20:19.324875Z","description":"Generated route for subnet 1295a2f9-5a7c-4b7d-a6b7-4ed58f90ee1c","destination":"fd46:78ab:30b8:4c57::/64","id":"","is_read_only":true,"nexthop_private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-03-24T08:20:19.324875Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-03-24T08:20:19.324875Z","description":"Generated route for subnet 20dcf9b9-028c-4917-97ce-bc4e282da973","destination":"fd46:78ab:30b8:fd11::/64","id":"","is_read_only":true,"nexthop_private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-03-24T08:20:19.324875Z","vpc_id":"3501b80f-6388-4496-8e72-1dbadb8ac546"}}],"total_count":2}' headers: Content-Length: - - "1068" + - "1040" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:06:03 GMT + - Mon, 24 Mar 2025 08:21:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3392,10 +3392,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cf24609c-a300-4623-8285-cbcc680be449 + - f0f6dadc-38e9-4661-81bb-eb0bc3aa7d82 status: 200 OK code: 200 - duration: 91.232833ms + duration: 136.854602ms - id: 69 request: proto: HTTP/1.1 @@ -3411,8 +3411,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/routes-with-nexthop?nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=f720ca31-f623-4fd6-927c-86a30029bd9c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/6bdb89d1-2dfd-43d0-ba57-8b24c17e9523 method: GET response: proto: HTTP/2.0 @@ -3420,20 +3420,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3038 + content_length: 416 uncompressed: false - body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-01-28T10:05:16.035861Z","description":"Generated route for subnet 403d4d59-a7a4-4ac1-9035-a63eb6c4598f","destination":"172.16.20.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-01-28T10:05:16.035861Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-01-28T10:05:16.035861Z","description":"Generated route for subnet b90c6455-1228-4bcd-b33f-6d4bebb9eadf","destination":"172.16.28.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-01-28T10:05:16.035861Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-01-28T10:05:16.035861Z","description":"Generated route for subnet af716d85-14d3-4535-bffb-67bc68ab68a7","destination":"fd5f:519c:6d46:5f94::/64","id":"","is_read_only":true,"nexthop_private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-01-28T10:05:16.035861Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-01-28T10:05:16.035861Z","description":"Generated route for subnet 434bb0b8-72df-4500-9c31-e029ccc4d535","destination":"fd5f:519c:6d46:b6aa::/64","id":"","is_read_only":true,"nexthop_private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-01-28T10:05:16.035861Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-01-28T10:05:34.656952Z","description":"","destination":"0.0.0.0/0","id":"f048e16b-36f2-4de9-b777-0876116abe94","is_read_only":true,"nexthop_private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","nexthop_resource_id":"1d6506fd-ebd0-4a54-96ef-08e3af29f175","region":"fr-par","tags":[],"updated_at":"2025-01-28T10:05:34.656952Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-01-28T10:05:50.843603Z","description":"","destination":"0.0.0.0/0","id":"4930c66e-ef1c-4d56-9d2f-f451c67a2151","is_read_only":true,"nexthop_private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","nexthop_resource_id":"0d4eb476-ccfb-4598-adf1-2d727af92fba","region":"fr-par","tags":[],"updated_at":"2025-01-28T10:05:50.843603Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}}],"total_count":6}' + body: '{"created_at":"2025-03-24T08:20:30.432064Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"6bdb89d1-2dfd-43d0-ba57-8b24c17e9523","ipam_ip_id":"a0b14595-67f8-4ab9-95ae-060867bd837a","mac_address":"02:00:00:10:C0:AF","masquerade_enabled":true,"private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","push_default_route":true,"status":"ready","updated_at":"2025-03-24T08:20:40.865930Z","zone":"fr-par-1"}' headers: Content-Length: - - "3038" + - "416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:06:03 GMT + - Mon, 24 Mar 2025 08:21:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3441,10 +3441,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 371f062b-d3a3-4b1d-bc37-65070275b182 + - 18ccfa87-622a-4c57-8a34-23db4f72fa16 status: 200 OK code: 200 - duration: 102.405208ms + duration: 105.818958ms - id: 70 request: proto: HTTP/1.1 @@ -3460,8 +3460,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/f720ca31-f623-4fd6-927c-86a30029bd9c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/89472c1d-2530-45ba-9927-65c29c934fd5 method: GET response: proto: HTTP/2.0 @@ -3469,20 +3469,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 361 + content_length: 416 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:16.035861Z","id":"f720ca31-f623-4fd6-927c-86a30029bd9c","is_default":false,"name":"tf-vpc-route-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":2,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-01-28T10:05:16.035861Z"}' + body: '{"created_at":"2025-03-24T08:20:47.090585Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"89472c1d-2530-45ba-9927-65c29c934fd5","ipam_ip_id":"7845b111-0dbe-4bf8-a6c0-c26f8839f84a","mac_address":"02:00:00:13:8A:DB","masquerade_enabled":true,"private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","push_default_route":true,"status":"ready","updated_at":"2025-03-24T08:20:54.575476Z","zone":"fr-par-1"}' headers: Content-Length: - - "361" + - "416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:06:03 GMT + - Mon, 24 Mar 2025 08:21:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3490,10 +3490,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c3678d06-e955-4daf-94ba-2de0e1ed9aa7 + - 5cc6da68-d1e2-4788-bcfe-3326b7c3c779 status: 200 OK code: 200 - duration: 30.849084ms + duration: 120.766019ms - id: 71 request: proto: HTTP/1.1 @@ -3509,29 +3509,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/6bdb89d1-2dfd-43d0-ba57-8b24c17e9523 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2012 + content_length: 420 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-28T10:05:22.098871Z","gateway_networks":[{"address":"172.16.28.2/22","created_at":"2025-01-28T10:05:27.777096Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"1d6506fd-ebd0-4a54-96ef-08e3af29f175","ipam_config":{"ipam_ip_id":"026259f3-d6c2-43cd-a548-a8387566ab54","push_default_route":true},"mac_address":"02:00:00:12:31:08","private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","status":"ready","updated_at":"2025-01-28T10:05:38.656834Z","zone":"fr-par-1"},{"address":"172.16.20.3/22","created_at":"2025-01-28T10:05:44.268760Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"0d4eb476-ccfb-4598-adf1-2d727af92fba","ipam_config":{"ipam_ip_id":"1a9b308d-89a9-4f60-aa5b-9787c36f432f","push_default_route":true},"mac_address":"02:00:00:12:B4:4E","private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","status":"ready","updated_at":"2025-01-28T10:05:55.074705Z","zone":"fr-par-1"}],"id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","ip":{"address":"163.172.190.242","created_at":"2025-01-28T10:05:22.080386Z","gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"a66f37f5-b1c0-4dc3-835d-4b1481ffd96a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"242-190-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-01-28T10:05:22.080386Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"tf-gw-route","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-28T10:05:55.262496Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-24T08:20:30.432064Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"6bdb89d1-2dfd-43d0-ba57-8b24c17e9523","ipam_ip_id":"a0b14595-67f8-4ab9-95ae-060867bd837a","mac_address":"02:00:00:10:C0:AF","masquerade_enabled":true,"private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","push_default_route":true,"status":"detaching","updated_at":"2025-03-24T08:21:02.339443Z","zone":"fr-par-1"}' headers: Content-Length: - - "2012" + - "420" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:06:03 GMT + - Mon, 24 Mar 2025 08:21:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3539,10 +3539,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fbd1fc0b-0609-4247-8b1e-f6dedf90f43e + - bcc3f446-1dfa-47e3-9a44-1ef7df9d10ba status: 200 OK code: 200 - duration: 42.821542ms + duration: 138.174824ms - id: 72 request: proto: HTTP/1.1 @@ -3558,29 +3558,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9cb3032b-1bb9-4ced-a0e8-e099d7f65319 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/89472c1d-2530-45ba-9927-65c29c934fd5 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1017 + content_length: 420 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:16.253771Z","dhcp_enabled":true,"id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","name":"tf-pn_route_2","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.253771Z","id":"b90c6455-1228-4bcd-b33f-6d4bebb9eadf","private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.28.0/22","updated_at":"2025-01-28T10:05:16.253771Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"},{"created_at":"2025-01-28T10:05:16.253771Z","id":"af716d85-14d3-4535-bffb-67bc68ab68a7","private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:5f94::/64","updated_at":"2025-01-28T10:05:16.253771Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}],"tags":[],"updated_at":"2025-01-28T10:05:34.742948Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}' + body: '{"created_at":"2025-03-24T08:20:47.090585Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"89472c1d-2530-45ba-9927-65c29c934fd5","ipam_ip_id":"7845b111-0dbe-4bf8-a6c0-c26f8839f84a","mac_address":"02:00:00:13:8A:DB","masquerade_enabled":true,"private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","push_default_route":true,"status":"detaching","updated_at":"2025-03-24T08:21:02.356029Z","zone":"fr-par-1"}' headers: Content-Length: - - "1017" + - "420" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:06:03 GMT + - Mon, 24 Mar 2025 08:21:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3588,10 +3588,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c502feb-d1b4-45a2-801f-b1a3c5d9ba48 + - d02bb2d4-b60c-4e34-8575-605f7b0634b5 status: 200 OK code: 200 - duration: 25.282375ms + duration: 126.225099ms - id: 73 request: proto: HTTP/1.1 @@ -3607,8 +3607,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/096f0b26-855f-44a6-bb4f-eb76a73f42a0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/6bdb89d1-2dfd-43d0-ba57-8b24c17e9523 method: GET response: proto: HTTP/2.0 @@ -3616,20 +3616,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1038 + content_length: 420 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:16.183673Z","dhcp_enabled":true,"id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","name":"tf-pn_route","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.183673Z","id":"403d4d59-a7a4-4ac1-9035-a63eb6c4598f","private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.20.0/22","updated_at":"2025-01-28T10:05:16.183673Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"},{"created_at":"2025-01-28T10:05:16.183673Z","id":"434bb0b8-72df-4500-9c31-e029ccc4d535","private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:b6aa::/64","updated_at":"2025-01-28T10:05:16.183673Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}],"tags":[],"updated_at":"2025-01-28T10:05:50.934235Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}' + body: '{"created_at":"2025-03-24T08:20:30.432064Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"6bdb89d1-2dfd-43d0-ba57-8b24c17e9523","ipam_ip_id":"a0b14595-67f8-4ab9-95ae-060867bd837a","mac_address":"02:00:00:10:C0:AF","masquerade_enabled":true,"private_network_id":"d44268b2-56ac-4d17-af16-5a782a7230da","push_default_route":true,"status":"detaching","updated_at":"2025-03-24T08:21:02.339443Z","zone":"fr-par-1"}' headers: Content-Length: - - "1038" + - "420" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:06:03 GMT + - Mon, 24 Mar 2025 08:21:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3637,10 +3637,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 76377f5e-7bad-4171-96dd-03bd96b7a483 + - cf350241-3642-4ae1-9613-54f31c437d47 status: 200 OK code: 200 - duration: 37.847125ms + duration: 111.442718ms - id: 74 request: proto: HTTP/1.1 @@ -3656,8 +3656,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/routes-with-nexthop?is_ipv6=true&nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=f720ca31-f623-4fd6-927c-86a30029bd9c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/89472c1d-2530-45ba-9927-65c29c934fd5 method: GET response: proto: HTTP/2.0 @@ -3665,20 +3665,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1040 + content_length: 420 uncompressed: false - body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-01-28T10:05:16.035861Z","description":"Generated route for subnet af716d85-14d3-4535-bffb-67bc68ab68a7","destination":"fd5f:519c:6d46:5f94::/64","id":"","is_read_only":true,"nexthop_private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-01-28T10:05:16.035861Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-01-28T10:05:16.035861Z","description":"Generated route for subnet 434bb0b8-72df-4500-9c31-e029ccc4d535","destination":"fd5f:519c:6d46:b6aa::/64","id":"","is_read_only":true,"nexthop_private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-01-28T10:05:16.035861Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}}],"total_count":2}' + body: '{"created_at":"2025-03-24T08:20:47.090585Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"89472c1d-2530-45ba-9927-65c29c934fd5","ipam_ip_id":"7845b111-0dbe-4bf8-a6c0-c26f8839f84a","mac_address":"02:00:00:13:8A:DB","masquerade_enabled":true,"private_network_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","push_default_route":true,"status":"detaching","updated_at":"2025-03-24T08:21:02.356029Z","zone":"fr-par-1"}' headers: Content-Length: - - "1040" + - "420" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:06:03 GMT + - Mon, 24 Mar 2025 08:21:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3686,10 +3686,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 15d127aa-2bd7-4118-a9a1-c84e9a4ef607 + - cf935206-fa25-4068-a2dc-704e941882f9 status: 200 OK code: 200 - duration: 66.103333ms + duration: 112.061857ms - id: 75 request: proto: HTTP/1.1 @@ -3705,8 +3705,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-gw/v1/zones/fr-par-1/gateway-networks/1d6506fd-ebd0-4a54-96ef-08e3af29f175 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/6bdb89d1-2dfd-43d0-ba57-8b24c17e9523 method: GET response: proto: HTTP/2.0 @@ -3714,20 +3714,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 502 + content_length: 136 uncompressed: false - body: '{"address":"172.16.28.2/22","created_at":"2025-01-28T10:05:27.777096Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"1d6506fd-ebd0-4a54-96ef-08e3af29f175","ipam_config":{"ipam_ip_id":"026259f3-d6c2-43cd-a548-a8387566ab54","push_default_route":true},"mac_address":"02:00:00:12:31:08","private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","status":"ready","updated_at":"2025-01-28T10:05:38.656834Z","zone":"fr-par-1"}' + body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"6bdb89d1-2dfd-43d0-ba57-8b24c17e9523","type":"not_found"}' headers: Content-Length: - - "502" + - "136" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:06:03 GMT + - Mon, 24 Mar 2025 08:21:07 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3735,10 +3735,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7c6abd47-e1c4-4965-8f91-8f59e512f591 - status: 200 OK - code: 200 - duration: 52.181958ms + - 7556168d-98f3-4dd4-b3c2-bb5f670465ad + status: 404 Not Found + code: 404 + duration: 86.523374ms - id: 76 request: proto: HTTP/1.1 @@ -3754,8 +3754,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/routes-with-nexthop?nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=f720ca31-f623-4fd6-927c-86a30029bd9c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/89472c1d-2530-45ba-9927-65c29c934fd5 method: GET response: proto: HTTP/2.0 @@ -3763,20 +3763,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3122 + content_length: 136 uncompressed: false - body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-01-28T10:05:16.035861Z","description":"Generated route for subnet 403d4d59-a7a4-4ac1-9035-a63eb6c4598f","destination":"172.16.20.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-01-28T10:05:16.035861Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-01-28T10:05:16.035861Z","description":"Generated route for subnet b90c6455-1228-4bcd-b33f-6d4bebb9eadf","destination":"172.16.28.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-01-28T10:05:16.035861Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-01-28T10:05:16.035861Z","description":"Generated route for subnet af716d85-14d3-4535-bffb-67bc68ab68a7","destination":"fd5f:519c:6d46:5f94::/64","id":"","is_read_only":true,"nexthop_private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-01-28T10:05:16.035861Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-01-28T10:05:16.035861Z","description":"Generated route for subnet 434bb0b8-72df-4500-9c31-e029ccc4d535","destination":"fd5f:519c:6d46:b6aa::/64","id":"","is_read_only":true,"nexthop_private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-01-28T10:05:16.035861Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-01-28T10:05:34.656952Z","description":"","destination":"0.0.0.0/0","id":"f048e16b-36f2-4de9-b777-0876116abe94","is_read_only":true,"nexthop_private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","nexthop_resource_id":"1d6506fd-ebd0-4a54-96ef-08e3af29f175","region":"fr-par","tags":[],"updated_at":"2025-01-28T10:05:34.656952Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-01-28T10:05:50.843603Z","description":"","destination":"0.0.0.0/0","id":"4930c66e-ef1c-4d56-9d2f-f451c67a2151","is_read_only":true,"nexthop_private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","nexthop_resource_id":"0d4eb476-ccfb-4598-adf1-2d727af92fba","region":"fr-par","tags":[],"updated_at":"2025-01-28T10:05:50.843603Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}}],"total_count":6}' + body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"89472c1d-2530-45ba-9927-65c29c934fd5","type":"not_found"}' headers: Content-Length: - - "3122" + - "136" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:06:03 GMT + - Mon, 24 Mar 2025 08:21:07 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3784,10 +3784,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6717c495-5ea7-4478-9db3-a20a5deeaa3e - status: 200 OK - code: 200 - duration: 85.886291ms + - 57c0eb9f-412c-422b-bc95-8adb3cf4a827 + status: 404 Not Found + code: 404 + duration: 91.111956ms - id: 77 request: proto: HTTP/1.1 @@ -3803,8 +3803,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-gw/v1/zones/fr-par-1/gateway-networks/0d4eb476-ccfb-4598-adf1-2d727af92fba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/c44b6bb5-dc33-4e76-8f88-7df018c50db0 method: GET response: proto: HTTP/2.0 @@ -3812,20 +3812,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 502 + content_length: 902 uncompressed: false - body: '{"address":"172.16.20.3/22","created_at":"2025-01-28T10:05:44.268760Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"0d4eb476-ccfb-4598-adf1-2d727af92fba","ipam_config":{"ipam_ip_id":"1a9b308d-89a9-4f60-aa5b-9787c36f432f","push_default_route":true},"mac_address":"02:00:00:12:B4:4E","private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","status":"ready","updated_at":"2025-01-28T10:05:55.074705Z","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T08:20:24.144155Z","gateway_networks":[],"id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","ipv4":{"address":"212.47.234.64","created_at":"2025-03-24T08:20:24.092798Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"b1f7a0e9-81fc-4dfb-badc-13a65562fb71","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"64-234-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T08:20:24.092798Z","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-03-24T08:20:54.707583Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "502" + - "902" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:06:03 GMT + - Mon, 24 Mar 2025 08:21:07 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3833,10 +3833,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 70aab4d3-0e7b-47a3-9ffd-9a0d0cc3b7bf + - 1a303862-358d-479e-ad33-ad54e1f7cc19 status: 200 OK code: 200 - duration: 50.779375ms + duration: 103.610992ms - id: 78 request: proto: HTTP/1.1 @@ -3852,29 +3852,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes-with-nexthop?nexthop_private_network_id=096f0b26-855f-44a6-bb4f-eb76a73f42a0&nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=f720ca31-f623-4fd6-927c-86a30029bd9c - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/c44b6bb5-dc33-4e76-8f88-7df018c50db0?delete_ip=false + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1533 + content_length: 903 uncompressed: false - body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-01-28T10:05:16.035861Z","description":"Generated route for subnet 403d4d59-a7a4-4ac1-9035-a63eb6c4598f","destination":"172.16.20.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-01-28T10:05:16.035861Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-01-28T10:05:16.035861Z","description":"Generated route for subnet 434bb0b8-72df-4500-9c31-e029ccc4d535","destination":"fd5f:519c:6d46:b6aa::/64","id":"","is_read_only":true,"nexthop_private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-01-28T10:05:16.035861Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-01-28T10:05:50.843603Z","description":"","destination":"0.0.0.0/0","id":"4930c66e-ef1c-4d56-9d2f-f451c67a2151","is_read_only":true,"nexthop_private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","nexthop_resource_id":"0d4eb476-ccfb-4598-adf1-2d727af92fba","region":"fr-par","tags":[],"updated_at":"2025-01-28T10:05:50.843603Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}}],"total_count":3}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T08:20:24.144155Z","gateway_networks":[],"id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","ipv4":{"address":"212.47.234.64","created_at":"2025-03-24T08:20:24.092798Z","gateway_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","id":"b1f7a0e9-81fc-4dfb-badc-13a65562fb71","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"64-234-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T08:20:24.092798Z","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-03-24T08:21:07.812639Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "1533" + - "903" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:06:03 GMT + - Mon, 24 Mar 2025 08:21:07 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3882,10 +3882,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fff3cc04-0600-4fc3-8691-c479c678c90f + - b663496c-76a4-49ed-972d-ac2d60215a03 status: 200 OK code: 200 - duration: 57.973167ms + duration: 105.325259ms - id: 79 request: proto: HTTP/1.1 @@ -3901,8 +3901,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-gw/v1/zones/fr-par-1/gateways/da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/c44b6bb5-dc33-4e76-8f88-7df018c50db0 method: GET response: proto: HTTP/2.0 @@ -3910,20 +3910,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2012 + content_length: 128 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-28T10:05:22.098871Z","gateway_networks":[{"address":"172.16.28.2/22","created_at":"2025-01-28T10:05:27.777096Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"1d6506fd-ebd0-4a54-96ef-08e3af29f175","ipam_config":{"ipam_ip_id":"026259f3-d6c2-43cd-a548-a8387566ab54","push_default_route":true},"mac_address":"02:00:00:12:31:08","private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","status":"ready","updated_at":"2025-01-28T10:05:38.656834Z","zone":"fr-par-1"},{"address":"172.16.20.3/22","created_at":"2025-01-28T10:05:44.268760Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"0d4eb476-ccfb-4598-adf1-2d727af92fba","ipam_config":{"ipam_ip_id":"1a9b308d-89a9-4f60-aa5b-9787c36f432f","push_default_route":true},"mac_address":"02:00:00:12:B4:4E","private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","status":"ready","updated_at":"2025-01-28T10:05:55.074705Z","zone":"fr-par-1"}],"id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","ip":{"address":"163.172.190.242","created_at":"2025-01-28T10:05:22.080386Z","gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"a66f37f5-b1c0-4dc3-835d-4b1481ffd96a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"242-190-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-01-28T10:05:22.080386Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"tf-gw-route","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-28T10:05:55.262496Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"message":"resource is not found","resource":"gateway","resource_id":"c44b6bb5-dc33-4e76-8f88-7df018c50db0","type":"not_found"}' headers: Content-Length: - - "2012" + - "128" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:06:03 GMT + - Mon, 24 Mar 2025 08:21:07 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3931,10 +3931,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7dcd6e81-7f66-4ab2-b5d1-f2602167bee4 - status: 200 OK - code: 200 - duration: 33.2355ms + - 848d3ef3-45cd-44b1-8066-b02559165264 + status: 404 Not Found + code: 404 + duration: 89.328761ms - id: 80 request: proto: HTTP/1.1 @@ -3950,29 +3950,27 @@ interactions: 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-gw/v1/zones/fr-par-1/gateways/da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d44268b2-56ac-4d17-af16-5a782a7230da + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1955 + content_length: 0 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-28T10:05:22.098871Z","gateway_networks":[{"address":"172.16.28.2/22","created_at":"2025-01-28T10:05:27.777096Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"1d6506fd-ebd0-4a54-96ef-08e3af29f175","ipam_config":{"ipam_ip_id":"026259f3-d6c2-43cd-a548-a8387566ab54","push_default_route":true},"mac_address":"02:00:00:12:31:08","private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","status":"ready","updated_at":"2025-01-28T10:05:38.656834Z","zone":"fr-par-1"},{"address":"172.16.20.3/22","created_at":"2025-01-28T10:05:44.268760Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"0d4eb476-ccfb-4598-adf1-2d727af92fba","ipam_config":{"ipam_ip_id":"1a9b308d-89a9-4f60-aa5b-9787c36f432f","push_default_route":true},"mac_address":"02:00:00:12:B4:4E","private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","status":"ready","updated_at":"2025-01-28T10:05:55.074705Z","zone":"fr-par-1"}],"id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","ip":{"address":"163.172.190.242","created_at":"2025-01-28T10:05:22.080386Z","gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"a66f37f5-b1c0-4dc3-835d-4b1481ffd96a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"242-190-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-01-28T10:05:22.080386Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"tf-gw-route","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-28T10:05:55.262496Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: "" headers: - Content-Length: - - "1955" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:06:03 GMT + - Mon, 24 Mar 2025 08:21:09 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3980,10 +3978,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b675297-d06a-48f1-9758-2350a5b991af - status: 200 OK - code: 200 - duration: 44.089583ms + - 852e1088-b06d-4e90-8c9c-ca912cbe9092 + status: 204 No Content + code: 204 + duration: 1.808978162s - id: 81 request: proto: HTTP/1.1 @@ -3999,127 +3997,27 @@ interactions: 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-gw/v1/zones/fr-par-1/gateway-networks/1d6506fd-ebd0-4a54-96ef-08e3af29f175 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/080dfb1a-37f5-4757-b98e-348b0b40ae43 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 489 - uncompressed: false - body: '{"address":"172.16.28.2/22","created_at":"2025-01-28T10:05:27.777096Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"1d6506fd-ebd0-4a54-96ef-08e3af29f175","ipam_config":{"ipam_ip_id":"026259f3-d6c2-43cd-a548-a8387566ab54","push_default_route":true},"mac_address":"02:00:00:12:31:08","private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","status":"ready","updated_at":"2025-01-28T10:05:38.656834Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "489" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 28 Jan 2025 10:06:03 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: - - 918731b8-4c46-4c4a-9639-8611f8e96c8d - status: 200 OK - code: 200 - duration: 49.505792ms - - id: 82 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/0d4eb476-ccfb-4598-adf1-2d727af92fba - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 502 uncompressed: false - body: '{"address":"172.16.20.3/22","created_at":"2025-01-28T10:05:44.268760Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"0d4eb476-ccfb-4598-adf1-2d727af92fba","ipam_config":{"ipam_ip_id":"1a9b308d-89a9-4f60-aa5b-9787c36f432f","push_default_route":true},"mac_address":"02:00:00:12:B4:4E","private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","status":"ready","updated_at":"2025-01-28T10:05:55.074705Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "502" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 28 Jan 2025 10:06:03 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: - - dcc6e5cf-3813-421d-8857-e2f604752672 - status: 200 OK - code: 200 - duration: 51.014125ms - - 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.23.3; 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=096f0b26-855f-44a6-bb4f-eb76a73f42a0&nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=f720ca31-f623-4fd6-927c-86a30029bd9c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1533 - uncompressed: false - body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-01-28T10:05:16.035861Z","description":"Generated route for subnet 403d4d59-a7a4-4ac1-9035-a63eb6c4598f","destination":"172.16.20.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-01-28T10:05:16.035861Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-01-28T10:05:16.035861Z","description":"Generated route for subnet 434bb0b8-72df-4500-9c31-e029ccc4d535","destination":"fd5f:519c:6d46:b6aa::/64","id":"","is_read_only":true,"nexthop_private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-01-28T10:05:16.035861Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-01-28T10:05:50.843603Z","description":"","destination":"0.0.0.0/0","id":"4930c66e-ef1c-4d56-9d2f-f451c67a2151","is_read_only":true,"nexthop_private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","nexthop_resource_id":"0d4eb476-ccfb-4598-adf1-2d727af92fba","region":"fr-par","tags":[],"updated_at":"2025-01-28T10:05:50.843603Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}}],"total_count":3}' headers: - Content-Length: - - "1533" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:06:04 GMT + - Mon, 24 Mar 2025 08:21:09 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4127,11 +4025,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 17b58814-de30-4352-874f-f3d80f2426af - status: 200 OK - code: 200 - duration: 57.386042ms - - id: 84 + - 55bc9128-e7cb-496f-a645-f38010a7342a + status: 204 No Content + code: 204 + duration: 2.060253829s + - id: 82 request: proto: HTTP/1.1 proto_major: 1 @@ -4146,78 +4044,27 @@ interactions: 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/routes-with-nexthop?is_ipv6=true&nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=f720ca31-f623-4fd6-927c-86a30029bd9c - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/3501b80f-6388-4496-8e72-1dbadb8ac546 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1040 - uncompressed: false - body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-01-28T10:05:16.035861Z","description":"Generated route for subnet af716d85-14d3-4535-bffb-67bc68ab68a7","destination":"fd5f:519c:6d46:5f94::/64","id":"","is_read_only":true,"nexthop_private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-01-28T10:05:16.035861Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-01-28T10:05:16.035861Z","description":"Generated route for subnet 434bb0b8-72df-4500-9c31-e029ccc4d535","destination":"fd5f:519c:6d46:b6aa::/64","id":"","is_read_only":true,"nexthop_private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-01-28T10:05:16.035861Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}}],"total_count":2}' - headers: - Content-Length: - - "1040" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 28 Jan 2025 10:06:04 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: - - 41901d54-347f-4490-9f5c-cdb149e8a279 - status: 200 OK - code: 200 - duration: 63.413542ms - - id: 85 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; 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=f720ca31-f623-4fd6-927c-86a30029bd9c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 3122 uncompressed: false - body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-01-28T10:05:16.035861Z","description":"Generated route for subnet 403d4d59-a7a4-4ac1-9035-a63eb6c4598f","destination":"172.16.20.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-01-28T10:05:16.035861Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-01-28T10:05:16.035861Z","description":"Generated route for subnet b90c6455-1228-4bcd-b33f-6d4bebb9eadf","destination":"172.16.28.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-01-28T10:05:16.035861Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-01-28T10:05:16.035861Z","description":"Generated route for subnet af716d85-14d3-4535-bffb-67bc68ab68a7","destination":"fd5f:519c:6d46:5f94::/64","id":"","is_read_only":true,"nexthop_private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-01-28T10:05:16.035861Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-01-28T10:05:16.035861Z","description":"Generated route for subnet 434bb0b8-72df-4500-9c31-e029ccc4d535","destination":"fd5f:519c:6d46:b6aa::/64","id":"","is_read_only":true,"nexthop_private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-01-28T10:05:16.035861Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-01-28T10:05:34.656952Z","description":"","destination":"0.0.0.0/0","id":"f048e16b-36f2-4de9-b777-0876116abe94","is_read_only":true,"nexthop_private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","nexthop_resource_id":"1d6506fd-ebd0-4a54-96ef-08e3af29f175","region":"fr-par","tags":[],"updated_at":"2025-01-28T10:05:34.656952Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-01-28T10:05:50.843603Z","description":"","destination":"0.0.0.0/0","id":"4930c66e-ef1c-4d56-9d2f-f451c67a2151","is_read_only":true,"nexthop_private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","nexthop_resource_id":"0d4eb476-ccfb-4598-adf1-2d727af92fba","region":"fr-par","tags":[],"updated_at":"2025-01-28T10:05:50.843603Z","vpc_id":"f720ca31-f623-4fd6-927c-86a30029bd9c"}}],"total_count":6}' + body: "" headers: - Content-Length: - - "3122" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:06:04 GMT + - Mon, 24 Mar 2025 08:21:09 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4225,11 +4072,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 153c4908-d1ea-4f8a-939e-cda5e0c762ac - status: 200 OK - code: 200 - duration: 66.943125ms - - id: 86 + - a1005fc9-1087-4ca0-afed-3e7887f09ac1 + status: 204 No Content + code: 204 + duration: 167.200874ms + - id: 83 request: proto: HTTP/1.1 proto_major: 1 @@ -4244,8 +4091,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-gw/v1/zones/fr-par-1/gateway-networks/0d4eb476-ccfb-4598-adf1-2d727af92fba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d44268b2-56ac-4d17-af16-5a782a7230da method: GET response: proto: HTTP/2.0 @@ -4253,20 +4100,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 489 + content_length: 136 uncompressed: false - body: '{"address":"172.16.20.3/22","created_at":"2025-01-28T10:05:44.268760Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"0d4eb476-ccfb-4598-adf1-2d727af92fba","ipam_config":{"ipam_ip_id":"1a9b308d-89a9-4f60-aa5b-9787c36f432f","push_default_route":true},"mac_address":"02:00:00:12:B4:4E","private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","status":"ready","updated_at":"2025-01-28T10:05:55.074705Z","zone":"fr-par-1"}' + body: '{"message":"resource is not found","resource":"private_network","resource_id":"d44268b2-56ac-4d17-af16-5a782a7230da","type":"not_found"}' headers: Content-Length: - - "489" + - "136" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:06:04 GMT + - Mon, 24 Mar 2025 08:21:10 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4274,832 +4121,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 67d1c69b-b1c8-4f15-a91d-fa2b623da887 - status: 200 OK - code: 200 - duration: 50.884666ms - - id: 87 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/1d6506fd-ebd0-4a54-96ef-08e3af29f175 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 502 - uncompressed: false - body: '{"address":"172.16.28.2/22","created_at":"2025-01-28T10:05:27.777096Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"1d6506fd-ebd0-4a54-96ef-08e3af29f175","ipam_config":{"ipam_ip_id":"026259f3-d6c2-43cd-a548-a8387566ab54","push_default_route":true},"mac_address":"02:00:00:12:31:08","private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","status":"ready","updated_at":"2025-01-28T10:05:38.656834Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "502" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 28 Jan 2025 10:06:04 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: - - 4208d4d5-0650-4262-8df1-2e819460145f - status: 200 OK - code: 200 - duration: 55.422292ms - - id: 88 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/1d6506fd-ebd0-4a54-96ef-08e3af29f175?cleanup_dhcp=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: - - Tue, 28 Jan 2025 10:06:04 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: - - f51fc164-c794-481b-8162-022be5cdeb9a - status: 204 No Content - code: 204 - duration: 74.709916ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/0d4eb476-ccfb-4598-adf1-2d727af92fba?cleanup_dhcp=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: - - Tue, 28 Jan 2025 10:06:04 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: - - 468bbe94-84f9-44fe-b37d-7d4f0087bc9d - status: 204 No Content - code: 204 - duration: 79.082666ms - - id: 90 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/0d4eb476-ccfb-4598-adf1-2d727af92fba - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 493 - uncompressed: false - body: '{"address":"172.16.20.3/22","created_at":"2025-01-28T10:05:44.268760Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"0d4eb476-ccfb-4598-adf1-2d727af92fba","ipam_config":{"ipam_ip_id":"1a9b308d-89a9-4f60-aa5b-9787c36f432f","push_default_route":true},"mac_address":"02:00:00:12:B4:4E","private_network_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","status":"detaching","updated_at":"2025-01-28T10:06:04.798260Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "493" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 28 Jan 2025 10:06:04 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: - - 65523cd2-b396-49b2-ae38-9b6df34d53bb - status: 200 OK - code: 200 - duration: 45.907292ms - - id: 91 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/1d6506fd-ebd0-4a54-96ef-08e3af29f175 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 506 - uncompressed: false - body: '{"address":"172.16.28.2/22","created_at":"2025-01-28T10:05:27.777096Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"1d6506fd-ebd0-4a54-96ef-08e3af29f175","ipam_config":{"ipam_ip_id":"026259f3-d6c2-43cd-a548-a8387566ab54","push_default_route":true},"mac_address":"02:00:00:12:31:08","private_network_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","status":"detaching","updated_at":"2025-01-28T10:06:04.803743Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "506" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 28 Jan 2025 10:06:04 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: - - 3a58443c-542d-41a3-abc5-516bdd4a366a - status: 200 OK - code: 200 - duration: 47.865792ms - - id: 92 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/0d4eb476-ccfb-4598-adf1-2d727af92fba - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 136 - uncompressed: false - body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"0d4eb476-ccfb-4598-adf1-2d727af92fba","type":"not_found"}' - headers: - Content-Length: - - "136" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 28 Jan 2025 10:06:09 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: - - dc0cd327-87b0-434a-99ae-d3da49cad9f6 - status: 404 Not Found - code: 404 - duration: 24.931583ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/1d6506fd-ebd0-4a54-96ef-08e3af29f175 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 136 - uncompressed: false - body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"1d6506fd-ebd0-4a54-96ef-08e3af29f175","type":"not_found"}' - headers: - Content-Length: - - "136" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 28 Jan 2025 10:06:09 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: - - 37f4be6f-12ea-423d-bfe6-a11e6d699b6b - status: 404 Not Found - code: 404 - duration: 25.386292ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1006 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-28T10:05:22.098871Z","gateway_networks":[],"id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","ip":{"address":"163.172.190.242","created_at":"2025-01-28T10:05:22.080386Z","gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"a66f37f5-b1c0-4dc3-835d-4b1481ffd96a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"242-190-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-01-28T10:05:22.080386Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"tf-gw-route","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-28T10:05:55.262496Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' - headers: - Content-Length: - - "1006" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 28 Jan 2025 10:06:09 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: - - aae9d7f0-bc8e-4637-950f-af5dc603e7d2 - status: 200 OK - code: 200 - duration: 31.910125ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 976 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-28T10:05:22.098871Z","gateway_networks":[],"id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","ip":{"address":"163.172.190.242","created_at":"2025-01-28T10:05:22.080386Z","gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"a66f37f5-b1c0-4dc3-835d-4b1481ffd96a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"242-190-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-01-28T10:05:22.080386Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"tf-gw-route","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-28T10:05:55.262496Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' - headers: - Content-Length: - - "976" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 28 Jan 2025 10:06:09 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: - - 92f8a890-c091-4ad4-9e7c-ea2bbfb72654 - status: 200 OK - code: 200 - duration: 33.354458ms - - id: 96 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1006 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-28T10:05:22.098871Z","gateway_networks":[],"id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","ip":{"address":"163.172.190.242","created_at":"2025-01-28T10:05:22.080386Z","gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"a66f37f5-b1c0-4dc3-835d-4b1481ffd96a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"242-190-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-01-28T10:05:22.080386Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"tf-gw-route","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-28T10:05:55.262496Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' - headers: - Content-Length: - - "1006" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 28 Jan 2025 10:06:09 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: - - 12cc0b41-957e-4b87-ac55-f8606f0b7d9d - status: 200 OK - code: 200 - duration: 37.204125ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91?cleanup_dhcp=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: - - Tue, 28 Jan 2025 10:06: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: - - b309f88a-650a-4163-9fba-e42ff9053bd8 - status: 204 No Content - code: 204 - duration: 48.841541ms - - id: 98 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 977 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-28T10:05:22.098871Z","gateway_networks":[],"id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","ip":{"address":"163.172.190.242","created_at":"2025-01-28T10:05:22.080386Z","gateway_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","id":"a66f37f5-b1c0-4dc3-835d-4b1481ffd96a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"242-190-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-01-28T10:05:22.080386Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"tf-gw-route","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"deleting","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-28T10:06:10.012109Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' - headers: - Content-Length: - - "977" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 28 Jan 2025 10:06: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: - - f26e072f-1359-49d6-ac2b-6f378a84b212 - status: 200 OK - code: 200 - duration: 30.105917ms - - id: 99 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9cb3032b-1bb9-4ced-a0e8-e099d7f65319 - 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: - - Tue, 28 Jan 2025 10:06: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: - - 2491c16a-7c9d-4418-ae54-e4aa5622ba25 - status: 204 No Content - code: 204 - duration: 1.463922792s - - id: 100 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/096f0b26-855f-44a6-bb4f-eb76a73f42a0 - 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: - - Tue, 28 Jan 2025 10:06: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: - - 4813c4e4-c519-4129-898c-a35ba9b770b4 - status: 204 No Content - code: 204 - duration: 1.5546525s - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/f720ca31-f623-4fd6-927c-86a30029bd9c - 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: - - Tue, 28 Jan 2025 10:06: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: - - 8ef6c77a-0f8b-456c-bf0d-730e818a20ce - status: 204 No Content - code: 204 - duration: 95.065709ms - - id: 102 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 128 - uncompressed: false - body: '{"message":"resource is not found","resource":"gateway","resource_id":"da2e0ce7-d35e-4a9b-84d6-5cf0a1144c91","type":"not_found"}' - headers: - Content-Length: - - "128" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 28 Jan 2025 10:06:15 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: - - 82f0be33-4059-48d1-a967-9b2bcea97d78 - status: 404 Not Found - code: 404 - duration: 25.427208ms - - id: 103 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/096f0b26-855f-44a6-bb4f-eb76a73f42a0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 136 - uncompressed: false - body: '{"message":"resource is not found","resource":"private_network","resource_id":"096f0b26-855f-44a6-bb4f-eb76a73f42a0","type":"not_found"}' - headers: - Content-Length: - - "136" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 28 Jan 2025 10:06:15 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: - - fc9a19f8-f6f3-4e71-9dfe-7b458277433f + - d0cc528d-7090-4421-8405-7c6f73d48b9e status: 404 Not Found code: 404 - duration: 32.821625ms - - id: 104 + duration: 80.733147ms + - id: 84 request: proto: HTTP/1.1 proto_major: 1 @@ -5114,8 +4140,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/9cb3032b-1bb9-4ced-a0e8-e099d7f65319 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/080dfb1a-37f5-4757-b98e-348b0b40ae43 method: GET response: proto: HTTP/2.0 @@ -5125,7 +4151,7 @@ interactions: trailer: {} content_length: 136 uncompressed: false - body: '{"message":"resource is not found","resource":"private_network","resource_id":"9cb3032b-1bb9-4ced-a0e8-e099d7f65319","type":"not_found"}' + body: '{"message":"resource is not found","resource":"private_network","resource_id":"080dfb1a-37f5-4757-b98e-348b0b40ae43","type":"not_found"}' headers: Content-Length: - "136" @@ -5134,9 +4160,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:06:15 GMT + - Mon, 24 Mar 2025 08:21:10 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5144,7 +4170,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 38fa9bf0-7263-41d1-a7d5-d6e94b6814b4 + - fa409e7c-325c-447e-aae7-4a6250783864 status: 404 Not Found code: 404 - duration: 27.340542ms + duration: 87.022158ms diff --git a/internal/services/vpcgw/dhcp.go b/internal/services/vpcgw/dhcp.go index 437d5d4b34..d9ef1c40ea 100644 --- a/internal/services/vpcgw/dhcp.go +++ b/internal/services/vpcgw/dhcp.go @@ -127,6 +127,7 @@ func ResourceDHCP() *schema.Resource { Description: "The date and time of the last update of the public gateway.", }, }, + DeprecationMessage: "The 'dhcp' resource is deprecated. In 2023, DHCP functionality was moved from Public Gateways to Private Networks, DHCP resources are now no longer needed. For more information, please refer to the dedicated guide: https://github.com/scaleway/terraform-provider-scaleway/blob/master/docs/guides/migration_guide_vpcgw_v2.md", } } diff --git a/internal/services/vpcgw/dhcp_data_source_test.go b/internal/services/vpcgw/dhcp_data_source_test.go deleted file mode 100644 index 1129e31c85..0000000000 --- a/internal/services/vpcgw/dhcp_data_source_test.go +++ /dev/null @@ -1,45 +0,0 @@ -package vpcgw_test - -import ( - "testing" - - "github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource" - "github.com/scaleway/terraform-provider-scaleway/v2/internal/acctest" - vpcgwchecks "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/vpcgw/testfuncs" -) - -func TestAccDataSourceVPCPublicGatewayDHCP_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: vpcgwchecks.IsIPDestroyed(tt), - Steps: []resource.TestStep{ - { - Config: ` - resource "scaleway_vpc_public_gateway_dhcp" "main" { - subnet = "192.168.1.0/24" - }`, - }, - { - Config: ` - resource "scaleway_vpc_public_gateway_dhcp" "main" { - subnet = "192.168.1.0/24" - } - - data "scaleway_vpc_public_gateway_dhcp" "dhcp_by_id" { - dhcp_id = "${scaleway_vpc_public_gateway_dhcp.main.id}" - } - `, - Check: resource.ComposeTestCheckFunc( - testAccCheckVPCPublicGatewayDHCPExists(tt, "scaleway_vpc_public_gateway_dhcp.main"), - resource.TestCheckResourceAttrPair( - "data.scaleway_vpc_public_gateway_dhcp.dhcp_by_id", "dhcp_id", - "scaleway_vpc_public_gateway_dhcp.main", "id"), - ), - }, - }, - }) -} diff --git a/internal/services/vpcgw/dhcp_reservation.go b/internal/services/vpcgw/dhcp_reservation.go index 0d99e301d4..905e825860 100644 --- a/internal/services/vpcgw/dhcp_reservation.go +++ b/internal/services/vpcgw/dhcp_reservation.go @@ -74,7 +74,8 @@ func ResourceDHCPReservation() *schema.Resource { }, "zone": zonal.Schema(), }, - CustomizeDiff: cdf.LocalityCheck("gateway_network_id"), + CustomizeDiff: cdf.LocalityCheck("gateway_network_id"), + DeprecationMessage: "The 'dhcp_reservation' resource is deprecated. In 2023, DHCP functionality was moved from Public Gateways to Private Networks, DHCP resources are now no longer needed. You can use IPAM to manage your IPs. For more information, please refer to the dedicated guide: https://github.com/scaleway/terraform-provider-scaleway/blob/master/docs/guides/migration_guide_vpcgw_v2.md", } } diff --git a/internal/services/vpcgw/dhcp_reservation_data_source_test.go b/internal/services/vpcgw/dhcp_reservation_data_source_test.go deleted file mode 100644 index 650e65eb75..0000000000 --- a/internal/services/vpcgw/dhcp_reservation_data_source_test.go +++ /dev/null @@ -1,205 +0,0 @@ -package vpcgw_test - -import ( - "fmt" - "testing" - - "github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource" - "github.com/scaleway/terraform-provider-scaleway/v2/internal/acctest" - vpcgwchecks "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/vpcgw/testfuncs" -) - -func TestAccDataSourceVPCPublicGatewayDHCPReservation_Basic(t *testing.T) { - tt := acctest.NewTestTools(t) - defer tt.Cleanup() - - pnName := "TestAccScalewayDataSourceVPCPublicGatewayDHCPReservation_Basic" - resource.ParallelTest(t, resource.TestCase{ - PreCheck: func() { acctest.PreCheck(t) }, - ProviderFactories: tt.ProviderFactories, - CheckDestroy: vpcgwchecks.IsDHCPDestroyed(tt), - - Steps: []resource.TestStep{ - { - Config: fmt.Sprintf(` - resource scaleway_vpc_private_network main { - name = "%s" - } - - resource "scaleway_instance_server" "main" { - image = "ubuntu_focal" - type = "DEV1-S" - zone = "fr-par-1" - - private_network { - pn_id = scaleway_vpc_private_network.main.id - } - } - - resource scaleway_vpc_public_gateway_ip main { - } - - resource scaleway_vpc_public_gateway_dhcp main { - subnet = "192.168.1.0/24" - } - - resource scaleway_vpc_public_gateway main { - name = "foobar" - type = "VPC-GW-S" - ip_id = scaleway_vpc_public_gateway_ip.main.id - } - - resource scaleway_vpc_gateway_network main { - gateway_id = scaleway_vpc_public_gateway.main.id - private_network_id = scaleway_vpc_private_network.main.id - dhcp_id = scaleway_vpc_public_gateway_dhcp.main.id - cleanup_dhcp = true - enable_masquerade = true - depends_on = [scaleway_vpc_public_gateway_ip.main, scaleway_vpc_private_network.main] - } - `, pnName), - }, - { - Config: fmt.Sprintf(` - resource scaleway_vpc_private_network main { - name = "%s" - } - - resource "scaleway_instance_server" "main" { - image = "ubuntu_focal" - type = "DEV1-S" - zone = "fr-par-1" - - private_network { - pn_id = scaleway_vpc_private_network.main.id - } - } - - resource scaleway_vpc_public_gateway_ip main { - } - - resource scaleway_vpc_public_gateway_dhcp main { - subnet = "192.168.1.0/24" - } - - resource scaleway_vpc_public_gateway main { - name = "foobar" - type = "VPC-GW-S" - ip_id = scaleway_vpc_public_gateway_ip.main.id - } - - resource scaleway_vpc_gateway_network main { - gateway_id = scaleway_vpc_public_gateway.main.id - private_network_id = scaleway_vpc_private_network.main.id - dhcp_id = scaleway_vpc_public_gateway_dhcp.main.id - cleanup_dhcp = true - enable_masquerade = true - depends_on = [scaleway_vpc_public_gateway_ip.main, scaleway_vpc_private_network.main] - } - - data "scaleway_vpc_public_gateway_dhcp_reservation" "by_mac_address_and_gw_network" { - mac_address = "${scaleway_instance_server.main.private_network.0.mac_address}" - gateway_network_id = scaleway_vpc_gateway_network.main.id - wait_for_dhcp = true - depends_on = [scaleway_vpc_gateway_network.main, scaleway_vpc_public_gateway_dhcp.main, scaleway_vpc_private_network.main] - } - `, pnName), - Check: resource.ComposeTestCheckFunc( - resource.TestCheckResourceAttrPair( - "data.scaleway_vpc_public_gateway_dhcp_reservation.by_mac_address_and_gw_network", "mac_address", - "scaleway_instance_server.main", "private_network.0.mac_address"), - ), - }, - }, - }) -} - -func TestAccDataSourceVPCPublicGatewayDHCPReservation_Static(t *testing.T) { - tt := acctest.NewTestTools(t) - defer tt.Cleanup() - - pnName := "TestAccScalewayDataSourceVPCPublicGatewayDHCPReservation_Static" - resource.ParallelTest(t, resource.TestCase{ - PreCheck: func() { acctest.PreCheck(t) }, - ProviderFactories: tt.ProviderFactories, - CheckDestroy: vpcgwchecks.IsDHCPDestroyed(tt), - - Steps: []resource.TestStep{ - { - Config: fmt.Sprintf(` - resource scaleway_vpc_private_network main { - name = "%s" - } - - resource "scaleway_instance_security_group" main { - inbound_default_policy = "drop" - outbound_default_policy = "accept" - - inbound_rule { - action = "accept" - port = "22" - } - } - - resource "scaleway_instance_server" "main" { - image = "ubuntu_focal" - type = "DEV1-S" - zone = "fr-par-1" - - security_group_id = scaleway_instance_security_group.main.id - - private_network { - pn_id = scaleway_vpc_private_network.main.id - } - } - - resource scaleway_vpc_public_gateway_ip main { - } - - resource scaleway_vpc_public_gateway_dhcp main { - subnet = "192.168.1.0/24" - } - - resource scaleway_vpc_public_gateway main { - name = "foobar" - type = "VPC-GW-S" - ip_id = scaleway_vpc_public_gateway_ip.main.id - } - - resource scaleway_vpc_gateway_network main { - gateway_id = scaleway_vpc_public_gateway.main.id - private_network_id = scaleway_vpc_private_network.main.id - dhcp_id = scaleway_vpc_public_gateway_dhcp.main.id - cleanup_dhcp = true - enable_masquerade = true - depends_on = [scaleway_vpc_public_gateway_ip.main, scaleway_vpc_private_network.main] - } - - resource scaleway_vpc_public_gateway_dhcp_reservation main { - gateway_network_id = scaleway_vpc_gateway_network.main.id - mac_address = scaleway_instance_server.main.private_network.0.mac_address - ip_address = "192.168.1.4" - } - - ### VPC PAT RULE - resource "scaleway_vpc_public_gateway_pat_rule" "main" { - gateway_id = scaleway_vpc_public_gateway.main.id - private_ip = scaleway_vpc_public_gateway_dhcp_reservation.main.ip_address - private_port = 22 - public_port = 2222 - protocol = "tcp" - } - - data "scaleway_vpc_public_gateway_dhcp_reservation" "by_id" { - reservation_id = "${scaleway_vpc_public_gateway_dhcp_reservation.main.id}" - } - `, pnName), - Check: resource.ComposeTestCheckFunc( - resource.TestCheckResourceAttrPair( - "data.scaleway_vpc_public_gateway_dhcp_reservation.by_id", "mac_address", - "scaleway_instance_server.main", "private_network.0.mac_address"), - ), - }, - }, - }) -} diff --git a/internal/services/vpcgw/dhcp_reservation_test.go b/internal/services/vpcgw/dhcp_reservation_test.go deleted file mode 100644 index 4ab3432dfb..0000000000 --- a/internal/services/vpcgw/dhcp_reservation_test.go +++ /dev/null @@ -1,199 +0,0 @@ -package vpcgw_test - -import ( - "fmt" - "testing" - - "github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource" - "github.com/hashicorp/terraform-plugin-sdk/v2/terraform" - vpcgwSDK "github.com/scaleway/scaleway-sdk-go/api/vpcgw/v1" - "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/logging" - "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/vpcgw" -) - -func TestAccVPCPublicGatewayDHCPEntry_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: testAccCheckVPCPublicGatewayDHCPEntryDestroy(tt), - Steps: []resource.TestStep{ - { - Config: ` - resource scaleway_vpc_private_network main { - name = "pn_test_network" - } - - resource "scaleway_instance_server" "main" { - image = "ubuntu_focal" - type = "DEV1-S" - zone = "fr-par-1" - - private_network { - pn_id = scaleway_vpc_private_network.main.id - } - } - - resource scaleway_vpc_public_gateway_ip main { - } - - resource scaleway_vpc_public_gateway_dhcp main { - subnet = "192.168.1.0/24" - } - - resource scaleway_vpc_public_gateway main { - name = "foobar" - type = "VPC-GW-S" - ip_id = scaleway_vpc_public_gateway_ip.main.id - } - - resource scaleway_vpc_gateway_network main { - gateway_id = scaleway_vpc_public_gateway.main.id - private_network_id = scaleway_vpc_private_network.main.id - dhcp_id = scaleway_vpc_public_gateway_dhcp.main.id - cleanup_dhcp = true - enable_masquerade = true - depends_on = [scaleway_vpc_public_gateway_ip.main, scaleway_vpc_private_network.main] - } - - resource scaleway_vpc_public_gateway_dhcp_reservation main { - gateway_network_id = scaleway_vpc_gateway_network.main.id - mac_address = scaleway_instance_server.main.private_network.0.mac_address - ip_address = "192.168.1.1" - } - `, - Check: resource.ComposeTestCheckFunc( - testAccCheckVPCPublicGatewayDHCPReservationExists(tt, "scaleway_vpc_public_gateway_dhcp_reservation.main"), - resource.TestCheckResourceAttrPair("scaleway_vpc_public_gateway_dhcp_reservation.main", - "mac_address", "scaleway_instance_server.main", "private_network.0.mac_address"), - resource.TestCheckResourceAttrPair("scaleway_vpc_public_gateway_dhcp_reservation.main", "gateway_network_id", - "scaleway_vpc_gateway_network.main", "id"), - resource.TestCheckResourceAttr("scaleway_vpc_public_gateway_dhcp_reservation.main", "ip_address", "192.168.1.1"), - resource.TestCheckResourceAttrSet("scaleway_vpc_public_gateway_dhcp_reservation.main", "created_at"), - resource.TestCheckResourceAttrSet("scaleway_vpc_public_gateway_dhcp_reservation.main", "updated_at"), - resource.TestCheckResourceAttrSet("scaleway_vpc_public_gateway_dhcp_reservation.main", "type"), - ), - }, - { - Config: ` - resource scaleway_vpc_private_network main { - name = "pn_test_network" - } - - resource "scaleway_instance_server" "main" { - image = "ubuntu_focal" - type = "DEV1-S" - zone = "fr-par-1" - - private_network { - pn_id = scaleway_vpc_private_network.main.id - } - } - - resource scaleway_vpc_public_gateway_ip main { - } - - resource scaleway_vpc_public_gateway_dhcp main { - subnet = "192.168.1.0/24" - } - - resource scaleway_vpc_public_gateway main { - name = "foobar" - type = "VPC-GW-S" - ip_id = scaleway_vpc_public_gateway_ip.main.id - } - - resource scaleway_vpc_gateway_network main { - gateway_id = scaleway_vpc_public_gateway.main.id - private_network_id = scaleway_vpc_private_network.main.id - dhcp_id = scaleway_vpc_public_gateway_dhcp.main.id - cleanup_dhcp = true - enable_masquerade = true - depends_on = [scaleway_vpc_public_gateway_ip.main, scaleway_vpc_private_network.main] - } - - resource scaleway_vpc_public_gateway_dhcp_reservation main { - gateway_network_id = scaleway_vpc_gateway_network.main.id - mac_address = scaleway_instance_server.main.private_network.0.mac_address - ip_address = "192.168.1.2" - } - `, - Check: resource.ComposeTestCheckFunc( - testAccCheckVPCPublicGatewayDHCPReservationExists(tt, "scaleway_vpc_public_gateway_dhcp_reservation.main"), - resource.TestCheckResourceAttrPair("scaleway_vpc_public_gateway_dhcp_reservation.main", - "mac_address", "scaleway_instance_server.main", "private_network.0.mac_address"), - resource.TestCheckResourceAttrPair("scaleway_vpc_public_gateway_dhcp_reservation.main", "gateway_network_id", - "scaleway_vpc_gateway_network.main", "id"), - resource.TestCheckResourceAttr("scaleway_vpc_public_gateway_dhcp_reservation.main", "ip_address", "192.168.1.2"), - resource.TestCheckResourceAttrSet("scaleway_vpc_public_gateway_dhcp_reservation.main", "created_at"), - resource.TestCheckResourceAttrSet("scaleway_vpc_public_gateway_dhcp_reservation.main", "updated_at"), - resource.TestCheckResourceAttrSet("scaleway_vpc_public_gateway_dhcp_reservation.main", "type"), - ), - }, - }, - }) -} - -func testAccCheckVPCPublicGatewayDHCPReservationExists(tt *acctest.TestTools, n string) resource.TestCheckFunc { - return func(s *terraform.State) error { - rs, ok := s.RootModule().Resources[n] - if !ok { - return fmt.Errorf("resource not found: %s", n) - } - - api, zone, ID, err := vpcgw.NewAPIWithZoneAndID(tt.Meta, rs.Primary.ID) - if err != nil { - return err - } - - entry, err := api.GetDHCPEntry(&vpcgwSDK.GetDHCPEntryRequest{ - DHCPEntryID: ID, - Zone: zone, - }) - if err != nil { - return err - } - - logging.L.Debugf("reservation: ID: (%s) exist", entry.ID) - - return nil - } -} - -func testAccCheckVPCPublicGatewayDHCPEntryDestroy(tt *acctest.TestTools) resource.TestCheckFunc { - return func(state *terraform.State) error { - for _, rs := range state.RootModule().Resources { - if rs.Type != "scaleway_vpc_public_gateway_dhcp_reservation" { - continue - } - - api, zone, ID, err := vpcgw.NewAPIWithZoneAndID(tt.Meta, rs.Primary.ID) - if err != nil { - return err - } - - _, err = api.GetDHCPEntry(&vpcgwSDK.GetDHCPEntryRequest{ - DHCPEntryID: ID, - Zone: zone, - }) - - if err == nil { - return fmt.Errorf( - "VPC public gateway DHCP Entry config %s still exists", - rs.Primary.ID, - ) - } - - // Unexpected api error we return it - if !httperrors.Is404(err) { - return err - } - } - - return nil - } -} diff --git a/internal/services/vpcgw/dhcp_test.go b/internal/services/vpcgw/dhcp_test.go deleted file mode 100644 index 571a32daff..0000000000 --- a/internal/services/vpcgw/dhcp_test.go +++ /dev/null @@ -1,155 +0,0 @@ -package vpcgw_test - -import ( - "fmt" - "testing" - - "github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource" - "github.com/hashicorp/terraform-plugin-sdk/v2/terraform" - vpcgwSDK "github.com/scaleway/scaleway-sdk-go/api/vpcgw/v1" - "github.com/scaleway/terraform-provider-scaleway/v2/internal/acctest" - "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/vpcgw" - vpcgwchecks "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/vpcgw/testfuncs" -) - -func TestAccVPCPublicGatewayDHCP_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: vpcgwchecks.IsDHCPDestroyed(tt), - Steps: []resource.TestStep{ - { - Config: ` - resource scaleway_vpc_public_gateway_dhcp main { - subnet = "192.168.1.0/24" - } - `, - Check: resource.ComposeTestCheckFunc( - testAccCheckVPCPublicGatewayDHCPExists(tt, "scaleway_vpc_public_gateway_dhcp.main"), - resource.TestCheckResourceAttr("scaleway_vpc_public_gateway_dhcp.main", "subnet", "192.168.1.0/24"), - resource.TestCheckResourceAttr("scaleway_vpc_public_gateway_dhcp.main", "enable_dynamic", "true"), - resource.TestCheckResourceAttr("scaleway_vpc_public_gateway_dhcp.main", "valid_lifetime", "3600"), - resource.TestCheckResourceAttr("scaleway_vpc_public_gateway_dhcp.main", "renew_timer", "3000"), - resource.TestCheckResourceAttr("scaleway_vpc_public_gateway_dhcp.main", "rebind_timer", "3060"), - resource.TestCheckResourceAttr("scaleway_vpc_public_gateway_dhcp.main", "push_default_route", "true"), - resource.TestCheckResourceAttr("scaleway_vpc_public_gateway_dhcp.main", "push_dns_server", "true"), - resource.TestCheckResourceAttr("scaleway_vpc_public_gateway_dhcp.main", "dns_server_override.#", "0"), - resource.TestCheckResourceAttr("scaleway_vpc_public_gateway_dhcp.main", "dns_search.#", "0"), - resource.TestCheckResourceAttrSet("scaleway_vpc_public_gateway_dhcp.main", "dns_local_name"), - resource.TestCheckResourceAttrSet("scaleway_vpc_public_gateway_dhcp.main", "pool_low"), - resource.TestCheckResourceAttrSet("scaleway_vpc_public_gateway_dhcp.main", "pool_high"), - resource.TestCheckResourceAttrSet("scaleway_vpc_public_gateway_dhcp.main", "created_at"), - resource.TestCheckResourceAttrSet("scaleway_vpc_public_gateway_dhcp.main", "updated_at"), - resource.TestCheckResourceAttrSet("scaleway_vpc_public_gateway_dhcp.main", "zone"), - resource.TestCheckResourceAttrSet("scaleway_vpc_public_gateway_dhcp.main", "organization_id"), - ), - }, - { - Config: ` - resource scaleway_vpc_public_gateway_dhcp main { - subnet = "192.168.1.0/24" - valid_lifetime = 3000 - renew_timer = 2000 - rebind_timer = 2060 - push_default_route = false - push_dns_server = false - enable_dynamic = false - } - `, - Check: resource.ComposeTestCheckFunc( - testAccCheckVPCPublicGatewayDHCPExists(tt, "scaleway_vpc_public_gateway_dhcp.main"), - resource.TestCheckResourceAttr("scaleway_vpc_public_gateway_dhcp.main", "subnet", "192.168.1.0/24"), - resource.TestCheckResourceAttr("scaleway_vpc_public_gateway_dhcp.main", "push_default_route", "false"), - resource.TestCheckResourceAttr("scaleway_vpc_public_gateway_dhcp.main", "push_dns_server", "false"), - resource.TestCheckResourceAttr("scaleway_vpc_public_gateway_dhcp.main", "enable_dynamic", "false"), - resource.TestCheckResourceAttr("scaleway_vpc_public_gateway_dhcp.main", "valid_lifetime", "3000"), - resource.TestCheckResourceAttr("scaleway_vpc_public_gateway_dhcp.main", "renew_timer", "2000"), - resource.TestCheckResourceAttr("scaleway_vpc_public_gateway_dhcp.main", "rebind_timer", "2060"), - resource.TestCheckResourceAttr("scaleway_vpc_public_gateway_dhcp.main", "dns_server_override.#", "0"), - resource.TestCheckResourceAttr("scaleway_vpc_public_gateway_dhcp.main", "dns_search.#", "0"), - resource.TestCheckResourceAttrSet("scaleway_vpc_public_gateway_dhcp.main", "dns_local_name"), - resource.TestCheckResourceAttrSet("scaleway_vpc_public_gateway_dhcp.main", "pool_low"), - resource.TestCheckResourceAttrSet("scaleway_vpc_public_gateway_dhcp.main", "pool_high"), - resource.TestCheckResourceAttrSet("scaleway_vpc_public_gateway_dhcp.main", "created_at"), - resource.TestCheckResourceAttrSet("scaleway_vpc_public_gateway_dhcp.main", "updated_at"), - resource.TestCheckResourceAttrSet("scaleway_vpc_public_gateway_dhcp.main", "zone"), - resource.TestCheckResourceAttrSet("scaleway_vpc_public_gateway_dhcp.main", "organization_id"), - ), - }, - { - Config: ` - resource "scaleway_vpc_public_gateway_dhcp" main { - subnet = "192.168.1.0/24" - push_default_route = true - push_dns_server = true - enable_dynamic = true - dns_servers_override = ["192.168.1.2"] - } - `, - Check: resource.ComposeTestCheckFunc( - testAccCheckVPCPublicGatewayDHCPExists(tt, "scaleway_vpc_public_gateway_dhcp.main"), - resource.TestCheckResourceAttr("scaleway_vpc_public_gateway_dhcp.main", "subnet", "192.168.1.0/24"), - resource.TestCheckResourceAttr("scaleway_vpc_public_gateway_dhcp.main", "enable_dynamic", "true"), - resource.TestCheckResourceAttr("scaleway_vpc_public_gateway_dhcp.main", "valid_lifetime", "3000"), - resource.TestCheckResourceAttr("scaleway_vpc_public_gateway_dhcp.main", "renew_timer", "2000"), - resource.TestCheckResourceAttr("scaleway_vpc_public_gateway_dhcp.main", "rebind_timer", "2060"), - resource.TestCheckResourceAttr("scaleway_vpc_public_gateway_dhcp.main", "push_default_route", "true"), - resource.TestCheckResourceAttr("scaleway_vpc_public_gateway_dhcp.main", "push_dns_server", "true"), - resource.TestCheckResourceAttr("scaleway_vpc_public_gateway_dhcp.main", "dns_servers_override.#", "1"), - resource.TestCheckResourceAttr("scaleway_vpc_public_gateway_dhcp.main", "dns_servers_override.0", "192.168.1.2"), - resource.TestCheckResourceAttrSet("scaleway_vpc_public_gateway_dhcp.main", "dns_local_name"), - resource.TestCheckResourceAttrSet("scaleway_vpc_public_gateway_dhcp.main", "pool_low"), - resource.TestCheckResourceAttrSet("scaleway_vpc_public_gateway_dhcp.main", "pool_high"), - resource.TestCheckResourceAttrSet("scaleway_vpc_public_gateway_dhcp.main", "created_at"), - resource.TestCheckResourceAttrSet("scaleway_vpc_public_gateway_dhcp.main", "updated_at"), - resource.TestCheckResourceAttrSet("scaleway_vpc_public_gateway_dhcp.main", "zone"), - resource.TestCheckResourceAttrSet("scaleway_vpc_public_gateway_dhcp.main", "organization_id"), - ), - }, - { - Config: ` - resource "scaleway_vpc_public_gateway_dhcp" main { - subnet = "192.168.1.0/24" - push_default_route = true - push_dns_server = true - enable_dynamic = true - dns_servers_override = ["192.168.1.3"] - } - `, - Check: resource.ComposeTestCheckFunc( - testAccCheckVPCPublicGatewayDHCPExists(tt, "scaleway_vpc_public_gateway_dhcp.main"), - resource.TestCheckResourceAttr("scaleway_vpc_public_gateway_dhcp.main", "subnet", "192.168.1.0/24"), - resource.TestCheckResourceAttr("scaleway_vpc_public_gateway_dhcp.main", "dns_servers_override.#", "1"), - resource.TestCheckResourceAttr("scaleway_vpc_public_gateway_dhcp.main", "dns_servers_override.0", "192.168.1.3"), - ), - }, - }, - }) -} - -func testAccCheckVPCPublicGatewayDHCPExists(tt *acctest.TestTools, n string) resource.TestCheckFunc { - return func(s *terraform.State) error { - rs, ok := s.RootModule().Resources[n] - if !ok { - return fmt.Errorf("resource not found: %s", n) - } - - api, zone, ID, err := vpcgw.NewAPIWithZoneAndID(tt.Meta, rs.Primary.ID) - if err != nil { - return err - } - - _, err = api.GetDHCP(&vpcgwSDK.GetDHCPRequest{ - DHCPID: ID, - Zone: zone, - }) - if err != nil { - return err - } - - return nil - } -} diff --git a/internal/services/vpcgw/helpers.go b/internal/services/vpcgw/helpers.go index 4f1a338c90..18c5d88392 100644 --- a/internal/services/vpcgw/helpers.go +++ b/internal/services/vpcgw/helpers.go @@ -4,13 +4,17 @@ import ( "context" "time" + "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" "github.com/scaleway/scaleway-sdk-go/api/vpcgw/v1" + v2 "github.com/scaleway/scaleway-sdk-go/api/vpcgw/v2" "github.com/scaleway/scaleway-sdk-go/scw" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/httperrors" "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/meta" "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/instance" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/types" ) const ( @@ -31,6 +35,17 @@ func newAPIWithZone(d *schema.ResourceData, m interface{}) (*vpcgw.API, scw.Zone return api, zone, nil } +func newAPIWithZoneV2(d *schema.ResourceData, m interface{}) (*v2.API, scw.Zone, error) { + api := v2.NewAPI(meta.ExtractScwClient(m)) + + zone, err := meta.ExtractZone(d, m) + if err != nil { + return nil, "", err + } + + return api, zone, nil +} + func NewAPIWithZoneAndID(m interface{}, id string) (*vpcgw.API, scw.Zone, string, error) { api := vpcgw.NewAPI(meta.ExtractScwClient(m)) @@ -42,7 +57,18 @@ func NewAPIWithZoneAndID(m interface{}, id string) (*vpcgw.API, scw.Zone, string return api, zone, ID, nil } -func retryUpdateGatewayReverseDNS(ctx context.Context, api *vpcgw.API, req *vpcgw.UpdateIPRequest, timeout time.Duration) error { +func NewAPIWithZoneAndIDv2(m interface{}, id string) (*v2.API, scw.Zone, string, error) { + api := v2.NewAPI(meta.ExtractScwClient(m)) + + zone, ID, err := zonal.ParseID(id) + if err != nil { + return nil, "", "", err + } + + return api, zone, ID, nil +} + +func retryUpdateGatewayReverseDNS(ctx context.Context, api *v2.API, req *v2.UpdateIPRequest, timeout time.Duration) error { timeoutChannel := time.After(timeout) for { @@ -62,43 +88,43 @@ func retryUpdateGatewayReverseDNS(ctx context.Context, api *vpcgw.API, req *vpcg } } -func expandIpamConfig(raw interface{}) *vpcgw.CreateGatewayNetworkRequestIpamConfig { +func expandUpdateIpamConfig(raw interface{}) *vpcgw.UpdateGatewayNetworkRequestIpamConfig { if raw == nil || len(raw.([]interface{})) != 1 { return nil } rawMap := raw.([]interface{})[0].(map[string]interface{}) - ipamConfig := &vpcgw.CreateGatewayNetworkRequestIpamConfig{ - PushDefaultRoute: rawMap["push_default_route"].(bool), + updateIpamConfig := &vpcgw.UpdateGatewayNetworkRequestIpamConfig{ + PushDefaultRoute: scw.BoolPtr(rawMap["push_default_route"].(bool)), } if ipamIPID, ok := rawMap["ipam_ip_id"].(string); ok && ipamIPID != "" { - ipamConfig.IpamIPID = scw.StringPtr(regional.ExpandID(ipamIPID).ID) + updateIpamConfig.IpamIPID = scw.StringPtr(regional.ExpandID(ipamIPID).ID) } - return ipamConfig + return updateIpamConfig } -func expandUpdateIpamConfig(raw interface{}) *vpcgw.UpdateGatewayNetworkRequestIpamConfig { +func expandIpamConfigV2(raw interface{}) (bool, *string) { if raw == nil || len(raw.([]interface{})) != 1 { - return nil + return false, nil } rawMap := raw.([]interface{})[0].(map[string]interface{}) - updateIpamConfig := &vpcgw.UpdateGatewayNetworkRequestIpamConfig{ - PushDefaultRoute: scw.BoolPtr(rawMap["push_default_route"].(bool)), - } + pushDefaultRoute := rawMap["push_default_route"].(bool) - if ipamIPID, ok := rawMap["ipam_ip_id"].(string); ok && ipamIPID != "" { - updateIpamConfig.IpamIPID = scw.StringPtr(regional.ExpandID(ipamIPID).ID) + var ipamIPID *string + + if IPID, ok := rawMap["ipam_ip_id"].(string); ok && IPID != "" { + ipamIPID = scw.StringPtr(regional.ExpandID(IPID).ID) } - return updateIpamConfig + return pushDefaultRoute, ipamIPID } -func flattenIpamConfig(config *vpcgw.IpamConfig) interface{} { +func flattenIpamConfig(config *vpcgw.IpamConfig, region scw.Region) interface{} { if config == nil { return nil } @@ -106,7 +132,430 @@ func flattenIpamConfig(config *vpcgw.IpamConfig) interface{} { return []map[string]interface{}{ { "push_default_route": config.PushDefaultRoute, - "ipam_ip_id": config.IpamIPID, + "ipam_ip_id": regional.NewIDString(region, config.IpamIPID), + }, + } +} + +// FlattenIPNetList turns a slice of scw.IPNet into a slice of string CIDRs. +func FlattenIPNetList(ipNets []scw.IPNet) ([]string, error) { + res := make([]string, 0, len(ipNets)) + + for _, ipNet := range ipNets { + flattened, err := types.FlattenIPNet(ipNet) + if err != nil { + return nil, err + } + + res = append(res, flattened) + } + + return res, nil +} + +// readVPCGWResourceDataV1 sets the resource data using a v1 gateway +func readVPCGWResourceDataV1(d *schema.ResourceData, gw *vpcgw.Gateway) diag.Diagnostics { + _ = d.Set("name", gw.Name) + _ = d.Set("status", string(gw.Status)) + _ = d.Set("organization_id", gw.OrganizationID) + _ = d.Set("project_id", gw.ProjectID) + _ = d.Set("zone", gw.Zone) + _ = d.Set("tags", gw.Tags) + _ = d.Set("upstream_dns_servers", gw.UpstreamDNSServers) + _ = d.Set("bastion_enabled", gw.BastionEnabled) + _ = d.Set("bastion_port", int(gw.BastionPort)) + _ = d.Set("enable_smtp", gw.SMTPEnabled) + + if gw.Type != nil { + _ = d.Set("type", gw.Type.Name) + } + + if gw.IP != nil { + _ = d.Set("ip_id", zonal.NewID(gw.IP.Zone, gw.IP.ID).String()) + } + + if gw.CreatedAt != nil { + _ = d.Set("created_at", gw.CreatedAt.Format(time.RFC3339)) + } + + if gw.UpdatedAt != nil { + _ = d.Set("updated_at", gw.UpdatedAt.Format(time.RFC3339)) + } + + return nil +} + +// readVPCGWResourceDataV2 sets the resource data using a v2 gateway +func readVPCGWResourceDataV2(d *schema.ResourceData, gw *v2.Gateway) diag.Diagnostics { + _ = d.Set("name", gw.Name) + _ = d.Set("type", gw.Type) + _ = d.Set("status", gw.Status.String()) + _ = d.Set("organization_id", gw.OrganizationID) + _ = d.Set("project_id", gw.ProjectID) + _ = d.Set("zone", gw.Zone) + _ = d.Set("tags", gw.Tags) + _ = d.Set("bastion_enabled", gw.BastionEnabled) + _ = d.Set("bastion_port", int(gw.BastionPort)) + _ = d.Set("enable_smtp", gw.SMTPEnabled) + _ = d.Set("bandwidth", int(gw.Bandwidth)) + _ = d.Set("upstream_dns_servers", nil) + + ips, err := FlattenIPNetList(gw.BastionAllowedIPs) + if err != nil { + return diag.FromErr(err) + } + + _ = d.Set("allowed_ip_ranges", ips) + + if gw.IPv4 != nil { + _ = d.Set("ip_id", zonal.NewID(gw.IPv4.Zone, gw.IPv4.ID).String()) + } + + if gw.CreatedAt != nil { + _ = d.Set("created_at", gw.CreatedAt.Format(time.RFC3339)) + } + + if gw.UpdatedAt != nil { + _ = d.Set("updated_at", gw.UpdatedAt.Format(time.RFC3339)) + } + + return nil +} + +// readVPCGWNetworkResourceDataV1 sets the resource data using a v1 gateway network +func readVPCGWNetworkResourceDataV1(d *schema.ResourceData, gatewayNetwork *vpcgw.GatewayNetwork) diag.Diagnostics { + fetchRegion, err := gatewayNetwork.Zone.Region() + if err != nil { + return diag.FromErr(err) + } + + _ = d.Set("private_network_id", regional.NewIDString(fetchRegion, gatewayNetwork.PrivateNetworkID)) + _ = d.Set("gateway_id", zonal.NewIDString(gatewayNetwork.Zone, gatewayNetwork.GatewayID)) + _ = d.Set("enable_masquerade", gatewayNetwork.EnableMasquerade) + _ = d.Set("status", string(gatewayNetwork.Status)) + _ = d.Set("zone", gatewayNetwork.Zone) + + if macAddress := gatewayNetwork.MacAddress; macAddress != nil { + _ = d.Set("mac_address", types.FlattenStringPtr(macAddress).(string)) + } + + if gatewayNetwork.CreatedAt != nil { + _ = d.Set("created_at", gatewayNetwork.CreatedAt.Format(time.RFC3339)) + } + + if gatewayNetwork.UpdatedAt != nil { + _ = d.Set("updated_at", gatewayNetwork.UpdatedAt.Format(time.RFC3339)) + } + + var cleanUpDHCPValue bool + + cleanUpDHCP, cleanUpDHCPExist := d.GetOk("cleanup_dhcp") + + if cleanUpDHCPExist { + cleanUpDHCPValue = *types.ExpandBoolPtr(cleanUpDHCP) + } + + _ = d.Set("cleanup_dhcp", cleanUpDHCPValue) + + if ipamConfig := gatewayNetwork.IpamConfig; ipamConfig != nil { + _ = d.Set("ipam_config", flattenIpamConfig(ipamConfig, fetchRegion)) + } + + return nil +} + +// readVPCGWNetworkResourceDataV2 sets the resource data using a v1 gateway network +func readVPCGWNetworkResourceDataV2(d *schema.ResourceData, gatewayNetwork *v2.GatewayNetwork) diag.Diagnostics { + fetchRegion, err := gatewayNetwork.Zone.Region() + if err != nil { + return diag.FromErr(err) + } + + _ = d.Set("private_network_id", regional.NewIDString(fetchRegion, gatewayNetwork.PrivateNetworkID)) + _ = d.Set("gateway_id", zonal.NewIDString(gatewayNetwork.Zone, gatewayNetwork.GatewayID)) + _ = d.Set("enable_masquerade", gatewayNetwork.MasqueradeEnabled) + _ = d.Set("status", string(gatewayNetwork.Status)) + _ = d.Set("zone", gatewayNetwork.Zone) + + if macAddress := gatewayNetwork.MacAddress; macAddress != nil { + _ = d.Set("mac_address", types.FlattenStringPtr(macAddress).(string)) + } + + if gatewayNetwork.CreatedAt != nil { + _ = d.Set("created_at", gatewayNetwork.CreatedAt.Format(time.RFC3339)) + } + + if gatewayNetwork.UpdatedAt != nil { + _ = d.Set("updated_at", gatewayNetwork.UpdatedAt.Format(time.RFC3339)) + } + + ipamConfig := []map[string]interface{}{ + { + "push_default_route": gatewayNetwork.PushDefaultRoute, + "ipam_ip_id": gatewayNetwork.IpamIPID, }, } + + _ = d.Set("ipam_config", ipamConfig) + + return nil +} + +// updateGatewayV1 performs the update of the public gateway using the v1 API +func updateGatewayV1(ctx context.Context, d *schema.ResourceData, apiV1 *vpcgw.API, zone scw.Zone, id string) error { + v1UpdateRequest := &vpcgw.UpdateGatewayRequest{ + GatewayID: id, + Zone: zone, + } + + if d.HasChange("name") { + v1UpdateRequest.Name = scw.StringPtr(d.Get("name").(string)) + } + + if d.HasChange("tags") { + v1UpdateRequest.Tags = types.ExpandUpdatedStringsPtr(d.Get("tags")) + } + + if d.HasChange("bastion_port") { + v1UpdateRequest.BastionPort = scw.Uint32Ptr(uint32(d.Get("bastion_port").(int))) + } + + if d.HasChange("bastion_enabled") { + v1UpdateRequest.EnableBastion = scw.BoolPtr(d.Get("bastion_enabled").(bool)) + } + + if d.HasChange("enable_smtp") { + v1UpdateRequest.EnableSMTP = scw.BoolPtr(d.Get("enable_smtp").(bool)) + } + + if _, err := apiV1.UpdateGateway(v1UpdateRequest, scw.WithContext(ctx)); err != nil { + return err + } + + _, err := waitForVPCPublicGateway(ctx, apiV1, zone, id, d.Timeout(schema.TimeoutCreate)) + if err != nil { + return err + } + + if d.HasChange("refresh_ssh_keys") { + if _, err := apiV1.RefreshSSHKeys(&vpcgw.RefreshSSHKeysRequest{ + Zone: zone, + GatewayID: id, + }, scw.WithContext(ctx)); err != nil { + return err + } + } + + _, err = waitForVPCPublicGateway(ctx, apiV1, zone, id, d.Timeout(schema.TimeoutCreate)) + if err != nil { + return err + } + + if d.HasChange("type") { + if _, err := apiV1.UpgradeGateway(&vpcgw.UpgradeGatewayRequest{ + Zone: zone, + GatewayID: id, + Type: types.ExpandUpdatedStringPtr(d.Get("type")), + }, scw.WithContext(ctx)); err != nil { + return err + } + } + + _, err = waitForVPCPublicGateway(ctx, apiV1, zone, id, d.Timeout(schema.TimeoutCreate)) + if err != nil { + return err + } + + return nil +} + +// updateGatewayV2 performs the update of the public gateway using the v2 API +func updateGatewayV2(ctx context.Context, d *schema.ResourceData, api *v2.API, zone scw.Zone, id string) error { + updateRequest := &v2.UpdateGatewayRequest{ + GatewayID: id, + Zone: zone, + } + + if d.HasChange("name") { + updateRequest.Name = scw.StringPtr(d.Get("name").(string)) + } + + if d.HasChange("tags") { + updateRequest.Tags = types.ExpandUpdatedStringsPtr(d.Get("tags")) + } + + if d.HasChange("bastion_port") { + updateRequest.BastionPort = scw.Uint32Ptr(uint32(d.Get("bastion_port").(int))) + } + + if d.HasChange("bastion_enabled") { + updateRequest.EnableBastion = scw.BoolPtr(d.Get("bastion_enabled").(bool)) + } + + if d.HasChange("enable_smtp") { + updateRequest.EnableSMTP = scw.BoolPtr(d.Get("enable_smtp").(bool)) + } + + if _, err := api.UpdateGateway(updateRequest, scw.WithContext(ctx)); err != nil { + return err + } + + _, err := waitForVPCPublicGatewayV2(ctx, api, zone, id, d.Timeout(schema.TimeoutCreate)) + if err != nil { + return err + } + + if d.HasChange("refresh_ssh_keys") { + if _, err := api.RefreshSSHKeys(&v2.RefreshSSHKeysRequest{ + Zone: zone, + GatewayID: id, + }, scw.WithContext(ctx)); err != nil { + return err + } + } + + _, err = waitForVPCPublicGatewayV2(ctx, api, zone, id, d.Timeout(schema.TimeoutCreate)) + if err != nil { + return err + } + + if d.HasChange("type") { + if _, err := api.UpgradeGateway(&v2.UpgradeGatewayRequest{ + Zone: zone, + GatewayID: id, + Type: types.ExpandUpdatedStringPtr(d.Get("type")), + }, scw.WithContext(ctx)); err != nil { + return err + } + } + + _, err = waitForVPCPublicGatewayV2(ctx, api, zone, id, d.Timeout(schema.TimeoutCreate)) + if err != nil { + return err + } + + if d.HasChange("allowed_ip_ranges") { + listIPs := d.Get("allowed_ip_ranges").(*schema.Set).List() + + _, err := api.SetBastionAllowedIPs(&v2.SetBastionAllowedIPsRequest{ + GatewayID: id, + Zone: zone, + IPRanges: types.ExpandStrings(listIPs), + }, scw.WithContext(ctx)) + if err != nil { + return err + } + } + + _, err = waitForVPCPublicGatewayV2(ctx, api, zone, id, d.Timeout(schema.TimeoutCreate)) + if err != nil { + return err + } + + return nil +} + +// updateGateway wraps the update process, trying the v2 API first and falling back to v1 on a 412 error +func updateGateway(ctx context.Context, d *schema.ResourceData, api *v2.API, apiV1 *vpcgw.API, zone scw.Zone, id string) error { + err := updateGatewayV2(ctx, d, api, zone, id) + if err != nil { + if httperrors.Is412(err) { + return updateGatewayV1(ctx, d, apiV1, zone, id) + } + + return err + } + + return nil +} + +// updateGWNetworkV2 performs the update of the gateway network using the v2 API +func updateGWNetworkV2(ctx context.Context, d *schema.ResourceData, api *v2.API, zone scw.Zone, id string) error { + updateRequest := &v2.UpdateGatewayNetworkRequest{ + GatewayNetworkID: id, + Zone: zone, + } + + if d.HasChange("enable_masquerade") { + updateRequest.EnableMasquerade = types.ExpandBoolPtr(d.Get("enable_masquerade")) + } + + if d.HasChange("ipam_config") { + pushDefaultRoute, ipamIPID := expandIpamConfigV2(d.Get("ipam_config")) + + updateRequest.PushDefaultRoute = scw.BoolPtr(pushDefaultRoute) + updateRequest.IpamIPID = ipamIPID + } + + if _, err := api.UpdateGatewayNetwork(updateRequest, scw.WithContext(ctx)); err != nil { + return err + } + + _, err := waitForVPCGatewayNetworkV2(ctx, api, zone, id, d.Timeout(schema.TimeoutUpdate)) + if err != nil { + return err + } + + return nil +} + +// updateGWNetworkV1 performs the update of the gateway network using the v1 API +func updateGWNetworkV1(ctx context.Context, d *schema.ResourceData, apiV1 *vpcgw.API, zone scw.Zone, id string) error { + v1UpdateRequest := &vpcgw.UpdateGatewayNetworkRequest{ + GatewayNetworkID: id, + Zone: zone, + } + + if d.HasChange("enable_masquerade") { + v1UpdateRequest.EnableMasquerade = types.ExpandBoolPtr(d.Get("enable_masquerade")) + } + + if d.HasChange("enable_dhcp") { + v1UpdateRequest.EnableDHCP = types.ExpandBoolPtr(d.Get("enable_dhcp")) + } + + if d.HasChange("dhcp_id") { + dhcpID := zonal.ExpandID(d.Get("dhcp_id").(string)).ID + v1UpdateRequest.DHCPID = &dhcpID + } + + if d.HasChange("ipam_config") { + v1UpdateRequest.IpamConfig = expandUpdateIpamConfig(d.Get("ipam_config")) + } + + if d.HasChange("static_address") { + if staticAddress, ok := d.GetOk("static_address"); ok { + address, err := types.ExpandIPNet(staticAddress.(string)) + if err != nil { + return err + } + + v1UpdateRequest.Address = &address + } + } + + if _, err := apiV1.UpdateGatewayNetwork(v1UpdateRequest, scw.WithContext(ctx)); err != nil { + return err + } + + _, err := waitForVPCGatewayNetwork(ctx, apiV1, zone, id, d.Timeout(schema.TimeoutCreate)) + if err != nil { + return err + } + + return nil +} + +// updateGWNetwork wraps the update process: try v2 update first, then fallback to v1 update on a 412 error +func updateGWNetwork(ctx context.Context, d *schema.ResourceData, api *v2.API, apiV1 *vpcgw.API, zone scw.Zone, id string) error { + err := updateGWNetworkV2(ctx, d, api, zone, id) + if err != nil { + if httperrors.Is412(err) { + return updateGWNetworkV1(ctx, d, apiV1, zone, id) + } + + return err + } + + return nil } diff --git a/internal/services/vpcgw/ip.go b/internal/services/vpcgw/ip.go index 55994291ce..8e7513b07b 100644 --- a/internal/services/vpcgw/ip.go +++ b/internal/services/vpcgw/ip.go @@ -6,7 +6,7 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "github.com/scaleway/scaleway-sdk-go/api/vpcgw/v1" + "github.com/scaleway/scaleway-sdk-go/api/vpcgw/v2" "github.com/scaleway/scaleway-sdk-go/scw" "github.com/scaleway/terraform-provider-scaleway/v2/internal/httperrors" "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality/zonal" @@ -63,7 +63,7 @@ func ResourceIP() *schema.Resource { } func ResourceIPCreate(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { - api, zone, err := newAPIWithZone(d, m) + api, zone, err := newAPIWithZoneV2(d, m) if err != nil { return diag.FromErr(err) } @@ -100,7 +100,7 @@ func ResourceIPCreate(ctx context.Context, d *schema.ResourceData, m interface{} } func ResourceIPRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { - api, zone, ID, err := NewAPIWithZoneAndID(m, d.Id()) + api, zone, ID, err := NewAPIWithZoneAndIDv2(m, d.Id()) if err != nil { return diag.FromErr(err) } @@ -132,7 +132,7 @@ func ResourceIPRead(ctx context.Context, d *schema.ResourceData, m interface{}) } func ResourceVPCPublicGatewayIPUpdate(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { - api, zone, ID, err := NewAPIWithZoneAndID(m, d.Id()) + api, zone, ID, err := NewAPIWithZoneAndIDv2(m, d.Id()) if err != nil { return diag.FromErr(err) } @@ -165,7 +165,7 @@ func ResourceVPCPublicGatewayIPUpdate(ctx context.Context, d *schema.ResourceDat } func ResourceVPCPublicGatewayIPDelete(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { - api, zone, ID, err := NewAPIWithZoneAndID(m, d.Id()) + api, zone, ID, err := NewAPIWithZoneAndIDv2(m, d.Id()) if err != nil { return diag.FromErr(err) } diff --git a/internal/services/vpcgw/ip_reverse.go b/internal/services/vpcgw/ip_reverse.go index 86c81e5d02..f9a857e738 100644 --- a/internal/services/vpcgw/ip_reverse.go +++ b/internal/services/vpcgw/ip_reverse.go @@ -7,7 +7,7 @@ import ( "github.com/hashicorp/terraform-plugin-log/tflog" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "github.com/scaleway/scaleway-sdk-go/api/vpcgw/v1" + "github.com/scaleway/scaleway-sdk-go/api/vpcgw/v2" "github.com/scaleway/scaleway-sdk-go/scw" "github.com/scaleway/terraform-provider-scaleway/v2/internal/httperrors" "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality" @@ -47,7 +47,7 @@ func ResourceIPReverseDNS() *schema.Resource { } func ResourceVPCPublicGatewayIPReverseDNSCreate(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { - api, zone, err := newAPIWithZone(d, m) + api, zone, err := newAPIWithZoneV2(d, m) if err != nil { return diag.FromErr(err) } @@ -85,7 +85,7 @@ func ResourceVPCPublicGatewayIPReverseDNSCreate(ctx context.Context, d *schema.R } func ResourceVPCPublicGatewayIPReverseDNSRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { - api, zone, ID, err := NewAPIWithZoneAndID(m, d.Id()) + api, zone, ID, err := NewAPIWithZoneAndIDv2(m, d.Id()) if err != nil { return diag.FromErr(err) } @@ -111,7 +111,7 @@ func ResourceVPCPublicGatewayIPReverseDNSRead(ctx context.Context, d *schema.Res } func ResourceVPCPublicGatewayIPReverseDNSUpdate(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { - api, zone, ID, err := NewAPIWithZoneAndID(m, d.Id()) + api, zone, ID, err := NewAPIWithZoneAndIDv2(m, d.Id()) if err != nil { return diag.FromErr(err) } @@ -139,7 +139,7 @@ func ResourceVPCPublicGatewayIPReverseDNSUpdate(ctx context.Context, d *schema.R } func ResourceVPCPublicGatewayIPReverseDNSDelete(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { - api, zone, ID, err := NewAPIWithZoneAndID(m, d.Id()) + api, zone, ID, err := NewAPIWithZoneAndIDv2(m, d.Id()) if err != nil { return diag.FromErr(err) } diff --git a/internal/services/vpcgw/ip_reverse_test.go b/internal/services/vpcgw/ip_reverse_test.go index 1b99879a17..43bfda6016 100644 --- a/internal/services/vpcgw/ip_reverse_test.go +++ b/internal/services/vpcgw/ip_reverse_test.go @@ -6,7 +6,7 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource" "github.com/hashicorp/terraform-plugin-sdk/v2/terraform" - vpcgwSDK "github.com/scaleway/scaleway-sdk-go/api/vpcgw/v1" + vpcgwSDK "github.com/scaleway/scaleway-sdk-go/api/vpcgw/v2" "github.com/scaleway/terraform-provider-scaleway/v2/internal/acctest" "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/domain" instancechecks "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/instance/testfuncs" @@ -63,7 +63,7 @@ func testAccCheckVPCPublicGatewayIPDefaultReverse(tt *acctest.TestTools, n strin return fmt.Errorf("resource not found: %s", n) } - api, zone, ID, err := vpcgw.NewAPIWithZoneAndID(tt.Meta, rs.Primary.ID) + api, zone, ID, err := vpcgw.NewAPIWithZoneAndIDv2(tt.Meta, rs.Primary.ID) if err != nil { return err } diff --git a/internal/services/vpcgw/ip_test.go b/internal/services/vpcgw/ip_test.go index 9fe89d0f12..8afc5c4c53 100644 --- a/internal/services/vpcgw/ip_test.go +++ b/internal/services/vpcgw/ip_test.go @@ -6,7 +6,7 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource" "github.com/hashicorp/terraform-plugin-sdk/v2/terraform" - vpcgwSDK "github.com/scaleway/scaleway-sdk-go/api/vpcgw/v1" + vpcgwSDK "github.com/scaleway/scaleway-sdk-go/api/vpcgw/v2" "github.com/scaleway/terraform-provider-scaleway/v2/internal/acctest" "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/vpcgw" vpcgwchecks "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/vpcgw/testfuncs" @@ -104,7 +104,7 @@ func testAccCheckVPCPublicGatewayIPExists(tt *acctest.TestTools, n string) resou return fmt.Errorf("resource not found: %s", n) } - api, zone, ID, err := vpcgw.NewAPIWithZoneAndID(tt.Meta, rs.Primary.ID) + api, zone, ID, err := vpcgw.NewAPIWithZoneAndIDv2(tt.Meta, rs.Primary.ID) if err != nil { return err } diff --git a/internal/services/vpcgw/network.go b/internal/services/vpcgw/network.go index 5c0e6c774a..b46358b844 100644 --- a/internal/services/vpcgw/network.go +++ b/internal/services/vpcgw/network.go @@ -2,13 +2,12 @@ package vpcgw import ( "context" - "time" "github.com/hashicorp/terraform-plugin-log/tflog" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/validation" - "github.com/scaleway/scaleway-sdk-go/api/vpcgw/v1" + "github.com/scaleway/scaleway-sdk-go/api/vpcgw/v2" "github.com/scaleway/scaleway-sdk-go/scw" "github.com/scaleway/terraform-provider-scaleway/v2/internal/cdf" "github.com/scaleway/terraform-provider-scaleway/v2/internal/dsf" @@ -59,6 +58,14 @@ func ResourceNetwork() *schema.Resource { ValidateDiagFunc: verify.IsUUIDorUUIDWithLocality(), Description: "The ID of the public gateway DHCP config", ConflictsWith: []string{"static_address", "ipam_config"}, + DiffSuppressFunc: func(_, oldValue, newValue string, d *schema.ResourceData) bool { + if v, ok := d.Get("ipam_config").([]interface{}); ok && len(v) > 0 { + return true + } + + return oldValue == newValue + }, + Deprecated: "Please use ipam_config. For more information, please refer to the dedicated guide: https://github.com/scaleway/terraform-provider-scaleway/blob/master/docs/guides/migration_guide_vpcgw_v2.md", }, "enable_masquerade": { Type: schema.TypeBool, @@ -69,14 +76,15 @@ func ResourceNetwork() *schema.Resource { "enable_dhcp": { Type: schema.TypeBool, Optional: true, - Default: true, Description: "Enable DHCP config on this network", + Deprecated: "Please use ipam_config. For more information, please refer to the dedicated guide: https://github.com/scaleway/terraform-provider-scaleway/blob/master/docs/guides/migration_guide_vpcgw_v2.md", }, "cleanup_dhcp": { Type: schema.TypeBool, Optional: true, - Default: false, + Computed: true, Description: "Remove DHCP config on this network on destroy", + Deprecated: "Please use ipam_config. For more information, please refer to the dedicated guide: https://github.com/scaleway/terraform-provider-scaleway/blob/master/docs/guides/migration_guide_vpcgw_v2.md", }, "static_address": { Type: schema.TypeString, @@ -85,6 +93,7 @@ func ResourceNetwork() *schema.Resource { Computed: true, ValidateFunc: validation.IsCIDR, ConflictsWith: []string{"dhcp_id", "ipam_config"}, + Deprecated: "Please use ipam_config. For more information, please refer to the dedicated guide: https://github.com/scaleway/terraform-provider-scaleway/blob/master/docs/guides/migration_guide_vpcgw_v2.md", }, "ipam_config": { Type: schema.TypeList, @@ -138,41 +147,27 @@ func ResourceNetwork() *schema.Resource { } func ResourceVPCGatewayNetworkCreate(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { - api, zone, err := newAPIWithZone(d, m) + api, zone, err := newAPIWithZoneV2(d, m) if err != nil { return diag.FromErr(err) } gatewayID := zonal.ExpandID(d.Get("gateway_id").(string)).ID - gateway, err := waitForVPCPublicGateway(ctx, api, zone, gatewayID, d.Timeout(schema.TimeoutCreate)) + gateway, err := waitForVPCPublicGatewayV2(ctx, api, zone, gatewayID, d.Timeout(schema.TimeoutCreate)) if err != nil { return diag.FromErr(err) } + pushDefaultRoute, ipamIPID := expandIpamConfigV2(d.Get("ipam_config")) + req := &vpcgw.CreateGatewayNetworkRequest{ Zone: zone, GatewayID: gateway.ID, PrivateNetworkID: regional.ExpandID(d.Get("private_network_id").(string)).ID, EnableMasquerade: *types.ExpandBoolPtr(d.Get("enable_masquerade")), - EnableDHCP: types.ExpandBoolPtr(d.Get("enable_dhcp")), - IpamConfig: expandIpamConfig(d.Get("ipam_config")), - } - - staticAddress, staticAddressExist := d.GetOk("static_address") - if staticAddressExist { - address, err := types.ExpandIPNet(staticAddress.(string)) - if err != nil { - return diag.FromErr(err) - } - - req.Address = &address - } - - dhcpID, dhcpExist := d.GetOk("dhcp_id") - if dhcpExist { - dhcpZoned := zonal.ExpandID(dhcpID.(string)) - req.DHCPID = &dhcpZoned.ID + PushDefaultRoute: pushDefaultRoute, + IpamIPID: ipamIPID, } gatewayNetwork, err := transport.RetryOnTransientStateError(func() (*vpcgw.GatewayNetwork, error) { @@ -180,7 +175,7 @@ func ResourceVPCGatewayNetworkCreate(ctx context.Context, d *schema.ResourceData }, func() (*vpcgw.Gateway, error) { tflog.Warn(ctx, "Public gateway is in transient state after waiting, retrying...") - return waitForVPCPublicGateway(ctx, api, zone, gatewayID, d.Timeout(schema.TimeoutCreate)) + return waitForVPCPublicGatewayV2(ctx, api, zone, gatewayID, d.Timeout(schema.TimeoutCreate)) }) if err != nil { return diag.FromErr(err) @@ -188,12 +183,12 @@ func ResourceVPCGatewayNetworkCreate(ctx context.Context, d *schema.ResourceData d.SetId(zonal.NewIDString(zone, gatewayNetwork.ID)) - _, err = waitForVPCPublicGateway(ctx, api, zone, gatewayNetwork.GatewayID, d.Timeout(schema.TimeoutCreate)) + _, err = waitForVPCPublicGatewayV2(ctx, api, zone, gatewayNetwork.GatewayID, d.Timeout(schema.TimeoutCreate)) if err != nil { return diag.FromErr(err) } - _, err = waitForVPCGatewayNetwork(ctx, api, zone, gatewayNetwork.ID, d.Timeout(schema.TimeoutCreate)) + _, err = waitForVPCGatewayNetworkV2(ctx, api, zone, gatewayNetwork.ID, d.Timeout(schema.TimeoutCreate)) if err != nil { return diag.FromErr(err) } @@ -202,133 +197,80 @@ func ResourceVPCGatewayNetworkCreate(ctx context.Context, d *schema.ResourceData } func ResourceVPCGatewayNetworkRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { - api, zone, ID, err := NewAPIWithZoneAndID(m, d.Id()) + api, zone, ID, err := NewAPIWithZoneAndIDv2(m, d.Id()) if err != nil { return diag.FromErr(err) } - gatewayNetwork, err := waitForVPCGatewayNetwork(ctx, api, zone, ID, d.Timeout(schema.TimeoutRead)) + apiV1, _, _, err := NewAPIWithZoneAndID(m, d.Id()) if err != nil { - if httperrors.Is404(err) { - d.SetId("") - - return nil - } - return diag.FromErr(err) } - _, err = waitForVPCPublicGateway(ctx, api, zone, gatewayNetwork.GatewayID, d.Timeout(schema.TimeoutRead)) + gatewayNetwork, err := waitForVPCGatewayNetworkV2(ctx, api, zone, ID, d.Timeout(schema.TimeoutRead)) if err != nil { - return diag.FromErr(err) - } - - if dhcp := gatewayNetwork.DHCP; dhcp != nil { - _ = d.Set("dhcp_id", zonal.NewID(zone, dhcp.ID).String()) - } + if httperrors.Is412(err) { + // Fallback to v1 API. + tflog.Warn(ctx, "v2 API returned 412, falling back to v1 API to wait for gateway network stabilization") - if staticAddress := gatewayNetwork.Address; staticAddress != nil { - staticAddressValue, err := types.FlattenIPNet(*staticAddress) - if err != nil { - return diag.FromErr(err) - } - - _ = d.Set("static_address", staticAddressValue) - } - - if macAddress := gatewayNetwork.MacAddress; macAddress != nil { - _ = d.Set("mac_address", types.FlattenStringPtr(macAddress).(string)) - } - - if enableDHCP := gatewayNetwork.EnableDHCP; enableDHCP { - _ = d.Set("enable_dhcp", enableDHCP) - } - - if ipamConfig := gatewayNetwork.IpamConfig; ipamConfig != nil { - _ = d.Set("ipam_config", flattenIpamConfig(ipamConfig)) - } - - var cleanUpDHCPValue bool + gatewayV1, err := waitForVPCGatewayNetwork(ctx, apiV1, zone, ID, d.Timeout(schema.TimeoutRead)) + if err != nil { + return diag.FromErr(err) + } - cleanUpDHCP, cleanUpDHCPExist := d.GetOk("cleanup_dhcp") - if cleanUpDHCPExist { - cleanUpDHCPValue = *types.ExpandBoolPtr(cleanUpDHCP) - } + return readVPCGWNetworkResourceDataV1(d, gatewayV1) + } else if httperrors.Is404(err) { + d.SetId("") - gatewayNetwork, err = waitForVPCGatewayNetwork(ctx, api, zone, gatewayNetwork.ID, d.Timeout(schema.TimeoutRead)) - if err != nil { - return diag.FromErr(err) - } + return nil + } - fetchRegion, err := zone.Region() - if err != nil { return diag.FromErr(err) } - _ = d.Set("gateway_id", zonal.NewID(zone, gatewayNetwork.GatewayID).String()) - _ = d.Set("private_network_id", regional.NewIDString(fetchRegion, gatewayNetwork.PrivateNetworkID)) - _ = d.Set("enable_masquerade", gatewayNetwork.EnableMasquerade) - _ = d.Set("cleanup_dhcp", cleanUpDHCPValue) - _ = d.Set("created_at", gatewayNetwork.CreatedAt.Format(time.RFC3339)) - _ = d.Set("updated_at", gatewayNetwork.UpdatedAt.Format(time.RFC3339)) - _ = d.Set("zone", zone.String()) - _ = d.Set("status", gatewayNetwork.Status.String()) - - return nil + return readVPCGWNetworkResourceDataV2(d, gatewayNetwork) } func ResourceVPCGatewayNetworkUpdate(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { - api, zone, ID, err := NewAPIWithZoneAndID(m, d.Id()) + api, zone, id, err := NewAPIWithZoneAndIDv2(m, d.Id()) if err != nil { return diag.FromErr(err) } - _, err = waitForVPCGatewayNetwork(ctx, api, zone, ID, d.Timeout(schema.TimeoutUpdate)) + apiV1, _, _, err := NewAPIWithZoneAndID(m, d.Id()) if err != nil { return diag.FromErr(err) } - updateRequest := &vpcgw.UpdateGatewayNetworkRequest{ - GatewayNetworkID: ID, - Zone: zone, - } + _, err = waitForVPCGatewayNetworkV2(ctx, api, zone, id, d.Timeout(schema.TimeoutUpdate)) + if err != nil { + if httperrors.Is412(err) { + tflog.Warn(ctx, "v2 API returned 412, falling back to v1 API to wait for gateway network stabilization") - if d.HasChange("enable_masquerade") { - updateRequest.EnableMasquerade = types.ExpandBoolPtr(d.Get("enable_masquerade")) - } + _, err = waitForVPCGatewayNetwork(ctx, apiV1, zone, id, d.Timeout(schema.TimeoutCreate)) + if err != nil { + return diag.FromErr(err) + } + } - if d.HasChange("enable_dhcp") { - updateRequest.EnableDHCP = types.ExpandBoolPtr(d.Get("enable_dhcp")) + return diag.FromErr(err) } - if d.HasChange("dhcp_id") { - dhcpID := zonal.ExpandID(d.Get("dhcp_id").(string)).ID - updateRequest.DHCPID = &dhcpID + if err = updateGWNetwork(ctx, d, api, apiV1, zone, id); err != nil { + return diag.FromErr(err) } - if d.HasChange("ipam_config") { - updateRequest.IpamConfig = expandUpdateIpamConfig(d.Get("ipam_config")) - } + _, err = waitForVPCGatewayNetworkV2(ctx, api, zone, id, d.Timeout(schema.TimeoutUpdate)) + if err != nil { + if httperrors.Is412(err) { + tflog.Warn(ctx, "v2 API returned 412, falling back to v1 API to wait for gateway network stabilization") - if d.HasChange("static_address") { - staticAddress, staticAddressExist := d.GetOk("static_address") - if staticAddressExist { - address, err := types.ExpandIPNet(staticAddress.(string)) + _, err = waitForVPCGatewayNetwork(ctx, apiV1, zone, id, d.Timeout(schema.TimeoutCreate)) if err != nil { return diag.FromErr(err) } - - updateRequest.Address = &address } - } - _, err = api.UpdateGatewayNetwork(updateRequest, scw.WithContext(ctx)) - if err != nil { - return diag.FromErr(err) - } - - _, err = waitForVPCGatewayNetwork(ctx, api, zone, ID, d.Timeout(schema.TimeoutUpdate)) - if err != nil { return diag.FromErr(err) } @@ -336,34 +278,71 @@ func ResourceVPCGatewayNetworkUpdate(ctx context.Context, d *schema.ResourceData } func ResourceVPCGatewayNetworkDelete(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { - api, zone, id, err := NewAPIWithZoneAndID(m, d.Id()) + api, zone, id, err := NewAPIWithZoneAndIDv2(m, d.Id()) + if err != nil { + return diag.FromErr(err) + } + + apiV1, _, _, err := NewAPIWithZoneAndID(m, d.Id()) if err != nil { return diag.FromErr(err) } - gwNetwork, err := waitForVPCGatewayNetwork(ctx, api, zone, id, d.Timeout(schema.TimeoutDelete)) + gwNetwork, err := waitForVPCGatewayNetworkV2(ctx, api, zone, id, d.Timeout(schema.TimeoutDelete)) if err != nil { + if httperrors.Is412(err) { + tflog.Warn(ctx, "v2 API returned 412, falling back to v1 API to wait for gateway network stabilization") + + _, err = waitForVPCGatewayNetwork(ctx, apiV1, zone, id, d.Timeout(schema.TimeoutCreate)) + if err != nil { + return diag.FromErr(err) + } + } + return diag.FromErr(err) } req := &vpcgw.DeleteGatewayNetworkRequest{ GatewayNetworkID: gwNetwork.ID, Zone: gwNetwork.Zone, - CleanupDHCP: *types.ExpandBoolPtr(d.Get("cleanup_dhcp")), } - err = api.DeleteGatewayNetwork(req, scw.WithContext(ctx)) + _, err = api.DeleteGatewayNetwork(req, scw.WithContext(ctx)) if err != nil { return diag.FromErr(err) } - _, err = waitForVPCGatewayNetwork(ctx, api, zone, id, d.Timeout(schema.TimeoutDelete)) - if err != nil && !httperrors.Is404(err) { + _, err = waitForVPCGatewayNetworkV2(ctx, api, zone, id, d.Timeout(schema.TimeoutDelete)) + + switch { + case err == nil: + case httperrors.Is404(err): + return nil + case httperrors.Is412(err): + tflog.Warn(ctx, "v2 API returned 412, falling back to v1 API to wait for gateway network stabilization") + + _, err = waitForVPCGatewayNetwork(ctx, apiV1, zone, id, d.Timeout(schema.TimeoutDelete)) + if err != nil && !httperrors.Is404(err) { + return diag.FromErr(err) + } + default: return diag.FromErr(err) } - _, err = waitForVPCPublicGateway(ctx, api, zone, gwNetwork.GatewayID, d.Timeout(schema.TimeoutDelete)) - if err != nil && !httperrors.Is404(err) { + _, err = waitForVPCPublicGatewayV2(ctx, api, zone, id, d.Timeout(schema.TimeoutDelete)) + + switch { + case err == nil: + case httperrors.Is404(err): + return nil + case httperrors.Is412(err): + tflog.Warn(ctx, "v2 API returned 412, falling back to v1 API to wait for public gateway stabilization") + + _, err = waitForVPCPublicGateway(ctx, apiV1, zone, id, d.Timeout(schema.TimeoutDelete)) + if err != nil && !httperrors.Is404(err) { + return diag.FromErr(err) + } + default: return diag.FromErr(err) } diff --git a/internal/services/vpcgw/network_data_source.go b/internal/services/vpcgw/network_data_source.go index 9812d1e68f..dd57fcd355 100644 --- a/internal/services/vpcgw/network_data_source.go +++ b/internal/services/vpcgw/network_data_source.go @@ -7,7 +7,7 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "github.com/scaleway/scaleway-sdk-go/api/vpcgw/v1" + "github.com/scaleway/scaleway-sdk-go/api/vpcgw/v2" "github.com/scaleway/scaleway-sdk-go/scw" "github.com/scaleway/terraform-provider-scaleway/v2/internal/datasource" "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality" @@ -43,19 +43,18 @@ func DataSourceNetwork() *schema.Resource { } func DataSourceVPCGatewayNetworkRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { - vpcAPI, zone, err := newAPIWithZone(d, m) + vpcgwAPI, zone, err := newAPIWithZoneV2(d, m) if err != nil { return diag.FromErr(err) } gatewayNetworkID, ok := d.GetOk("gateway_network_id") if !ok { - res, err := vpcAPI.ListGatewayNetworks(&vpcgw.ListGatewayNetworksRequest{ - GatewayID: types.ExpandStringPtr(locality.ExpandID(d.Get("gateway_id"))), - PrivateNetworkID: types.ExpandStringPtr(locality.ExpandID(d.Get("private_network_id"))), - EnableMasquerade: types.ExpandBoolPtr(types.GetBool(d, "enable_masquerade")), - DHCPID: types.ExpandStringPtr(locality.ExpandID(d.Get("dhcp_id").(string))), - Zone: zone, + res, err := vpcgwAPI.ListGatewayNetworks(&vpcgw.ListGatewayNetworksRequest{ + GatewayIDs: []string{locality.ExpandID(d.Get("gateway_id").(string))}, + PrivateNetworkIDs: []string{locality.ExpandID(d.Get("private_network_id"))}, + MasqueradeEnabled: types.ExpandBoolPtr(types.GetBool(d, "enable_masquerade")), + Zone: zone, }, scw.WithContext(ctx)) if err != nil { return diag.FromErr(err) diff --git a/internal/services/vpcgw/network_data_source_test.go b/internal/services/vpcgw/network_data_source_test.go index 8902c3293d..3f8dcfc2cb 100644 --- a/internal/services/vpcgw/network_data_source_test.go +++ b/internal/services/vpcgw/network_data_source_test.go @@ -24,11 +24,6 @@ func TestAccDataSourceVPCGatewayNetwork_Basic(t *testing.T) { resource "scaleway_vpc_public_gateway_ip" "gw01" { } - resource "scaleway_vpc_public_gateway_dhcp" "dhcp01" { - subnet = "192.168.1.0/24" - push_default_route = true - } - resource "scaleway_vpc_public_gateway" "pg01" { type = "VPC-GW-S" ip_id = scaleway_vpc_public_gateway_ip.gw01.id @@ -37,8 +32,9 @@ func TestAccDataSourceVPCGatewayNetwork_Basic(t *testing.T) { resource "scaleway_vpc_gateway_network" "main" { gateway_id = scaleway_vpc_public_gateway.pg01.id private_network_id = scaleway_vpc_private_network.pn01.id - dhcp_id = scaleway_vpc_public_gateway_dhcp.dhcp01.id - cleanup_dhcp = true + ipam_config { + push_default_route = false + } enable_masquerade = true }`, }, @@ -49,12 +45,7 @@ func TestAccDataSourceVPCGatewayNetwork_Basic(t *testing.T) { resource "scaleway_vpc_public_gateway_ip" "gw01" { } - - resource "scaleway_vpc_public_gateway_dhcp" "dhcp01" { - subnet = "192.168.1.0/24" - push_default_route = true - } - + resource "scaleway_vpc_public_gateway" "pg01" { type = "VPC-GW-S" ip_id = scaleway_vpc_public_gateway_ip.gw01.id @@ -63,8 +54,9 @@ func TestAccDataSourceVPCGatewayNetwork_Basic(t *testing.T) { resource "scaleway_vpc_gateway_network" "main" { gateway_id = scaleway_vpc_public_gateway.pg01.id private_network_id = scaleway_vpc_private_network.pn01.id - dhcp_id = scaleway_vpc_public_gateway_dhcp.dhcp01.id - cleanup_dhcp = true + ipam_config { + push_default_route = false + } enable_masquerade = true } diff --git a/internal/services/vpcgw/network_test.go b/internal/services/vpcgw/network_test.go index 6dd027734d..31876bed5d 100644 --- a/internal/services/vpcgw/network_test.go +++ b/internal/services/vpcgw/network_test.go @@ -6,147 +6,13 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource" "github.com/hashicorp/terraform-plugin-sdk/v2/terraform" - vpcgwSDK "github.com/scaleway/scaleway-sdk-go/api/vpcgw/v1" + vpcgwSDK "github.com/scaleway/scaleway-sdk-go/api/vpcgw/v2" "github.com/scaleway/terraform-provider-scaleway/v2/internal/acctest" ipamchecks "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/ipam/testfuncs" "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/vpcgw" vpcgwchecks "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/vpcgw/testfuncs" ) -func TestAccVPCGatewayNetwork_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: vpcgwchecks.IsGatewayNetworkDestroyed(tt), - Steps: []resource.TestStep{ - { - Config: ` - resource scaleway_vpc_private_network pn01 { - name = "pn_test_network" - } - - resource scaleway_vpc_public_gateway_ip gw01 { - } - - resource scaleway_vpc_public_gateway_dhcp dhcp01 { - subnet = "192.168.1.0/24" - } - `, - }, - { - Config: ` - resource scaleway_vpc_private_network pn01 { - name = "pn_test_network" - } - - resource scaleway_vpc_public_gateway_ip gw01 { - } - - resource scaleway_vpc_public_gateway_dhcp dhcp01 { - subnet = "192.168.1.0/24" - } - - resource scaleway_vpc_public_gateway pg01 { - name = "foobar" - type = "VPC-GW-S" - ip_id = scaleway_vpc_public_gateway_ip.gw01.id - } - - resource scaleway_vpc_gateway_network main { - gateway_id = scaleway_vpc_public_gateway.pg01.id - private_network_id = scaleway_vpc_private_network.pn01.id - dhcp_id = scaleway_vpc_public_gateway_dhcp.dhcp01.id - cleanup_dhcp = true - enable_masquerade = true - depends_on = [scaleway_vpc_public_gateway_ip.gw01, scaleway_vpc_private_network.pn01] - } - `, - Check: resource.ComposeTestCheckFunc( - testAccCheckVPCGatewayNetworkExists(tt, "scaleway_vpc_gateway_network.main"), - resource.TestCheckResourceAttrPair("scaleway_vpc_gateway_network.main", - "private_network_id", "scaleway_vpc_private_network.pn01", "id"), - resource.TestCheckResourceAttrSet("scaleway_vpc_gateway_network.main", "gateway_id"), - resource.TestCheckResourceAttrSet("scaleway_vpc_gateway_network.main", "private_network_id"), - resource.TestCheckResourceAttrSet("scaleway_vpc_gateway_network.main", "dhcp_id"), - resource.TestCheckResourceAttrSet("scaleway_vpc_gateway_network.main", "mac_address"), - resource.TestCheckResourceAttrSet("scaleway_vpc_gateway_network.main", "created_at"), - resource.TestCheckResourceAttrSet("scaleway_vpc_gateway_network.main", "updated_at"), - resource.TestCheckResourceAttrSet("scaleway_vpc_gateway_network.main", "zone"), - resource.TestCheckResourceAttr("scaleway_vpc_gateway_network.main", "enable_dhcp", "true"), - resource.TestCheckResourceAttr("scaleway_vpc_gateway_network.main", "cleanup_dhcp", "true"), - resource.TestCheckResourceAttr("scaleway_vpc_gateway_network.main", "enable_masquerade", "true"), - ), - }, - { - Config: ` - resource scaleway_vpc_private_network pn01 { - name = "pn_test_network" - } - - resource scaleway_vpc_public_gateway_ip gw01 { - } - - resource scaleway_vpc_public_gateway pg01 { - name = "foobar" - type = "VPC-GW-S" - ip_id = scaleway_vpc_public_gateway_ip.gw01.id - } - `, - Check: resource.ComposeTestCheckFunc( - resource.TestCheckResourceAttrSet("scaleway_vpc_private_network.pn01", "name"), - ), - }, - }, - }) -} - -func TestAccVPCGatewayNetwork_WithoutDHCP(t *testing.T) { - tt := acctest.NewTestTools(t) - defer tt.Cleanup() - resource.ParallelTest(t, resource.TestCase{ - PreCheck: func() { acctest.PreCheck(t) }, - ProviderFactories: tt.ProviderFactories, - CheckDestroy: vpcgwchecks.IsGatewayNetworkDestroyed(tt), - Steps: []resource.TestStep{ - { - Config: ` - resource scaleway_vpc_private_network pn01 { - name = "pn_test_network" - } - - resource scaleway_vpc_public_gateway pg01 { - name = "foobar" - type = "VPC-GW-S" - } - - resource scaleway_vpc_gateway_network main { - gateway_id = scaleway_vpc_public_gateway.pg01.id - private_network_id = scaleway_vpc_private_network.pn01.id - enable_dhcp = false - enable_masquerade = true - static_address = "192.168.1.42/24" - } - `, - Check: resource.ComposeTestCheckFunc( - testAccCheckVPCGatewayNetworkExists(tt, "scaleway_vpc_gateway_network.main"), - resource.TestCheckResourceAttrSet("scaleway_vpc_gateway_network.main", "gateway_id"), - resource.TestCheckResourceAttrSet("scaleway_vpc_gateway_network.main", "private_network_id"), - resource.TestCheckResourceAttrSet("scaleway_vpc_gateway_network.main", "mac_address"), - resource.TestCheckResourceAttrSet("scaleway_vpc_gateway_network.main", "created_at"), - resource.TestCheckResourceAttrSet("scaleway_vpc_gateway_network.main", "updated_at"), - resource.TestCheckResourceAttrSet("scaleway_vpc_gateway_network.main", "zone"), - resource.TestCheckResourceAttr("scaleway_vpc_gateway_network.main", "static_address", "192.168.1.42/24"), - resource.TestCheckResourceAttr("scaleway_vpc_gateway_network.main", "enable_dhcp", "false"), - resource.TestCheckResourceAttr("scaleway_vpc_gateway_network.main", "cleanup_dhcp", "false"), - resource.TestCheckResourceAttr("scaleway_vpc_gateway_network.main", "enable_masquerade", "true"), - ), - }, - }, - }) -} - func TestAccVPCGatewayNetwork_WithIPAMConfig(t *testing.T) { tt := acctest.NewTestTools(t) defer tt.Cleanup() @@ -195,10 +61,8 @@ func TestAccVPCGatewayNetwork_WithIPAMConfig(t *testing.T) { resource.TestCheckResourceAttrSet("scaleway_vpc_gateway_network.main", "updated_at"), resource.TestCheckResourceAttrSet("scaleway_vpc_gateway_network.main", "status"), resource.TestCheckResourceAttrSet("scaleway_vpc_gateway_network.main", "zone"), - resource.TestCheckResourceAttrSet("scaleway_vpc_gateway_network.main", "static_address"), resource.TestCheckResourceAttr("scaleway_vpc_gateway_network.main", "ipam_config.0.push_default_route", "true"), resource.TestCheckResourceAttrSet("scaleway_vpc_gateway_network.main", "ipam_config.0.ipam_ip_id"), - resource.TestCheckResourceAttr("scaleway_vpc_gateway_network.main", "enable_dhcp", "true"), resource.TestCheckResourceAttr("scaleway_vpc_gateway_network.main", "enable_masquerade", "true"), ), }, @@ -256,7 +120,7 @@ func testAccCheckVPCGatewayNetworkExists(tt *acctest.TestTools, n string) resour return fmt.Errorf("resource not found: %s", n) } - api, zone, ID, err := vpcgw.NewAPIWithZoneAndID(tt.Meta, rs.Primary.ID) + api, zone, ID, err := vpcgw.NewAPIWithZoneAndIDv2(tt.Meta, rs.Primary.ID) if err != nil { return err } diff --git a/internal/services/vpcgw/pat_rule.go b/internal/services/vpcgw/pat_rule.go index b212f6a331..3ab9e6238f 100644 --- a/internal/services/vpcgw/pat_rule.go +++ b/internal/services/vpcgw/pat_rule.go @@ -9,7 +9,7 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/validation" - "github.com/scaleway/scaleway-sdk-go/api/vpcgw/v1" + "github.com/scaleway/scaleway-sdk-go/api/vpcgw/v2" "github.com/scaleway/scaleway-sdk-go/scw" "github.com/scaleway/terraform-provider-scaleway/v2/internal/cdf" "github.com/scaleway/terraform-provider-scaleway/v2/internal/httperrors" @@ -65,7 +65,7 @@ func ResourcePATRule() *schema.Resource { "protocol": { Type: schema.TypeString, Optional: true, - ValidateDiagFunc: verify.ValidateEnumIgnoreCase[vpcgw.PATRuleProtocol](), + ValidateDiagFunc: verify.ValidateEnumIgnoreCase[vpcgw.PatRuleProtocol](), Default: "both", Description: "The protocol used in the PAT rule", }, @@ -88,40 +88,40 @@ func ResourcePATRule() *schema.Resource { } func ResourceVPCPublicGatewayPATRuleCreate(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { - api, zone, err := newAPIWithZone(d, m) + api, zone, err := newAPIWithZoneV2(d, m) if err != nil { return diag.FromErr(err) } gatewayID := zonal.ExpandID(d.Get("gateway_id").(string)).ID - _, err = waitForVPCPublicGateway(ctx, api, zone, gatewayID, d.Timeout(schema.TimeoutCreate)) + _, err = waitForVPCPublicGatewayV2(ctx, api, zone, gatewayID, d.Timeout(schema.TimeoutCreate)) if err != nil { return diag.FromErr(err) } - req := &vpcgw.CreatePATRuleRequest{ + req := &vpcgw.CreatePatRuleRequest{ Zone: zone, GatewayID: gatewayID, PublicPort: uint32(d.Get("public_port").(int)), PrivateIP: net.ParseIP(d.Get("private_ip").(string)), PrivatePort: uint32(d.Get("private_port").(int)), - Protocol: vpcgw.PATRuleProtocol(d.Get("protocol").(string)), + Protocol: vpcgw.PatRuleProtocol(d.Get("protocol").(string)), } - _, err = waitForVPCPublicGateway(ctx, api, zone, gatewayID, d.Timeout(schema.TimeoutCreate)) + _, err = waitForVPCPublicGatewayV2(ctx, api, zone, gatewayID, d.Timeout(schema.TimeoutCreate)) if err != nil { return diag.FromErr(err) } - patRule, err := api.CreatePATRule(req, scw.WithContext(ctx)) + patRule, err := api.CreatePatRule(req, scw.WithContext(ctx)) if err != nil { return diag.FromErr(err) } d.SetId(zonal.NewIDString(zone, patRule.ID)) - _, err = waitForVPCPublicGateway(ctx, api, zone, patRule.GatewayID, d.Timeout(schema.TimeoutCreate)) + _, err = waitForVPCPublicGatewayV2(ctx, api, zone, patRule.GatewayID, d.Timeout(schema.TimeoutCreate)) if err != nil { return diag.FromErr(err) } @@ -130,12 +130,12 @@ func ResourceVPCPublicGatewayPATRuleCreate(ctx context.Context, d *schema.Resour } func ResourceVPCPublicGatewayPATRuleRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { - api, zone, ID, err := NewAPIWithZoneAndID(m, d.Id()) + api, zone, ID, err := NewAPIWithZoneAndIDv2(m, d.Id()) if err != nil { return diag.FromErr(err) } - patRule, err := api.GetPATRule(&vpcgw.GetPATRuleRequest{ + patRule, err := api.GetPatRule(&vpcgw.GetPatRuleRequest{ PatRuleID: ID, Zone: zone, }, scw.WithContext(ctx)) @@ -163,12 +163,12 @@ func ResourceVPCPublicGatewayPATRuleRead(ctx context.Context, d *schema.Resource } func ResourceVPCPublicGatewayPATRuleUpdate(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { - api, zone, ID, err := NewAPIWithZoneAndID(m, d.Id()) + api, zone, ID, err := NewAPIWithZoneAndIDv2(m, d.Id()) if err != nil { return diag.FromErr(err) } - patRule, err := api.GetPATRule(&vpcgw.GetPATRuleRequest{ + patRule, err := api.GetPatRule(&vpcgw.GetPatRuleRequest{ PatRuleID: ID, Zone: zone, }, scw.WithContext(ctx)) @@ -176,16 +176,15 @@ func ResourceVPCPublicGatewayPATRuleUpdate(ctx context.Context, d *schema.Resour return diag.FromErr(err) } - // check gateway is in stable state. - _, err = waitForVPCPublicGateway(ctx, api, zone, patRule.GatewayID, d.Timeout(schema.TimeoutUpdate)) + _, err = waitForVPCPublicGatewayV2(ctx, api, zone, patRule.GatewayID, d.Timeout(schema.TimeoutUpdate)) if err != nil { return diag.FromErr(err) } - req := &vpcgw.UpdatePATRuleRequest{ + req := &vpcgw.UpdatePatRuleRequest{ Zone: zone, PatRuleID: ID, - Protocol: vpcgw.PATRuleProtocol(d.Get("protocol").(string)), + Protocol: vpcgw.PatRuleProtocol(d.Get("protocol").(string)), } hasChange := false @@ -206,18 +205,17 @@ func ResourceVPCPublicGatewayPATRuleUpdate(ctx context.Context, d *schema.Resour } if d.HasChange("protocol") { - req.Protocol = vpcgw.PATRuleProtocol(d.Get("protocol").(string)) + req.Protocol = vpcgw.PatRuleProtocol(d.Get("protocol").(string)) hasChange = true } if hasChange { - // check gateway is in stable state. - _, err = waitForVPCPublicGateway(ctx, api, zone, patRule.GatewayID, d.Timeout(schema.TimeoutUpdate)) + _, err = waitForVPCPublicGatewayV2(ctx, api, zone, patRule.GatewayID, d.Timeout(schema.TimeoutUpdate)) if err != nil { return diag.FromErr(err) } - patRule, err = api.UpdatePATRule(req, scw.WithContext(ctx)) + patRule, err = api.UpdatePatRule(req, scw.WithContext(ctx)) if err != nil { if httperrors.Is404(err) { d.SetId("") @@ -229,8 +227,7 @@ func ResourceVPCPublicGatewayPATRuleUpdate(ctx context.Context, d *schema.Resour } } - // check gateway is in stable state. - _, err = waitForVPCPublicGateway(ctx, api, zone, patRule.GatewayID, d.Timeout(schema.TimeoutUpdate)) + _, err = waitForVPCPublicGatewayV2(ctx, api, zone, patRule.GatewayID, d.Timeout(schema.TimeoutUpdate)) if err != nil { return diag.FromErr(err) } @@ -239,12 +236,12 @@ func ResourceVPCPublicGatewayPATRuleUpdate(ctx context.Context, d *schema.Resour } func ResourceVPCPublicGatewayPATRuleDelete(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { - api, zone, ID, err := NewAPIWithZoneAndID(m, d.Id()) + api, zone, ID, err := NewAPIWithZoneAndIDv2(m, d.Id()) if err != nil { return diag.FromErr(err) } - patRule, err := api.GetPATRule(&vpcgw.GetPATRuleRequest{ + patRule, err := api.GetPatRule(&vpcgw.GetPatRuleRequest{ PatRuleID: ID, Zone: zone, }, scw.WithContext(ctx)) @@ -258,13 +255,12 @@ func ResourceVPCPublicGatewayPATRuleDelete(ctx context.Context, d *schema.Resour return diag.FromErr(err) } - // check gateway is in stable state. - _, err = waitForVPCPublicGateway(ctx, api, zone, patRule.GatewayID, d.Timeout(schema.TimeoutDelete)) + _, err = waitForVPCPublicGatewayV2(ctx, api, zone, patRule.GatewayID, d.Timeout(schema.TimeoutDelete)) if err != nil && !httperrors.Is404(err) { return diag.FromErr(err) } - err = api.DeletePATRule(&vpcgw.DeletePATRuleRequest{ + err = api.DeletePatRule(&vpcgw.DeletePatRuleRequest{ PatRuleID: ID, Zone: zone, }, scw.WithContext(ctx)) @@ -273,7 +269,7 @@ func ResourceVPCPublicGatewayPATRuleDelete(ctx context.Context, d *schema.Resour return diag.FromErr(err) } - _, err = waitForVPCPublicGateway(ctx, api, zone, patRule.GatewayID, d.Timeout(schema.TimeoutDelete)) + _, err = waitForVPCPublicGatewayV2(ctx, api, zone, patRule.GatewayID, d.Timeout(schema.TimeoutDelete)) if err != nil && !httperrors.Is404(err) { return diag.FromErr(err) } diff --git a/internal/services/vpcgw/pat_rule_data_source.go b/internal/services/vpcgw/pat_rule_data_source.go index c1fa18fce7..7d3805271a 100644 --- a/internal/services/vpcgw/pat_rule_data_source.go +++ b/internal/services/vpcgw/pat_rule_data_source.go @@ -5,7 +5,7 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "github.com/scaleway/scaleway-sdk-go/api/vpcgw/v1" + "github.com/scaleway/scaleway-sdk-go/api/vpcgw/v2" "github.com/scaleway/scaleway-sdk-go/scw" "github.com/scaleway/terraform-provider-scaleway/v2/internal/datasource" "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality" @@ -33,7 +33,7 @@ func DataSourcePATRule() *schema.Resource { } func DataSourceVPCPublicGatewayPATRuleRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { - api, zone, err := newAPIWithZone(d, m) + api, zone, err := newAPIWithZoneV2(d, m) if err != nil { return diag.FromErr(err) } @@ -45,7 +45,7 @@ func DataSourceVPCPublicGatewayPATRuleRead(ctx context.Context, d *schema.Resour _ = d.Set("pat_rule_id", zonedID) // check if pat rule exist - _, err = api.GetPATRule(&vpcgw.GetPATRuleRequest{ + _, err = api.GetPatRule(&vpcgw.GetPatRuleRequest{ PatRuleID: locality.ExpandID(patRuleIDRaw), Zone: zone, }, scw.WithContext(ctx)) diff --git a/internal/services/vpcgw/pat_rule_data_source_test.go b/internal/services/vpcgw/pat_rule_data_source_test.go index 677e39f396..b782ebdf9d 100644 --- a/internal/services/vpcgw/pat_rule_data_source_test.go +++ b/internal/services/vpcgw/pat_rule_data_source_test.go @@ -22,12 +22,15 @@ func TestAccDataSourceVPCPublicGatewayPATRule_Basic(t *testing.T) { type = "VPC-GW-S" } - resource scaleway_vpc_public_gateway_dhcp dhcp01 { - subnet = "192.168.1.0/24" + resource scaleway_vpc vpc01 { + name = "my vpc" } resource scaleway_vpc_private_network pn01 { name = "pn_test_network" + ipv4_subnet { + subnet = "172.16.32.0/22" + } } `, }, @@ -37,26 +40,45 @@ func TestAccDataSourceVPCPublicGatewayPATRule_Basic(t *testing.T) { type = "VPC-GW-S" } - resource scaleway_vpc_public_gateway_dhcp dhcp01 { - subnet = "192.168.1.0/24" + resource scaleway_vpc vpc01 { + name = "my vpc" } resource scaleway_vpc_private_network pn01 { name = "pn_test_network" + ipv4_subnet { + subnet = "172.16.32.0/22" + } } resource scaleway_vpc_gateway_network gn01 { gateway_id = scaleway_vpc_public_gateway.pg01.id private_network_id = scaleway_vpc_private_network.pn01.id - dhcp_id = scaleway_vpc_public_gateway_dhcp.dhcp01.id - depends_on = [scaleway_vpc_private_network.pn01] - cleanup_dhcp = true enable_masquerade = true + ipam_config { + push_default_route = true + } + } + + ### Scaleway Instance + resource "scaleway_instance_server" "main" { + name = "Scaleway Instance" + type = "DEV1-S" + image = "debian_bullseye" + + private_network { + pn_id = scaleway_vpc_private_network.pn01.id + } + } + + data "scaleway_ipam_ip" "main" { + mac_address = scaleway_instance_server.main.private_network.0.mac_address + type = "ipv4" } resource scaleway_vpc_public_gateway_pat_rule main { gateway_id = scaleway_vpc_public_gateway.pg01.id - private_ip = scaleway_vpc_public_gateway_dhcp.dhcp01.address + private_ip = data.scaleway_ipam_ip.main.address private_port = 42 public_port = 42 protocol = "both" diff --git a/internal/services/vpcgw/pat_rule_test.go b/internal/services/vpcgw/pat_rule_test.go index df011eaec8..8df1ceddfd 100644 --- a/internal/services/vpcgw/pat_rule_test.go +++ b/internal/services/vpcgw/pat_rule_test.go @@ -6,7 +6,7 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource" "github.com/hashicorp/terraform-plugin-sdk/v2/terraform" - vpcgwSDK "github.com/scaleway/scaleway-sdk-go/api/vpcgw/v1" + vpcgwSDK "github.com/scaleway/scaleway-sdk-go/api/vpcgw/v2" "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/vpcgw" @@ -16,81 +16,6 @@ func TestAccVPCPublicGatewayPATRule_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: testAccCheckVPCPublicGatewayPATRuleDestroy(tt), - Steps: []resource.TestStep{ - { - Config: ` - resource scaleway_vpc_public_gateway pg01 { - type = "VPC-GW-S" - } - - resource scaleway_vpc_public_gateway_dhcp dhcp01 { - subnet = "192.168.1.0/24" - } - - resource scaleway_vpc_private_network pn01 { - name = "pn_test_network" - } - `, - }, - { - Config: ` - resource scaleway_vpc_public_gateway pg01 { - type = "VPC-GW-S" - } - - resource scaleway_vpc_public_gateway_dhcp dhcp01 { - subnet = "192.168.1.0/24" - } - - resource scaleway_vpc_private_network pn01 { - name = "pn_test_network" - } - - resource scaleway_vpc_gateway_network gn01 { - gateway_id = scaleway_vpc_public_gateway.pg01.id - private_network_id = scaleway_vpc_private_network.pn01.id - dhcp_id = scaleway_vpc_public_gateway_dhcp.dhcp01.id - depends_on = [scaleway_vpc_private_network.pn01] - cleanup_dhcp = true - enable_masquerade = true - } - - resource scaleway_vpc_public_gateway_pat_rule main { - gateway_id = scaleway_vpc_public_gateway.pg01.id - private_ip = scaleway_vpc_public_gateway_dhcp.dhcp01.address - private_port = 42 - public_port = 42 - protocol = "both" - depends_on = [scaleway_vpc_gateway_network.gn01, scaleway_vpc_private_network.pn01] - } - `, - Check: resource.ComposeTestCheckFunc( - testAccCheckVPCPublicGatewayPATRuleExists( - tt, - "scaleway_vpc_public_gateway_pat_rule.main", - ), - resource.TestCheckResourceAttrSet("scaleway_vpc_public_gateway_pat_rule.main", "gateway_id"), - resource.TestCheckResourceAttrSet("scaleway_vpc_public_gateway_pat_rule.main", "private_ip"), - resource.TestCheckResourceAttrSet("scaleway_vpc_public_gateway_pat_rule.main", "created_at"), - resource.TestCheckResourceAttrSet("scaleway_vpc_public_gateway_pat_rule.main", "updated_at"), - resource.TestCheckResourceAttrSet("scaleway_vpc_public_gateway_pat_rule.main", "protocol"), - resource.TestCheckResourceAttr("scaleway_vpc_public_gateway_pat_rule.main", "protocol", "both"), - resource.TestCheckResourceAttr("scaleway_vpc_public_gateway_pat_rule.main", "public_port", "42"), - resource.TestCheckResourceAttr("scaleway_vpc_public_gateway_pat_rule.main", "private_port", "42"), - ), - }, - }, - }) -} - -func TestAccVPCPublicGatewayPATRule_WithInstance(t *testing.T) { - tt := acctest.NewTestTools(t) - defer tt.Cleanup() - resource.ParallelTest(t, resource.TestCase{ PreCheck: func() { acctest.PreCheck(t) }, ProviderFactories: tt.ProviderFactories, @@ -106,12 +31,7 @@ func TestAccVPCPublicGatewayPATRule_WithInstance(t *testing.T) { ### IP for Public Gateway resource "scaleway_vpc_public_gateway_ip" "main" { } - - ### DHCP Space of VPC - resource "scaleway_vpc_public_gateway_dhcp" "main" { - subnet = "10.0.0.0/24" - } - + ### The Public Gateway with the Attached IP resource "scaleway_vpc_public_gateway" "main" { name = "The Public Gateway" @@ -123,13 +43,10 @@ func TestAccVPCPublicGatewayPATRule_WithInstance(t *testing.T) { resource "scaleway_vpc_gateway_network" "main" { gateway_id = scaleway_vpc_public_gateway.main.id private_network_id = scaleway_vpc_private_network.main.id - dhcp_id = scaleway_vpc_public_gateway_dhcp.main.id - cleanup_dhcp = true enable_masquerade = true - depends_on = [ - scaleway_vpc_public_gateway_ip.main, - scaleway_vpc_private_network.main - ] + ipam_config { + push_default_route = false + } } ### Scaleway Instance @@ -137,43 +54,34 @@ func TestAccVPCPublicGatewayPATRule_WithInstance(t *testing.T) { name = "Scaleway Instance" type = "DEV1-S" image = "debian_bullseye" - enable_ipv6 = false private_network { pn_id = scaleway_vpc_private_network.main.id } } - - ### DHCP Reservation for Instance - resource "scaleway_vpc_public_gateway_dhcp_reservation" "main" { - gateway_network_id = scaleway_vpc_gateway_network.main.id - mac_address = scaleway_instance_server.main.private_network.0.mac_address - ip_address = "10.0.0.3" + + data "scaleway_ipam_ip" "main" { + mac_address = scaleway_instance_server.main.private_network.0.mac_address + type = "ipv4" } ### PAT RULE for SSH Port resource "scaleway_vpc_public_gateway_pat_rule" "main" { gateway_id = scaleway_vpc_public_gateway.main.id - private_ip = scaleway_vpc_public_gateway_dhcp_reservation.main.ip_address + private_ip = data.scaleway_ipam_ip.main.address private_port = 22 public_port = 2023 protocol = "tcp" - depends_on = [ - scaleway_vpc_gateway_network.main, - scaleway_vpc_private_network.main - ] } `, Check: resource.ComposeTestCheckFunc( - testAccCheckVPCPublicGatewayDHCPExists(tt, "scaleway_vpc_public_gateway_dhcp.main"), testAccCheckVPCPublicGatewayPATRuleExists(tt, "scaleway_vpc_public_gateway_pat_rule.main"), - resource.TestCheckResourceAttr("scaleway_vpc_public_gateway_dhcp.main", "subnet", "10.0.0.0/24"), resource.TestCheckResourceAttr("scaleway_vpc_public_gateway_pat_rule.main", "protocol", "tcp"), resource.TestCheckResourceAttr("scaleway_vpc_public_gateway_pat_rule.main", "public_port", "2023"), resource.TestCheckResourceAttr("scaleway_vpc_public_gateway_pat_rule.main", "private_port", "22"), resource.TestCheckResourceAttrPair( "scaleway_vpc_public_gateway_pat_rule.main", "private_ip", - "scaleway_vpc_public_gateway_dhcp_reservation.main", "ip_address"), + "data.scaleway_ipam_ip.main", "address"), resource.TestCheckResourceAttrPair( "scaleway_vpc_public_gateway_pat_rule.main", "gateway_id", "scaleway_vpc_public_gateway.main", "id"), @@ -190,12 +98,12 @@ func testAccCheckVPCPublicGatewayPATRuleExists(tt *acctest.TestTools, n string) return fmt.Errorf("resource not found: %s", n) } - api, zone, ID, err := vpcgw.NewAPIWithZoneAndID(tt.Meta, rs.Primary.ID) + api, zone, ID, err := vpcgw.NewAPIWithZoneAndIDv2(tt.Meta, rs.Primary.ID) if err != nil { return err } - _, err = api.GetPATRule(&vpcgwSDK.GetPATRuleRequest{ + _, err = api.GetPatRule(&vpcgwSDK.GetPatRuleRequest{ PatRuleID: ID, Zone: zone, }) @@ -214,12 +122,12 @@ func testAccCheckVPCPublicGatewayPATRuleDestroy(tt *acctest.TestTools) resource. continue } - api, zone, ID, err := vpcgw.NewAPIWithZoneAndID(tt.Meta, rs.Primary.ID) + api, zone, ID, err := vpcgw.NewAPIWithZoneAndIDv2(tt.Meta, rs.Primary.ID) if err != nil { return err } - _, err = api.GetPATRule(&vpcgwSDK.GetPATRuleRequest{ + _, err = api.GetPatRule(&vpcgwSDK.GetPatRuleRequest{ PatRuleID: ID, Zone: zone, }) diff --git a/internal/services/vpcgw/public_gateway.go b/internal/services/vpcgw/public_gateway.go index d2b0c7cf7c..c8739a929a 100644 --- a/internal/services/vpcgw/public_gateway.go +++ b/internal/services/vpcgw/public_gateway.go @@ -2,11 +2,12 @@ package vpcgw import ( "context" - "time" + "github.com/hashicorp/terraform-plugin-log/tflog" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "github.com/scaleway/scaleway-sdk-go/api/vpcgw/v1" + v1 "github.com/scaleway/scaleway-sdk-go/api/vpcgw/v1" + "github.com/scaleway/scaleway-sdk-go/api/vpcgw/v2" "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" @@ -47,7 +48,7 @@ func ResourcePublicGateway() *schema.Resource { }, "upstream_dns_servers": { Type: schema.TypeList, - Optional: true, + Computed: true, Description: "override the gateway's default recursive DNS servers, if DNS features are enabled", Elem: &schema.Schema{ Type: schema.TypeString, @@ -91,6 +92,15 @@ func ResourcePublicGateway() *schema.Resource { Optional: true, Description: "Trigger a refresh of the SSH keys for a given Public Gateway by changing this field's value", }, + "allowed_ip_ranges": { + Type: schema.TypeSet, + Optional: true, + Computed: true, + Description: "Set a definitive list of IP ranges (in CIDR notation) allowed to connect to the SSH bastion", + Elem: &schema.Schema{ + Type: schema.TypeString, + }, + }, "project_id": account.ProjectIDSchema(), "zone": zonal.Schema(), // Computed elements @@ -110,25 +120,34 @@ func ResourcePublicGateway() *schema.Resource { Computed: true, Description: "The status of the public gateway", }, + "bandwidth": { + Type: schema.TypeInt, + Computed: true, + Description: "The bandwidth available of the gateway", + }, + "move_to_ipam": { + Type: schema.TypeBool, + Optional: true, + Description: "Put a Public Gateway in IPAM mode, so that it can be used with the Public Gateways API v2", + }, }, } } func ResourceVPCPublicGatewayCreate(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { - api, zone, err := newAPIWithZone(d, m) + api, zone, err := newAPIWithZoneV2(d, m) if err != nil { return diag.FromErr(err) } req := &vpcgw.CreateGatewayRequest{ - Name: types.ExpandOrGenerateString(d.Get("name"), "pn"), - Type: d.Get("type").(string), - Tags: types.ExpandStrings(d.Get("tags")), - UpstreamDNSServers: types.ExpandStrings(d.Get("upstream_dns_servers")), - ProjectID: d.Get("project_id").(string), - EnableBastion: d.Get("bastion_enabled").(bool), - Zone: zone, - EnableSMTP: d.Get("enable_smtp").(bool), + Name: types.ExpandOrGenerateString(d.Get("name"), "pn"), + Type: d.Get("type").(string), + Tags: types.ExpandStrings(d.Get("tags")), + ProjectID: d.Get("project_id").(string), + EnableBastion: d.Get("bastion_enabled").(bool), + Zone: zone, + EnableSMTP: d.Get("enable_smtp").(bool), } if bastionPort, ok := d.GetOk("bastion_port"); ok { @@ -144,148 +163,139 @@ func ResourceVPCPublicGatewayCreate(ctx context.Context, d *schema.ResourceData, return diag.FromErr(err) } - d.SetId(zonal.NewIDString(zone, gateway.ID)) - - // check err waiting process - _, err = waitForVPCPublicGateway(ctx, api, zone, gateway.ID, d.Timeout(schema.TimeoutCreate)) + _, err = waitForVPCPublicGatewayV2(ctx, api, zone, gateway.ID, d.Timeout(schema.TimeoutCreate)) if err != nil { return diag.FromErr(err) } - return ResourceVPCPublicGatewayRead(ctx, d, m) -} - -func ResourceVPCPublicGatewayRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { - api, zone, id, err := NewAPIWithZoneAndID(m, d.Id()) - if err != nil { - return diag.FromErr(err) - } + d.SetId(zonal.NewIDString(zone, gateway.ID)) - gateway, err := waitForVPCPublicGateway(ctx, api, zone, id, d.Timeout(schema.TimeoutRead)) - if err != nil { - if httperrors.Is404(err) { - d.SetId("") + if allowedIps, ok := d.GetOk("allowed_ip_ranges"); ok { + listIPs := allowedIps.(*schema.Set).List() - return nil + _, err = api.SetBastionAllowedIPs(&vpcgw.SetBastionAllowedIPsRequest{ + GatewayID: gateway.ID, + Zone: zone, + IPRanges: types.ExpandStrings(listIPs), + }, scw.WithContext(ctx)) + if err != nil { + return diag.FromErr(err) } - - return diag.FromErr(err) } - _ = d.Set("name", gateway.Name) - _ = d.Set("type", gateway.Type.Name) - _ = d.Set("status", gateway.Status.String()) - _ = d.Set("organization_id", gateway.OrganizationID) - _ = d.Set("project_id", gateway.ProjectID) - _ = d.Set("created_at", gateway.CreatedAt.Format(time.RFC3339)) - _ = d.Set("updated_at", gateway.UpdatedAt.Format(time.RFC3339)) - _ = d.Set("zone", gateway.Zone) - _ = d.Set("tags", gateway.Tags) - _ = d.Set("upstream_dns_servers", gateway.UpstreamDNSServers) - _ = d.Set("ip_id", zonal.NewID(gateway.Zone, gateway.IP.ID).String()) - _ = d.Set("bastion_enabled", gateway.BastionEnabled) - _ = d.Set("bastion_port", int(gateway.BastionPort)) - _ = d.Set("enable_smtp", gateway.SMTPEnabled) - - return nil + return ResourceVPCPublicGatewayRead(ctx, d, m) } -func ResourceVPCPublicGatewayUpdate(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { - api, zone, id, err := NewAPIWithZoneAndID(m, d.Id()) +func ResourceVPCPublicGatewayRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { + api, zone, id, err := NewAPIWithZoneAndIDv2(m, d.Id()) if err != nil { return diag.FromErr(err) } - gateway, err := waitForVPCPublicGateway(ctx, api, zone, id, d.Timeout(schema.TimeoutUpdate)) + apiV1, _, _, err := NewAPIWithZoneAndID(m, d.Id()) if err != nil { return diag.FromErr(err) } - updateRequest := &vpcgw.UpdateGatewayRequest{ - GatewayID: gateway.ID, - Zone: gateway.Zone, - } - - if d.HasChanges("name") { - updateRequest.Name = scw.StringPtr(d.Get("name").(string)) - } + gatewayV2, err := waitForVPCPublicGatewayV2(ctx, api, zone, id, d.Timeout(schema.TimeoutRead)) + if err != nil { + if httperrors.Is412(err) { + // Fallback to v1 API. + tflog.Warn(ctx, "v2 API returned 412, falling back to v1 API to wait for public gateway stabilization") - if d.HasChange("tags") { - updateRequest.Tags = types.ExpandUpdatedStringsPtr(d.Get("tags")) - } + gatewayV1, err := waitForVPCPublicGateway(ctx, apiV1, zone, id, d.Timeout(schema.TimeoutCreate)) + if err != nil { + return diag.FromErr(err) + } - if d.HasChange("bastion_port") { - updateRequest.BastionPort = scw.Uint32Ptr(uint32(d.Get("bastion_port").(int))) - } + return readVPCGWResourceDataV1(d, gatewayV1) + } else if httperrors.Is404(err) { + d.SetId("") - if d.HasChange("bastion_enabled") { - updateRequest.EnableBastion = scw.BoolPtr(d.Get("bastion_enabled").(bool)) - } + return nil + } - if d.HasChange("enable_smtp") { - updateRequest.EnableSMTP = scw.BoolPtr(d.Get("enable_smtp").(bool)) + return diag.FromErr(err) } - if d.HasChange("upstream_dns_servers") { - updateRequest.UpstreamDNSServers = types.ExpandUpdatedStringsPtr(d.Get("upstream_dns_servers")) - } + return readVPCGWResourceDataV2(d, gatewayV2) +} - _, err = api.UpdateGateway(updateRequest, scw.WithContext(ctx)) +func ResourceVPCPublicGatewayUpdate(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { + api, zone, id, err := NewAPIWithZoneAndIDv2(m, d.Id()) if err != nil { return diag.FromErr(err) } - _, err = waitForVPCPublicGateway(ctx, api, zone, id, d.Timeout(schema.TimeoutUpdate)) + apiV1, _, _, err := NewAPIWithZoneAndID(m, d.Id()) if err != nil { return diag.FromErr(err) } - if d.HasChange("refresh_ssh_keys") { - _, err := api.RefreshSSHKeys(&vpcgw.RefreshSSHKeysRequest{ - Zone: gateway.Zone, - GatewayID: gateway.ID, + if d.HasChange("move_to_ipam") { + err = apiV1.MigrateToV2(&v1.MigrateToV2Request{ + Zone: zone, + GatewayID: id, }, scw.WithContext(ctx)) if err != nil { return diag.FromErr(err) } - } - _, err = waitForVPCPublicGateway(ctx, api, zone, id, d.Timeout(schema.TimeoutUpdate)) - if err != nil { - return diag.FromErr(err) - } - - if d.HasChange("type") { - _, err := api.UpgradeGateway(&vpcgw.UpgradeGatewayRequest{ - Zone: gateway.Zone, - GatewayID: gateway.ID, - Type: types.ExpandUpdatedStringPtr(d.Get("type")), - }, scw.WithContext(ctx)) + _, err = waitForVPCPublicGatewayV2(ctx, api, zone, id, d.Timeout(schema.TimeoutCreate)) if err != nil { return diag.FromErr(err) } + + tflog.Info(ctx, "Public Gateway successfully moved to IPAM mode") } - _, err = waitForVPCPublicGateway(ctx, api, zone, id, d.Timeout(schema.TimeoutUpdate)) - if err != nil { + if err = updateGateway(ctx, d, api, apiV1, zone, id); err != nil { return diag.FromErr(err) } + _, err = waitForVPCPublicGatewayV2(ctx, api, zone, id, d.Timeout(schema.TimeoutCreate)) + if err != nil { + if httperrors.Is412(err) { + tflog.Warn(ctx, "v2 API returned 412, falling back to v1 API to wait for public gateway stabilization") + + _, err = waitForVPCPublicGateway(ctx, apiV1, zone, id, d.Timeout(schema.TimeoutCreate)) + if err != nil { + return diag.FromErr(err) + } + } else { + return diag.FromErr(err) + } + } + return ResourceVPCPublicGatewayRead(ctx, d, m) } func ResourceVPCPublicGatewayDelete(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { - api, zone, id, err := NewAPIWithZoneAndID(m, d.Id()) + api, zone, id, err := NewAPIWithZoneAndIDv2(m, d.Id()) if err != nil { return diag.FromErr(err) } - _, err = waitForVPCPublicGateway(ctx, api, zone, id, d.Timeout(schema.TimeoutDelete)) + apiV1, _, _, err := NewAPIWithZoneAndID(m, d.Id()) if err != nil { return diag.FromErr(err) } - err = api.DeleteGateway(&vpcgw.DeleteGatewayRequest{ + _, err = waitForVPCPublicGatewayV2(ctx, api, zone, id, d.Timeout(schema.TimeoutCreate)) + if err != nil { + if httperrors.Is412(err) { + tflog.Warn(ctx, "v2 API returned 412, falling back to v1 API to wait for public gateway stabilization") + + _, err = waitForVPCPublicGateway(ctx, apiV1, zone, id, d.Timeout(schema.TimeoutCreate)) + if err != nil { + return diag.FromErr(err) + } + } + + return diag.FromErr(err) + } + + _, err = api.DeleteGateway(&vpcgw.DeleteGatewayRequest{ GatewayID: id, Zone: zone, }, scw.WithContext(ctx)) @@ -293,8 +303,20 @@ func ResourceVPCPublicGatewayDelete(ctx context.Context, d *schema.ResourceData, return diag.FromErr(err) } - _, err = waitForVPCPublicGateway(ctx, api, zone, id, d.Timeout(schema.TimeoutDelete)) - if err != nil && !httperrors.Is404(err) { + _, err = waitForVPCPublicGatewayV2(ctx, api, zone, id, d.Timeout(schema.TimeoutDelete)) + + switch { + case err == nil: + case httperrors.Is404(err): + return nil + case httperrors.Is412(err): + tflog.Warn(ctx, "v2 API returned 412, falling back to v1 API to wait for public gateway stabilization") + + _, err = waitForVPCPublicGateway(ctx, apiV1, zone, id, d.Timeout(schema.TimeoutDelete)) + if err != nil && !httperrors.Is404(err) { + return diag.FromErr(err) + } + default: return diag.FromErr(err) } diff --git a/internal/services/vpcgw/public_gateway_data_source.go b/internal/services/vpcgw/public_gateway_data_source.go index 7517ae4c56..35eae6a0b2 100644 --- a/internal/services/vpcgw/public_gateway_data_source.go +++ b/internal/services/vpcgw/public_gateway_data_source.go @@ -5,7 +5,7 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "github.com/scaleway/scaleway-sdk-go/api/vpcgw/v1" + "github.com/scaleway/scaleway-sdk-go/api/vpcgw/v2" "github.com/scaleway/scaleway-sdk-go/scw" "github.com/scaleway/terraform-provider-scaleway/v2/internal/datasource" "github.com/scaleway/terraform-provider-scaleway/v2/internal/types" @@ -35,7 +35,7 @@ func DataSourceVPCPublicGateway() *schema.Resource { } func DataSourceVPCPublicGatewayRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { - api, zone, err := newAPIWithZone(d, m) + api, zone, err := newAPIWithZoneV2(d, m) if err != nil { return diag.FromErr(err) } @@ -50,9 +50,10 @@ func DataSourceVPCPublicGatewayRead(ctx context.Context, d *schema.ResourceData, res, err := api.ListGateways( &vpcgw.ListGatewaysRequest{ - Name: types.ExpandStringPtr(gwName), - Zone: zone, - ProjectID: types.ExpandStringPtr(d.Get("project_id")), + Name: types.ExpandStringPtr(gwName), + Zone: zone, + ProjectID: types.ExpandStringPtr(d.Get("project_id")), + IncludeLegacy: scw.BoolPtr(true), }, scw.WithContext(ctx)) if err != nil { return diag.FromErr(err) diff --git a/internal/services/vpcgw/public_gateway_test.go b/internal/services/vpcgw/public_gateway_test.go index 66305979c9..69eab7b5ad 100644 --- a/internal/services/vpcgw/public_gateway_test.go +++ b/internal/services/vpcgw/public_gateway_test.go @@ -6,7 +6,7 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource" "github.com/hashicorp/terraform-plugin-sdk/v2/terraform" - vpcgwSDK "github.com/scaleway/scaleway-sdk-go/api/vpcgw/v1" + vpcgwSDK "github.com/scaleway/scaleway-sdk-go/api/vpcgw/v2" "github.com/scaleway/terraform-provider-scaleway/v2/internal/acctest" "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/vpcgw" vpcgwchecks "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/vpcgw/testfuncs" @@ -42,7 +42,6 @@ func TestAccVPCPublicGateway_Basic(t *testing.T) { name = "%s-new" type = "VPC-GW-S" tags = ["tag0", "tag1"] - upstream_dns_servers = [ "1.2.3.4", "4.3.2.1" ] } `, publicGatewayName), Check: resource.ComposeTestCheckFunc( @@ -52,8 +51,6 @@ func TestAccVPCPublicGateway_Basic(t *testing.T) { resource.TestCheckResourceAttr("scaleway_vpc_public_gateway.main", "status", vpcgwSDK.GatewayStatusRunning.String()), resource.TestCheckResourceAttr("scaleway_vpc_public_gateway.main", "tags.0", "tag0"), resource.TestCheckResourceAttr("scaleway_vpc_public_gateway.main", "tags.1", "tag1"), - resource.TestCheckResourceAttr("scaleway_vpc_public_gateway.main", "upstream_dns_servers.0", "1.2.3.4"), - resource.TestCheckResourceAttr("scaleway_vpc_public_gateway.main", "upstream_dns_servers.1", "4.3.2.1"), ), }, { @@ -221,7 +218,7 @@ func testAccCheckVPCPublicGatewayExists(tt *acctest.TestTools, n string) resourc return fmt.Errorf("resource not found: %s", n) } - api, zone, ID, err := vpcgw.NewAPIWithZoneAndID(tt.Meta, rs.Primary.ID) + api, zone, ID, err := vpcgw.NewAPIWithZoneAndIDv2(tt.Meta, rs.Primary.ID) if err != nil { return err } diff --git a/internal/services/vpcgw/testdata/data-source-vpc-gateway-network-basic.cassette.yaml b/internal/services/vpcgw/testdata/data-source-vpc-gateway-network-basic.cassette.yaml index b9a0d9fe2d..8870f50556 100644 --- a/internal/services/vpcgw/testdata/data-source-vpc-gateway-network-basic.cassette.yaml +++ b/internal/services/vpcgw/testdata/data-source-vpc-gateway-network-basic.cassette.yaml @@ -6,20 +6,20 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 105 + content_length: 114 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"192.168.1.0/24","push_default_route":true}' + body: '{"name":"tf-pn-vibrant-varahamihira","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":null}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: proto: HTTP/2.0 @@ -27,20 +27,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 568 + content_length: 1031 uncompressed: false - body: '{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-21T14:35:48.129466Z","dhcp_enabled":true,"id":"2672bc5e-1565-4047-b2d6-4f484c42170d","name":"tf-pn-vibrant-varahamihira","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-03-21T14:35:48.129466Z","id":"d778a0ef-daa7-4136-a1a8-64e38f9d80c7","private_network_id":"2672bc5e-1565-4047-b2d6-4f484c42170d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.108.0/22","updated_at":"2025-03-21T14:35:48.129466Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-03-21T14:35:48.129466Z","id":"316caafb-af0e-4297-ac2c-57dcd8560f27","private_network_id":"2672bc5e-1565-4047-b2d6-4f484c42170d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:af44::/64","updated_at":"2025-03-21T14:35:48.129466Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-03-21T14:35:48.129466Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "568" + - "1031" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:00 GMT + - Fri, 21 Mar 2025 14:35:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,48 +48,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 180c175d-bce1-4ef4-9625-d917a851b201 + - 62f58acc-27c1-4875-809d-1300427ad2b1 status: 200 OK code: 200 - duration: 55.657083ms + duration: 690.833692ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 63 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/9ae8d1e8-4b5f-4037-abb5-6825baab0789 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 568 + content_length: 344 uncompressed: false - body: '{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"}' + body: '{"address":"163.172.157.246","created_at":"2025-03-21T14:35:48.834879Z","id":"55bb0b10-987d-4977-8bc9-93342e725248","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"246-157-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:35:48.834879Z","zone":"fr-par-1"}' headers: Content-Length: - - "568" + - "344" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:00 GMT + - Fri, 21 Mar 2025 14:35:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,50 +99,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fcf9b93f-a4be-43c0-915d-20f96f10fd6e + - 237cf016-f547-493e-bd0b-44b4112f2cf6 status: 200 OK code: 200 - duration: 25.876458ms + duration: 875.767385ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 110 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-pn-crazy-kowalevski","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null}' + 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 - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2672bc5e-1565-4047-b2d6-4f484c42170d + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1025 + content_length: 1031 uncompressed: false - body: '{"created_at":"2025-01-27T09:16:00.934889Z","dhcp_enabled":true,"id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","name":"tf-pn-crazy-kowalevski","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-27T09:16:00.934889Z","id":"4080041b-f367-4697-82ff-e1d41fc32aea","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-01-27T09:16:00.934889Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-01-27T09:16:00.934889Z","id":"61d75c9e-8912-4402-b53c-b1533fdd4a32","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:bbf5::/64","updated_at":"2025-01-27T09:16:00.934889Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-01-27T09:16:00.934889Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-03-21T14:35:48.129466Z","dhcp_enabled":true,"id":"2672bc5e-1565-4047-b2d6-4f484c42170d","name":"tf-pn-vibrant-varahamihira","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-03-21T14:35:48.129466Z","id":"d778a0ef-daa7-4136-a1a8-64e38f9d80c7","private_network_id":"2672bc5e-1565-4047-b2d6-4f484c42170d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.108.0/22","updated_at":"2025-03-21T14:35:48.129466Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-03-21T14:35:48.129466Z","id":"316caafb-af0e-4297-ac2c-57dcd8560f27","private_network_id":"2672bc5e-1565-4047-b2d6-4f484c42170d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:af44::/64","updated_at":"2025-03-21T14:35:48.129466Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-03-21T14:35:48.129466Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1025" + - "1031" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:01 GMT + - Fri, 21 Mar 2025 14:35:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -148,10 +148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 218e442a-3d49-4f5e-82fa-bed45a279ab1 + - 6560d0cf-677c-4f15-bb29-a5add59bb177 status: 200 OK code: 200 - duration: 587.028708ms + duration: 184.195146ms - id: 3 request: proto: HTTP/1.1 @@ -167,8 +167,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/55bb0b10-987d-4977-8bc9-93342e725248 method: GET response: proto: HTTP/2.0 @@ -176,20 +176,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1025 + content_length: 344 uncompressed: false - body: '{"created_at":"2025-01-27T09:16:00.934889Z","dhcp_enabled":true,"id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","name":"tf-pn-crazy-kowalevski","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-27T09:16:00.934889Z","id":"4080041b-f367-4697-82ff-e1d41fc32aea","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-01-27T09:16:00.934889Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-01-27T09:16:00.934889Z","id":"61d75c9e-8912-4402-b53c-b1533fdd4a32","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:bbf5::/64","updated_at":"2025-01-27T09:16:00.934889Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-01-27T09:16:00.934889Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"address":"163.172.157.246","created_at":"2025-03-21T14:35:48.834879Z","id":"55bb0b10-987d-4977-8bc9-93342e725248","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"246-157-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:35:48.834879Z","zone":"fr-par-1"}' headers: Content-Length: - - "1025" + - "344" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:01 GMT + - Fri, 21 Mar 2025 14:35:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,29 +197,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cd007b99-4fc9-4c2f-bca9-7f886f7e377c + - 2cbb3555-a5cc-4548-a8b2-428e41f53f00 status: 200 OK code: 200 - duration: 27.270042ms + duration: 52.298473ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 63 + content_length: 202 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[]}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"tf-pn-adoring-johnson","tags":[],"type":"VPC-GW-S","ip_id":"55bb0b10-987d-4977-8bc9-93342e725248","enable_smtp":false,"enable_bastion":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-gw/v1/zones/fr-par-1/ips + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways method: POST response: proto: HTTP/2.0 @@ -227,20 +227,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 358 + content_length: 901 uncompressed: false - body: '{"address":"51.15.142.126","created_at":"2025-01-27T09:16:01.631347Z","gateway_id":null,"id":"422c6b53-e4c8-4031-9e24-8c3141978b2c","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"126-142-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.631347Z","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:35:49.031968Z","gateway_networks":[],"id":"419c7e78-7788-413d-8206-b7cc036e64c8","ipv4":{"address":"163.172.157.246","created_at":"2025-03-21T14:35:48.834879Z","gateway_id":"419c7e78-7788-413d-8206-b7cc036e64c8","id":"55bb0b10-987d-4977-8bc9-93342e725248","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"246-157-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:35:48.834879Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-adoring-johnson","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-03-21T14:35:49.031968Z","zone":"fr-par-1"}' headers: Content-Length: - - "358" + - "901" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:01 GMT + - Fri, 21 Mar 2025 14:35:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -248,10 +248,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 63d73009-196d-4b87-99af-3bd6d13d8a96 + - f8d4aa3d-ca4a-4cdf-8c58-12a9a88968c4 status: 200 OK code: 200 - duration: 774.902417ms + duration: 75.951059ms - id: 5 request: proto: HTTP/1.1 @@ -267,8 +267,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips/422c6b53-e4c8-4031-9e24-8c3141978b2c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/419c7e78-7788-413d-8206-b7cc036e64c8 method: GET response: proto: HTTP/2.0 @@ -276,20 +276,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 358 + content_length: 919 uncompressed: false - body: '{"address":"51.15.142.126","created_at":"2025-01-27T09:16:01.631347Z","gateway_id":null,"id":"422c6b53-e4c8-4031-9e24-8c3141978b2c","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"126-142-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.631347Z","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:35:49.031968Z","gateway_networks":[],"id":"419c7e78-7788-413d-8206-b7cc036e64c8","ipv4":{"address":"163.172.157.246","created_at":"2025-03-21T14:35:48.834879Z","gateway_id":"419c7e78-7788-413d-8206-b7cc036e64c8","id":"55bb0b10-987d-4977-8bc9-93342e725248","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"246-157-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:35:48.834879Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-adoring-johnson","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-03-21T14:35:49.066795Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "358" + - "919" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:01 GMT + - Fri, 21 Mar 2025 14:35:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -297,50 +297,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c334eae-a954-42c7-b59d-59ff050396cf + - 438ea303-aece-47aa-a5e9-62a1ce13422a status: 200 OK code: 200 - duration: 29.381791ms + duration: 29.750368ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 227 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"tf-pn-happy-driscoll","tags":[],"type":"VPC-GW-S","upstream_dns_servers":[],"ip_id":"422c6b53-e4c8-4031-9e24-8c3141978b2c","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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/419c7e78-7788-413d-8206-b7cc036e64c8 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 982 + content_length: 916 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:01.759349Z","gateway_networks":[],"id":"21269389-6430-4220-9db1-55c7db74b19c","ip":{"address":"51.15.142.126","created_at":"2025-01-27T09:16:01.631347Z","gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"422c6b53-e4c8-4031-9e24-8c3141978b2c","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"126-142-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.631347Z","zone":"fr-par-1"},"ip_mobility_enabled":false,"is_legacy":false,"name":"tf-pn-happy-driscoll","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:01.759349Z","upstream_dns_servers":[],"version":null,"zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:35:49.031968Z","gateway_networks":[],"id":"419c7e78-7788-413d-8206-b7cc036e64c8","ipv4":{"address":"163.172.157.246","created_at":"2025-03-21T14:35:48.834879Z","gateway_id":"419c7e78-7788-413d-8206-b7cc036e64c8","id":"55bb0b10-987d-4977-8bc9-93342e725248","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"246-157-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:35:48.834879Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-adoring-johnson","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-03-21T14:35:53.919339Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "982" + - "916" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:01 GMT + - Fri, 21 Mar 2025 14:35:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -348,10 +346,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 00930227-41be-41d5-9358-746c8c8e6ad1 + - 3a6cde06-7119-4332-868a-e72867615ffd status: 200 OK code: 200 - duration: 86.900334ms + duration: 75.47778ms - id: 7 request: proto: HTTP/1.1 @@ -367,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-gw/v1/zones/fr-par-1/gateways/21269389-6430-4220-9db1-55c7db74b19c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/419c7e78-7788-413d-8206-b7cc036e64c8 method: GET response: proto: HTTP/2.0 @@ -376,20 +374,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 984 + content_length: 916 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:01.759349Z","gateway_networks":[],"id":"21269389-6430-4220-9db1-55c7db74b19c","ip":{"address":"51.15.142.126","created_at":"2025-01-27T09:16:01.631347Z","gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"422c6b53-e4c8-4031-9e24-8c3141978b2c","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"126-142-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.631347Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"tf-pn-happy-driscoll","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:01.800703Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:35:49.031968Z","gateway_networks":[],"id":"419c7e78-7788-413d-8206-b7cc036e64c8","ipv4":{"address":"163.172.157.246","created_at":"2025-03-21T14:35:48.834879Z","gateway_id":"419c7e78-7788-413d-8206-b7cc036e64c8","id":"55bb0b10-987d-4977-8bc9-93342e725248","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"246-157-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:35:48.834879Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-adoring-johnson","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-03-21T14:35:53.919339Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "984" + - "916" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:01 GMT + - Fri, 21 Mar 2025 14:35:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -397,10 +395,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f5851b56-8f6a-445f-890a-3a6dc4b00e57 + - 4624f89b-5375-4ad4-ac8a-1b7b37895390 status: 200 OK code: 200 - duration: 41.843708ms + duration: 25.061363ms - id: 8 request: proto: HTTP/1.1 @@ -416,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-gw/v1/zones/fr-par-1/gateways/21269389-6430-4220-9db1-55c7db74b19c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/419c7e78-7788-413d-8206-b7cc036e64c8 method: GET response: proto: HTTP/2.0 @@ -425,20 +423,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 985 + content_length: 916 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:01.759349Z","gateway_networks":[],"id":"21269389-6430-4220-9db1-55c7db74b19c","ip":{"address":"51.15.142.126","created_at":"2025-01-27T09:16:01.631347Z","gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"422c6b53-e4c8-4031-9e24-8c3141978b2c","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"126-142-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.631347Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"tf-pn-happy-driscoll","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:06.811326Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:35:49.031968Z","gateway_networks":[],"id":"419c7e78-7788-413d-8206-b7cc036e64c8","ipv4":{"address":"163.172.157.246","created_at":"2025-03-21T14:35:48.834879Z","gateway_id":"419c7e78-7788-413d-8206-b7cc036e64c8","id":"55bb0b10-987d-4977-8bc9-93342e725248","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"246-157-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:35:48.834879Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-adoring-johnson","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-03-21T14:35:53.919339Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "985" + - "916" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:06 GMT + - Fri, 21 Mar 2025 14:35:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -446,48 +444,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 077756fb-730d-482b-a479-6fb3377be3ef + - 58ffd5bc-9361-4e32-98af-c99f15b635db status: 200 OK code: 200 - duration: 27.11775ms + duration: 29.312906ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 165 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"gateway_id":"419c7e78-7788-413d-8206-b7cc036e64c8","private_network_id":"2672bc5e-1565-4047-b2d6-4f484c42170d","enable_masquerade":true,"push_default_route":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-gw/v1/zones/fr-par-1/gateways/21269389-6430-4220-9db1-55c7db74b19c - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-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: 981 + content_length: 385 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:01.759349Z","gateway_networks":[],"id":"21269389-6430-4220-9db1-55c7db74b19c","ip":{"address":"51.15.142.126","created_at":"2025-01-27T09:16:01.631347Z","gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"422c6b53-e4c8-4031-9e24-8c3141978b2c","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"126-142-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.631347Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"tf-pn-happy-driscoll","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:06.908724Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-21T14:35:55.242457Z","gateway_id":"419c7e78-7788-413d-8206-b7cc036e64c8","id":"c27a5c57-d86c-442f-baf5-ae3e84e1ccd6","ipam_ip_id":"5662e6bb-58aa-4d72-8983-899388825d2e","masquerade_enabled":true,"private_network_id":"2672bc5e-1565-4047-b2d6-4f484c42170d","push_default_route":false,"status":"created","updated_at":"2025-03-21T14:35:55.242457Z","zone":"fr-par-1"}' headers: Content-Length: - - "981" + - "385" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:11 GMT + - Fri, 21 Mar 2025 14:35:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -495,10 +495,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 83b170a3-3328-4a10-a073-17036c424da5 + - 40e7b63c-c766-453f-9c7e-fca5b91c9429 status: 200 OK code: 200 - duration: 28.919292ms + duration: 1.124462233s - id: 10 request: proto: HTTP/1.1 @@ -514,8 +514,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/21269389-6430-4220-9db1-55c7db74b19c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/419c7e78-7788-413d-8206-b7cc036e64c8 method: GET response: proto: HTTP/2.0 @@ -523,20 +523,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 981 + content_length: 1305 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:01.759349Z","gateway_networks":[],"id":"21269389-6430-4220-9db1-55c7db74b19c","ip":{"address":"51.15.142.126","created_at":"2025-01-27T09:16:01.631347Z","gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"422c6b53-e4c8-4031-9e24-8c3141978b2c","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"126-142-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.631347Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"tf-pn-happy-driscoll","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:06.908724Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:35:49.031968Z","gateway_networks":[{"created_at":"2025-03-21T14:35:55.242457Z","gateway_id":"419c7e78-7788-413d-8206-b7cc036e64c8","id":"c27a5c57-d86c-442f-baf5-ae3e84e1ccd6","ipam_ip_id":"5662e6bb-58aa-4d72-8983-899388825d2e","masquerade_enabled":true,"private_network_id":"2672bc5e-1565-4047-b2d6-4f484c42170d","push_default_route":false,"status":"created","updated_at":"2025-03-21T14:35:55.242457Z","zone":"fr-par-1"}],"id":"419c7e78-7788-413d-8206-b7cc036e64c8","ipv4":{"address":"163.172.157.246","created_at":"2025-03-21T14:35:48.834879Z","gateway_id":"419c7e78-7788-413d-8206-b7cc036e64c8","id":"55bb0b10-987d-4977-8bc9-93342e725248","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"246-157-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:35:48.834879Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-adoring-johnson","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-03-21T14:35:55.349279Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "981" + - "1305" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:11 GMT + - Fri, 21 Mar 2025 14:35:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -544,10 +544,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8fc756be-9ec8-4023-b497-3dec14392092 + - 3fb59156-b0cf-4f8f-904b-38c41953a294 status: 200 OK code: 200 - duration: 29.85425ms + duration: 29.871018ms - id: 11 request: proto: HTTP/1.1 @@ -563,8 +563,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/21269389-6430-4220-9db1-55c7db74b19c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/419c7e78-7788-413d-8206-b7cc036e64c8 method: GET response: proto: HTTP/2.0 @@ -572,20 +572,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 981 + content_length: 1305 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:01.759349Z","gateway_networks":[],"id":"21269389-6430-4220-9db1-55c7db74b19c","ip":{"address":"51.15.142.126","created_at":"2025-01-27T09:16:01.631347Z","gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"422c6b53-e4c8-4031-9e24-8c3141978b2c","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"126-142-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.631347Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"tf-pn-happy-driscoll","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:06.908724Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:35:49.031968Z","gateway_networks":[{"created_at":"2025-03-21T14:35:55.242457Z","gateway_id":"419c7e78-7788-413d-8206-b7cc036e64c8","id":"c27a5c57-d86c-442f-baf5-ae3e84e1ccd6","ipam_ip_id":"5662e6bb-58aa-4d72-8983-899388825d2e","masquerade_enabled":true,"private_network_id":"2672bc5e-1565-4047-b2d6-4f484c42170d","push_default_route":false,"status":"created","updated_at":"2025-03-21T14:35:55.242457Z","zone":"fr-par-1"}],"id":"419c7e78-7788-413d-8206-b7cc036e64c8","ipv4":{"address":"163.172.157.246","created_at":"2025-03-21T14:35:48.834879Z","gateway_id":"419c7e78-7788-413d-8206-b7cc036e64c8","id":"55bb0b10-987d-4977-8bc9-93342e725248","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"246-157-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:35:48.834879Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-adoring-johnson","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-03-21T14:35:55.349279Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "981" + - "1305" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:11 GMT + - Fri, 21 Mar 2025 14:36:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -593,50 +593,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b7f67c10-841e-4dac-9fe9-566ab56850e3 + - b6aec779-3866-4e1b-9b7a-ef8f423d4a20 status: 200 OK code: 200 - duration: 30.075666ms + duration: 32.297638ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 206 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","enable_masquerade":true,"enable_dhcp":true,"dhcp_id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789"}' + 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-gw/v1/zones/fr-par-1/gateway-networks - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/419c7e78-7788-413d-8206-b7cc036e64c8 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 953 + content_length: 1343 uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":null,"private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"created","updated_at":"2025-01-27T09:16:14.341857Z","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:35:49.031968Z","gateway_networks":[{"created_at":"2025-03-21T14:35:55.242457Z","gateway_id":"419c7e78-7788-413d-8206-b7cc036e64c8","id":"c27a5c57-d86c-442f-baf5-ae3e84e1ccd6","ipam_ip_id":"5662e6bb-58aa-4d72-8983-899388825d2e","mac_address":"02:00:00:11:93:78","masquerade_enabled":true,"private_network_id":"2672bc5e-1565-4047-b2d6-4f484c42170d","push_default_route":false,"status":"configuring","updated_at":"2025-03-21T14:36:01.058749Z","zone":"fr-par-1"}],"id":"419c7e78-7788-413d-8206-b7cc036e64c8","ipv4":{"address":"163.172.157.246","created_at":"2025-03-21T14:35:48.834879Z","gateway_id":"419c7e78-7788-413d-8206-b7cc036e64c8","id":"55bb0b10-987d-4977-8bc9-93342e725248","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"246-157-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:35:48.834879Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-adoring-johnson","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-03-21T14:35:55.349279Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "953" + - "1343" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:14 GMT + - Fri, 21 Mar 2025 14:36:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -644,10 +642,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2badc44b-9082-49c5-8718-a6a0f8db4a07 + - 0f927a17-f7db-4dc6-8502-add52583ca6c status: 200 OK code: 200 - duration: 2.50461025s + duration: 31.425511ms - id: 13 request: proto: HTTP/1.1 @@ -663,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-gw/v1/zones/fr-par-1/gateways/21269389-6430-4220-9db1-55c7db74b19c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/419c7e78-7788-413d-8206-b7cc036e64c8 method: GET response: proto: HTTP/2.0 @@ -672,20 +670,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1937 + content_length: 1333 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:01.759349Z","gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":null,"private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"created","updated_at":"2025-01-27T09:16:14.341857Z","zone":"fr-par-1"}],"id":"21269389-6430-4220-9db1-55c7db74b19c","ip":{"address":"51.15.142.126","created_at":"2025-01-27T09:16:01.631347Z","gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"422c6b53-e4c8-4031-9e24-8c3141978b2c","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"126-142-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.631347Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"tf-pn-happy-driscoll","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:14.478951Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:35:49.031968Z","gateway_networks":[{"created_at":"2025-03-21T14:35:55.242457Z","gateway_id":"419c7e78-7788-413d-8206-b7cc036e64c8","id":"c27a5c57-d86c-442f-baf5-ae3e84e1ccd6","ipam_ip_id":"5662e6bb-58aa-4d72-8983-899388825d2e","mac_address":"02:00:00:11:93:78","masquerade_enabled":true,"private_network_id":"2672bc5e-1565-4047-b2d6-4f484c42170d","push_default_route":false,"status":"ready","updated_at":"2025-03-21T14:36:05.650288Z","zone":"fr-par-1"}],"id":"419c7e78-7788-413d-8206-b7cc036e64c8","ipv4":{"address":"163.172.157.246","created_at":"2025-03-21T14:35:48.834879Z","gateway_id":"419c7e78-7788-413d-8206-b7cc036e64c8","id":"55bb0b10-987d-4977-8bc9-93342e725248","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"246-157-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:35:48.834879Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-adoring-johnson","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-03-21T14:36:05.885020Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "1937" + - "1333" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:14 GMT + - Fri, 21 Mar 2025 14:36:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -693,10 +691,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d9883ad4-45ac-4b3c-b6a0-01f194589be9 + - 475c4231-cf8b-4b09-b874-3b574ed17a3f status: 200 OK code: 200 - duration: 43.236291ms + duration: 49.245919ms - id: 14 request: proto: HTTP/1.1 @@ -712,8 +710,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/21269389-6430-4220-9db1-55c7db74b19c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/c27a5c57-d86c-442f-baf5-ae3e84e1ccd6 method: GET response: proto: HTTP/2.0 @@ -721,20 +719,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1937 + content_length: 417 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:01.759349Z","gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":null,"private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"created","updated_at":"2025-01-27T09:16:14.341857Z","zone":"fr-par-1"}],"id":"21269389-6430-4220-9db1-55c7db74b19c","ip":{"address":"51.15.142.126","created_at":"2025-01-27T09:16:01.631347Z","gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"422c6b53-e4c8-4031-9e24-8c3141978b2c","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"126-142-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.631347Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"tf-pn-happy-driscoll","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:14.478951Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-21T14:35:55.242457Z","gateway_id":"419c7e78-7788-413d-8206-b7cc036e64c8","id":"c27a5c57-d86c-442f-baf5-ae3e84e1ccd6","ipam_ip_id":"5662e6bb-58aa-4d72-8983-899388825d2e","mac_address":"02:00:00:11:93:78","masquerade_enabled":true,"private_network_id":"2672bc5e-1565-4047-b2d6-4f484c42170d","push_default_route":false,"status":"ready","updated_at":"2025-03-21T14:36:05.650288Z","zone":"fr-par-1"}' headers: Content-Length: - - "1937" + - "417" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:19 GMT + - Fri, 21 Mar 2025 14:36:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -742,10 +740,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e5b19b54-2b6e-467d-b2d6-a0809c322d88 + - 39f8c415-1c6f-496e-8d0a-ff002bf8e879 status: 200 OK code: 200 - duration: 28.318875ms + duration: 52.114272ms - id: 15 request: proto: HTTP/1.1 @@ -761,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-gw/v1/zones/fr-par-1/gateways/21269389-6430-4220-9db1-55c7db74b19c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/c27a5c57-d86c-442f-baf5-ae3e84e1ccd6 method: GET response: proto: HTTP/2.0 @@ -770,20 +768,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1946 + content_length: 417 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:01.759349Z","gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":"02:00:00:17:61:04","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"ready","updated_at":"2025-01-27T09:16:23.155373Z","zone":"fr-par-1"}],"id":"21269389-6430-4220-9db1-55c7db74b19c","ip":{"address":"51.15.142.126","created_at":"2025-01-27T09:16:01.631347Z","gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"422c6b53-e4c8-4031-9e24-8c3141978b2c","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"126-142-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.631347Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"tf-pn-happy-driscoll","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:23.307652Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-21T14:35:55.242457Z","gateway_id":"419c7e78-7788-413d-8206-b7cc036e64c8","id":"c27a5c57-d86c-442f-baf5-ae3e84e1ccd6","ipam_ip_id":"5662e6bb-58aa-4d72-8983-899388825d2e","mac_address":"02:00:00:11:93:78","masquerade_enabled":true,"private_network_id":"2672bc5e-1565-4047-b2d6-4f484c42170d","push_default_route":false,"status":"ready","updated_at":"2025-03-21T14:36:05.650288Z","zone":"fr-par-1"}' headers: Content-Length: - - "1946" + - "417" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:24 GMT + - Fri, 21 Mar 2025 14:36:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -791,10 +789,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ea2a1465-651a-4e64-be23-60e7c8fa9e34 + - 185f05af-0123-4239-9855-7fa905886419 status: 200 OK code: 200 - duration: 30.118625ms + duration: 55.63845ms - id: 16 request: proto: HTTP/1.1 @@ -810,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-gw/v1/zones/fr-par-1/gateway-networks/b73f9917-559f-4c03-a154-90fd9be1f97d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/55bb0b10-987d-4977-8bc9-93342e725248 method: GET response: proto: HTTP/2.0 @@ -819,20 +817,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 966 + content_length: 396 uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":"02:00:00:17:61:04","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"ready","updated_at":"2025-01-27T09:16:23.155373Z","zone":"fr-par-1"}' + body: '{"address":"163.172.157.246","created_at":"2025-03-21T14:35:48.834879Z","gateway_id":"419c7e78-7788-413d-8206-b7cc036e64c8","id":"55bb0b10-987d-4977-8bc9-93342e725248","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"246-157-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:35:48.834879Z","zone":"fr-par-1"}' headers: Content-Length: - - "966" + - "396" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:24 GMT + - Fri, 21 Mar 2025 14:36:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -840,10 +838,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 93fac134-a8d4-4d50-8455-d7664fbaec5a + - 9dd837cb-64ce-4704-9b79-f4ee27e5d91c status: 200 OK code: 200 - duration: 50.874916ms + duration: 23.795357ms - id: 17 request: proto: HTTP/1.1 @@ -859,8 +857,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/b73f9917-559f-4c03-a154-90fd9be1f97d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2672bc5e-1565-4047-b2d6-4f484c42170d method: GET response: proto: HTTP/2.0 @@ -868,20 +866,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 966 + content_length: 1031 uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":"02:00:00:17:61:04","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"ready","updated_at":"2025-01-27T09:16:23.155373Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-21T14:35:48.129466Z","dhcp_enabled":true,"id":"2672bc5e-1565-4047-b2d6-4f484c42170d","name":"tf-pn-vibrant-varahamihira","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-03-21T14:35:48.129466Z","id":"d778a0ef-daa7-4136-a1a8-64e38f9d80c7","private_network_id":"2672bc5e-1565-4047-b2d6-4f484c42170d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.108.0/22","updated_at":"2025-03-21T14:35:48.129466Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-03-21T14:35:48.129466Z","id":"316caafb-af0e-4297-ac2c-57dcd8560f27","private_network_id":"2672bc5e-1565-4047-b2d6-4f484c42170d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:af44::/64","updated_at":"2025-03-21T14:35:48.129466Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-03-21T14:36:01.742014Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "966" + - "1031" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:24 GMT + - Fri, 21 Mar 2025 14:36:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -889,10 +887,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac113d36-8577-485a-9d56-4c2cee959532 + - a59b4898-0684-4af9-bd09-72b9527f591f status: 200 OK code: 200 - duration: 48.159667ms + duration: 26.299553ms - id: 18 request: proto: HTTP/1.1 @@ -908,8 +906,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/21269389-6430-4220-9db1-55c7db74b19c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/419c7e78-7788-413d-8206-b7cc036e64c8 method: GET response: proto: HTTP/2.0 @@ -917,20 +915,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1946 + content_length: 1333 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:01.759349Z","gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":"02:00:00:17:61:04","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"ready","updated_at":"2025-01-27T09:16:23.155373Z","zone":"fr-par-1"}],"id":"21269389-6430-4220-9db1-55c7db74b19c","ip":{"address":"51.15.142.126","created_at":"2025-01-27T09:16:01.631347Z","gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"422c6b53-e4c8-4031-9e24-8c3141978b2c","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"126-142-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.631347Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"tf-pn-happy-driscoll","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:23.307652Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:35:49.031968Z","gateway_networks":[{"created_at":"2025-03-21T14:35:55.242457Z","gateway_id":"419c7e78-7788-413d-8206-b7cc036e64c8","id":"c27a5c57-d86c-442f-baf5-ae3e84e1ccd6","ipam_ip_id":"5662e6bb-58aa-4d72-8983-899388825d2e","mac_address":"02:00:00:11:93:78","masquerade_enabled":true,"private_network_id":"2672bc5e-1565-4047-b2d6-4f484c42170d","push_default_route":false,"status":"ready","updated_at":"2025-03-21T14:36:05.650288Z","zone":"fr-par-1"}],"id":"419c7e78-7788-413d-8206-b7cc036e64c8","ipv4":{"address":"163.172.157.246","created_at":"2025-03-21T14:35:48.834879Z","gateway_id":"419c7e78-7788-413d-8206-b7cc036e64c8","id":"55bb0b10-987d-4977-8bc9-93342e725248","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"246-157-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:35:48.834879Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-adoring-johnson","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-03-21T14:36:05.885020Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "1946" + - "1333" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:24 GMT + - Fri, 21 Mar 2025 14:36:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -938,10 +936,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cd78fd61-fdbf-4cad-821a-26bc6c948637 + - 85790759-041e-442a-99fa-1da2a50671ee status: 200 OK code: 200 - duration: 46.189375ms + duration: 36.446043ms - id: 19 request: proto: HTTP/1.1 @@ -957,8 +955,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/b73f9917-559f-4c03-a154-90fd9be1f97d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/c27a5c57-d86c-442f-baf5-ae3e84e1ccd6 method: GET response: proto: HTTP/2.0 @@ -966,20 +964,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 966 + content_length: 417 uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":"02:00:00:17:61:04","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"ready","updated_at":"2025-01-27T09:16:23.155373Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-21T14:35:55.242457Z","gateway_id":"419c7e78-7788-413d-8206-b7cc036e64c8","id":"c27a5c57-d86c-442f-baf5-ae3e84e1ccd6","ipam_ip_id":"5662e6bb-58aa-4d72-8983-899388825d2e","mac_address":"02:00:00:11:93:78","masquerade_enabled":true,"private_network_id":"2672bc5e-1565-4047-b2d6-4f484c42170d","push_default_route":false,"status":"ready","updated_at":"2025-03-21T14:36:05.650288Z","zone":"fr-par-1"}' headers: Content-Length: - - "966" + - "417" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:24 GMT + - Fri, 21 Mar 2025 14:36:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -987,10 +985,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65fb88c6-ef45-4882-9e0c-e9ead48aa9e5 + - 7ab36ec0-1d1e-461c-82b5-9069fde90f27 status: 200 OK code: 200 - duration: 46.449333ms + duration: 44.75084ms - id: 20 request: proto: HTTP/1.1 @@ -1006,8 +1004,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/9ae8d1e8-4b5f-4037-abb5-6825baab0789 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/55bb0b10-987d-4977-8bc9-93342e725248 method: GET response: proto: HTTP/2.0 @@ -1015,20 +1013,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 568 + content_length: 396 uncompressed: false - body: '{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"}' + body: '{"address":"163.172.157.246","created_at":"2025-03-21T14:35:48.834879Z","gateway_id":"419c7e78-7788-413d-8206-b7cc036e64c8","id":"55bb0b10-987d-4977-8bc9-93342e725248","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"246-157-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:35:48.834879Z","zone":"fr-par-1"}' headers: Content-Length: - - "568" + - "396" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:25 GMT + - Fri, 21 Mar 2025 14:36:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1036,10 +1034,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1a7c6b68-1c8c-4654-84c5-f6ed2b299db7 + - 9d881eef-d838-4eb2-8213-e7ec1ad4d7b3 status: 200 OK code: 200 - duration: 23.025708ms + duration: 21.687968ms - id: 21 request: proto: HTTP/1.1 @@ -1055,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-gw/v1/zones/fr-par-1/ips/422c6b53-e4c8-4031-9e24-8c3141978b2c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2672bc5e-1565-4047-b2d6-4f484c42170d method: GET response: proto: HTTP/2.0 @@ -1064,20 +1062,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 392 + content_length: 1031 uncompressed: false - body: '{"address":"51.15.142.126","created_at":"2025-01-27T09:16:01.631347Z","gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"422c6b53-e4c8-4031-9e24-8c3141978b2c","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"126-142-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.631347Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-21T14:35:48.129466Z","dhcp_enabled":true,"id":"2672bc5e-1565-4047-b2d6-4f484c42170d","name":"tf-pn-vibrant-varahamihira","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-03-21T14:35:48.129466Z","id":"d778a0ef-daa7-4136-a1a8-64e38f9d80c7","private_network_id":"2672bc5e-1565-4047-b2d6-4f484c42170d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.108.0/22","updated_at":"2025-03-21T14:35:48.129466Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-03-21T14:35:48.129466Z","id":"316caafb-af0e-4297-ac2c-57dcd8560f27","private_network_id":"2672bc5e-1565-4047-b2d6-4f484c42170d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:af44::/64","updated_at":"2025-03-21T14:35:48.129466Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-03-21T14:36:01.742014Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "392" + - "1031" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:25 GMT + - Fri, 21 Mar 2025 14:36:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1085,10 +1083,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2558dece-5e3b-477c-acb4-90131a5491d3 + - d3d704fb-fcb0-4334-8611-c908dce13d12 status: 200 OK code: 200 - duration: 26.741792ms + duration: 24.961223ms - id: 22 request: proto: HTTP/1.1 @@ -1104,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/private-networks/fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/419c7e78-7788-413d-8206-b7cc036e64c8 method: GET response: proto: HTTP/2.0 @@ -1113,20 +1111,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1026 + content_length: 1333 uncompressed: false - body: '{"created_at":"2025-01-27T09:16:00.934889Z","dhcp_enabled":true,"id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","name":"tf-pn-crazy-kowalevski","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-27T09:16:00.934889Z","id":"4080041b-f367-4697-82ff-e1d41fc32aea","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:12.212213Z","vpc_id":"61a53743-8b16-4c41-8c27-c2271b31cbec"},{"created_at":"2025-01-27T09:16:00.934889Z","id":"61d75c9e-8912-4402-b53c-b1533fdd4a32","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:bbf5::/64","updated_at":"2025-01-27T09:16:12.216823Z","vpc_id":"61a53743-8b16-4c41-8c27-c2271b31cbec"}],"tags":[],"updated_at":"2025-01-27T09:16:20.918931Z","vpc_id":"61a53743-8b16-4c41-8c27-c2271b31cbec"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:35:49.031968Z","gateway_networks":[{"created_at":"2025-03-21T14:35:55.242457Z","gateway_id":"419c7e78-7788-413d-8206-b7cc036e64c8","id":"c27a5c57-d86c-442f-baf5-ae3e84e1ccd6","ipam_ip_id":"5662e6bb-58aa-4d72-8983-899388825d2e","mac_address":"02:00:00:11:93:78","masquerade_enabled":true,"private_network_id":"2672bc5e-1565-4047-b2d6-4f484c42170d","push_default_route":false,"status":"ready","updated_at":"2025-03-21T14:36:05.650288Z","zone":"fr-par-1"}],"id":"419c7e78-7788-413d-8206-b7cc036e64c8","ipv4":{"address":"163.172.157.246","created_at":"2025-03-21T14:35:48.834879Z","gateway_id":"419c7e78-7788-413d-8206-b7cc036e64c8","id":"55bb0b10-987d-4977-8bc9-93342e725248","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"246-157-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:35:48.834879Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-adoring-johnson","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-03-21T14:36:05.885020Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "1026" + - "1333" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:25 GMT + - Fri, 21 Mar 2025 14:36:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1134,10 +1132,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1adf131f-4c2f-4aac-8389-96d1e403269b + - 9c10a8a7-a948-485d-85e3-38b243ad4c90 status: 200 OK code: 200 - duration: 24.303167ms + duration: 27.597193ms - id: 23 request: proto: HTTP/1.1 @@ -1153,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-gw/v1/zones/fr-par-1/gateways/21269389-6430-4220-9db1-55c7db74b19c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks?gateway_ids=419c7e78-7788-413d-8206-b7cc036e64c8&order_by=created_at_asc&private_network_ids=2672bc5e-1565-4047-b2d6-4f484c42170d method: GET response: proto: HTTP/2.0 @@ -1162,20 +1160,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1946 + content_length: 456 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:01.759349Z","gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":"02:00:00:17:61:04","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"ready","updated_at":"2025-01-27T09:16:23.155373Z","zone":"fr-par-1"}],"id":"21269389-6430-4220-9db1-55c7db74b19c","ip":{"address":"51.15.142.126","created_at":"2025-01-27T09:16:01.631347Z","gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"422c6b53-e4c8-4031-9e24-8c3141978b2c","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"126-142-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.631347Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"tf-pn-happy-driscoll","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:23.307652Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"gateway_networks":[{"created_at":"2025-03-21T14:35:55.242457Z","gateway_id":"419c7e78-7788-413d-8206-b7cc036e64c8","id":"c27a5c57-d86c-442f-baf5-ae3e84e1ccd6","ipam_ip_id":"5662e6bb-58aa-4d72-8983-899388825d2e","mac_address":"02:00:00:11:93:78","masquerade_enabled":true,"private_network_id":"2672bc5e-1565-4047-b2d6-4f484c42170d","push_default_route":false,"status":"ready","updated_at":"2025-03-21T14:36:05.650288Z","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "1946" + - "456" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:26 GMT + - Fri, 21 Mar 2025 14:36:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1183,10 +1181,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 659099d5-82d1-4357-a990-9bc34118eea0 + - efc31d26-e41d-46bd-b1f1-59c3d2cf3690 status: 200 OK code: 200 - duration: 27.085208ms + duration: 68.541968ms - id: 24 request: proto: HTTP/1.1 @@ -1202,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-gw/v1/zones/fr-par-1/gateway-networks/b73f9917-559f-4c03-a154-90fd9be1f97d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/c27a5c57-d86c-442f-baf5-ae3e84e1ccd6 method: GET response: proto: HTTP/2.0 @@ -1211,20 +1209,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 966 + content_length: 417 uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":"02:00:00:17:61:04","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"ready","updated_at":"2025-01-27T09:16:23.155373Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-21T14:35:55.242457Z","gateway_id":"419c7e78-7788-413d-8206-b7cc036e64c8","id":"c27a5c57-d86c-442f-baf5-ae3e84e1ccd6","ipam_ip_id":"5662e6bb-58aa-4d72-8983-899388825d2e","mac_address":"02:00:00:11:93:78","masquerade_enabled":true,"private_network_id":"2672bc5e-1565-4047-b2d6-4f484c42170d","push_default_route":false,"status":"ready","updated_at":"2025-03-21T14:36:05.650288Z","zone":"fr-par-1"}' headers: Content-Length: - - "966" + - "417" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:26 GMT + - Fri, 21 Mar 2025 14:36:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1232,10 +1230,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a92fd339-b0ff-42f9-b8e8-543df566d1e0 + - 54c773cc-a249-4bc6-a706-11a8708394ac status: 200 OK code: 200 - duration: 42.535625ms + duration: 70.235578ms - id: 25 request: proto: HTTP/1.1 @@ -1251,8 +1249,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-gw/v1/zones/fr-par-1/gateways/21269389-6430-4220-9db1-55c7db74b19c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/c27a5c57-d86c-442f-baf5-ae3e84e1ccd6 method: GET response: proto: HTTP/2.0 @@ -1260,20 +1258,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1946 + content_length: 417 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:01.759349Z","gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":"02:00:00:17:61:04","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"ready","updated_at":"2025-01-27T09:16:23.155373Z","zone":"fr-par-1"}],"id":"21269389-6430-4220-9db1-55c7db74b19c","ip":{"address":"51.15.142.126","created_at":"2025-01-27T09:16:01.631347Z","gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"422c6b53-e4c8-4031-9e24-8c3141978b2c","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"126-142-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.631347Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"tf-pn-happy-driscoll","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:23.307652Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-21T14:35:55.242457Z","gateway_id":"419c7e78-7788-413d-8206-b7cc036e64c8","id":"c27a5c57-d86c-442f-baf5-ae3e84e1ccd6","ipam_ip_id":"5662e6bb-58aa-4d72-8983-899388825d2e","mac_address":"02:00:00:11:93:78","masquerade_enabled":true,"private_network_id":"2672bc5e-1565-4047-b2d6-4f484c42170d","push_default_route":false,"status":"ready","updated_at":"2025-03-21T14:36:05.650288Z","zone":"fr-par-1"}' headers: Content-Length: - - "1946" + - "417" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:26 GMT + - Fri, 21 Mar 2025 14:36:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1281,10 +1279,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b88160d-dc8c-4cab-bbc2-2bf1a3e2c30d + - 253da4d5-7b61-4bcd-a8e9-4517cd92a830 status: 200 OK code: 200 - duration: 25.458792ms + duration: 59.697977ms - id: 26 request: proto: HTTP/1.1 @@ -1300,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-gw/v1/zones/fr-par-1/gateway-networks/b73f9917-559f-4c03-a154-90fd9be1f97d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/c27a5c57-d86c-442f-baf5-ae3e84e1ccd6 method: GET response: proto: HTTP/2.0 @@ -1309,20 +1307,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 966 + content_length: 417 uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":"02:00:00:17:61:04","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"ready","updated_at":"2025-01-27T09:16:23.155373Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-21T14:35:55.242457Z","gateway_id":"419c7e78-7788-413d-8206-b7cc036e64c8","id":"c27a5c57-d86c-442f-baf5-ae3e84e1ccd6","ipam_ip_id":"5662e6bb-58aa-4d72-8983-899388825d2e","mac_address":"02:00:00:11:93:78","masquerade_enabled":true,"private_network_id":"2672bc5e-1565-4047-b2d6-4f484c42170d","push_default_route":false,"status":"ready","updated_at":"2025-03-21T14:36:05.650288Z","zone":"fr-par-1"}' headers: Content-Length: - - "966" + - "417" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:26 GMT + - Fri, 21 Mar 2025 14:36:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1330,10 +1328,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 33e1db94-e257-4790-bfe8-004df6e60eb2 + - 99dc30d2-7310-41c2-950b-8adb54fb2171 status: 200 OK code: 200 - duration: 46.010958ms + duration: 48.5918ms - id: 27 request: proto: HTTP/1.1 @@ -1349,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-gw/v1/zones/fr-par-1/dhcps/9ae8d1e8-4b5f-4037-abb5-6825baab0789 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks?gateway_ids=419c7e78-7788-413d-8206-b7cc036e64c8&order_by=created_at_asc&private_network_ids=2672bc5e-1565-4047-b2d6-4f484c42170d method: GET response: proto: HTTP/2.0 @@ -1358,20 +1356,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 568 + content_length: 456 uncompressed: false - body: '{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"}' + body: '{"gateway_networks":[{"created_at":"2025-03-21T14:35:55.242457Z","gateway_id":"419c7e78-7788-413d-8206-b7cc036e64c8","id":"c27a5c57-d86c-442f-baf5-ae3e84e1ccd6","ipam_ip_id":"5662e6bb-58aa-4d72-8983-899388825d2e","mac_address":"02:00:00:11:93:78","masquerade_enabled":true,"private_network_id":"2672bc5e-1565-4047-b2d6-4f484c42170d","push_default_route":false,"status":"ready","updated_at":"2025-03-21T14:36:05.650288Z","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "568" + - "456" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:27 GMT + - Fri, 21 Mar 2025 14:36:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1379,10 +1377,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b2a06ed5-7bc9-43af-a2fc-bfa42410f9fc + - 344a7f45-f30c-4376-a9ce-4ab0ad9b50cd status: 200 OK code: 200 - duration: 22.194042ms + duration: 44.643469ms - id: 28 request: proto: HTTP/1.1 @@ -1398,8 +1396,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-gw/v1/zones/fr-par-1/ips/422c6b53-e4c8-4031-9e24-8c3141978b2c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/c27a5c57-d86c-442f-baf5-ae3e84e1ccd6 method: GET response: proto: HTTP/2.0 @@ -1407,20 +1405,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 392 + content_length: 417 uncompressed: false - body: '{"address":"51.15.142.126","created_at":"2025-01-27T09:16:01.631347Z","gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"422c6b53-e4c8-4031-9e24-8c3141978b2c","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"126-142-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.631347Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-21T14:35:55.242457Z","gateway_id":"419c7e78-7788-413d-8206-b7cc036e64c8","id":"c27a5c57-d86c-442f-baf5-ae3e84e1ccd6","ipam_ip_id":"5662e6bb-58aa-4d72-8983-899388825d2e","mac_address":"02:00:00:11:93:78","masquerade_enabled":true,"private_network_id":"2672bc5e-1565-4047-b2d6-4f484c42170d","push_default_route":false,"status":"ready","updated_at":"2025-03-21T14:36:05.650288Z","zone":"fr-par-1"}' headers: Content-Length: - - "392" + - "417" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:27 GMT + - Fri, 21 Mar 2025 14:36:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1428,10 +1426,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ea36fa7a-e60a-499c-9860-ce257d634d3f + - d578a89e-b3ba-4bee-9c0c-64a173dc39f6 status: 200 OK code: 200 - duration: 29.603958ms + duration: 50.296228ms - id: 29 request: proto: HTTP/1.1 @@ -1447,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/private-networks/fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/c27a5c57-d86c-442f-baf5-ae3e84e1ccd6 method: GET response: proto: HTTP/2.0 @@ -1456,20 +1454,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1026 + content_length: 417 uncompressed: false - body: '{"created_at":"2025-01-27T09:16:00.934889Z","dhcp_enabled":true,"id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","name":"tf-pn-crazy-kowalevski","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-27T09:16:00.934889Z","id":"4080041b-f367-4697-82ff-e1d41fc32aea","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:12.212213Z","vpc_id":"61a53743-8b16-4c41-8c27-c2271b31cbec"},{"created_at":"2025-01-27T09:16:00.934889Z","id":"61d75c9e-8912-4402-b53c-b1533fdd4a32","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:bbf5::/64","updated_at":"2025-01-27T09:16:12.216823Z","vpc_id":"61a53743-8b16-4c41-8c27-c2271b31cbec"}],"tags":[],"updated_at":"2025-01-27T09:16:20.918931Z","vpc_id":"61a53743-8b16-4c41-8c27-c2271b31cbec"}' + body: '{"created_at":"2025-03-21T14:35:55.242457Z","gateway_id":"419c7e78-7788-413d-8206-b7cc036e64c8","id":"c27a5c57-d86c-442f-baf5-ae3e84e1ccd6","ipam_ip_id":"5662e6bb-58aa-4d72-8983-899388825d2e","mac_address":"02:00:00:11:93:78","masquerade_enabled":true,"private_network_id":"2672bc5e-1565-4047-b2d6-4f484c42170d","push_default_route":false,"status":"ready","updated_at":"2025-03-21T14:36:05.650288Z","zone":"fr-par-1"}' headers: Content-Length: - - "1026" + - "417" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:27 GMT + - Fri, 21 Mar 2025 14:36:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1477,10 +1475,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e7717c06-3a71-420d-9669-44a66e281ea5 + - fc2c9894-b7d8-47ff-91a3-09f9dc85dbe3 status: 200 OK code: 200 - duration: 29.620167ms + duration: 42.129392ms - id: 30 request: proto: HTTP/1.1 @@ -1496,8 +1494,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-gw/v1/zones/fr-par-1/gateways/21269389-6430-4220-9db1-55c7db74b19c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/c27a5c57-d86c-442f-baf5-ae3e84e1ccd6 method: GET response: proto: HTTP/2.0 @@ -1505,20 +1503,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1946 + content_length: 417 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:01.759349Z","gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":"02:00:00:17:61:04","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"ready","updated_at":"2025-01-27T09:16:23.155373Z","zone":"fr-par-1"}],"id":"21269389-6430-4220-9db1-55c7db74b19c","ip":{"address":"51.15.142.126","created_at":"2025-01-27T09:16:01.631347Z","gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"422c6b53-e4c8-4031-9e24-8c3141978b2c","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"126-142-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.631347Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"tf-pn-happy-driscoll","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:23.307652Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-21T14:35:55.242457Z","gateway_id":"419c7e78-7788-413d-8206-b7cc036e64c8","id":"c27a5c57-d86c-442f-baf5-ae3e84e1ccd6","ipam_ip_id":"5662e6bb-58aa-4d72-8983-899388825d2e","mac_address":"02:00:00:11:93:78","masquerade_enabled":true,"private_network_id":"2672bc5e-1565-4047-b2d6-4f484c42170d","push_default_route":false,"status":"ready","updated_at":"2025-03-21T14:36:05.650288Z","zone":"fr-par-1"}' headers: Content-Length: - - "1946" + - "417" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:27 GMT + - Fri, 21 Mar 2025 14:36:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1526,10 +1524,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d0c7dfb4-19af-4de6-9d92-e541952d23e6 + - 417fc281-8575-4fa7-a957-97a26932b0fc status: 200 OK code: 200 - duration: 31.844916ms + duration: 55.35326ms - id: 31 request: proto: HTTP/1.1 @@ -1545,8 +1543,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-gw/v1/zones/fr-par-1/gateway-networks/b73f9917-559f-4c03-a154-90fd9be1f97d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/c27a5c57-d86c-442f-baf5-ae3e84e1ccd6 method: GET response: proto: HTTP/2.0 @@ -1554,20 +1552,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 966 + content_length: 417 uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":"02:00:00:17:61:04","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"ready","updated_at":"2025-01-27T09:16:23.155373Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-21T14:35:55.242457Z","gateway_id":"419c7e78-7788-413d-8206-b7cc036e64c8","id":"c27a5c57-d86c-442f-baf5-ae3e84e1ccd6","ipam_ip_id":"5662e6bb-58aa-4d72-8983-899388825d2e","mac_address":"02:00:00:11:93:78","masquerade_enabled":true,"private_network_id":"2672bc5e-1565-4047-b2d6-4f484c42170d","push_default_route":false,"status":"ready","updated_at":"2025-03-21T14:36:05.650288Z","zone":"fr-par-1"}' headers: Content-Length: - - "966" + - "417" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:27 GMT + - Fri, 21 Mar 2025 14:36:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1575,10 +1573,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5b2475a1-958d-41ee-8243-bcbdbce9d407 + - ddbb6d72-7f99-420d-ad16-c8785bf4cd1c status: 200 OK code: 200 - duration: 47.566333ms + duration: 44.485874ms - id: 32 request: proto: HTTP/1.1 @@ -1594,8 +1592,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks?gateway_id=21269389-6430-4220-9db1-55c7db74b19c&order_by=created_at_asc&private_network_id=fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0&status=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks?gateway_ids=419c7e78-7788-413d-8206-b7cc036e64c8&order_by=created_at_asc&private_network_ids=2672bc5e-1565-4047-b2d6-4f484c42170d method: GET response: proto: HTTP/2.0 @@ -1603,20 +1601,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1005 + content_length: 456 uncompressed: false - body: '{"gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":"02:00:00:17:61:04","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"ready","updated_at":"2025-01-27T09:16:23.155373Z","zone":"fr-par-1"}],"total_count":1}' + body: '{"gateway_networks":[{"created_at":"2025-03-21T14:35:55.242457Z","gateway_id":"419c7e78-7788-413d-8206-b7cc036e64c8","id":"c27a5c57-d86c-442f-baf5-ae3e84e1ccd6","ipam_ip_id":"5662e6bb-58aa-4d72-8983-899388825d2e","mac_address":"02:00:00:11:93:78","masquerade_enabled":true,"private_network_id":"2672bc5e-1565-4047-b2d6-4f484c42170d","push_default_route":false,"status":"ready","updated_at":"2025-03-21T14:36:05.650288Z","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "1005" + - "456" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:27 GMT + - Fri, 21 Mar 2025 14:36:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1624,10 +1622,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 87d7c7ff-77d2-4920-bfb7-96ec4c793b50 + - b6e617e2-6eab-403a-9d36-6b1bde0ffb2a status: 200 OK code: 200 - duration: 72.888708ms + duration: 59.368258ms - id: 33 request: proto: HTTP/1.1 @@ -1643,8 +1641,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/21269389-6430-4220-9db1-55c7db74b19c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/c27a5c57-d86c-442f-baf5-ae3e84e1ccd6 method: GET response: proto: HTTP/2.0 @@ -1652,20 +1650,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1946 + content_length: 417 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:01.759349Z","gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":"02:00:00:17:61:04","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"ready","updated_at":"2025-01-27T09:16:23.155373Z","zone":"fr-par-1"}],"id":"21269389-6430-4220-9db1-55c7db74b19c","ip":{"address":"51.15.142.126","created_at":"2025-01-27T09:16:01.631347Z","gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"422c6b53-e4c8-4031-9e24-8c3141978b2c","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"126-142-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.631347Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"tf-pn-happy-driscoll","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:23.307652Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-21T14:35:55.242457Z","gateway_id":"419c7e78-7788-413d-8206-b7cc036e64c8","id":"c27a5c57-d86c-442f-baf5-ae3e84e1ccd6","ipam_ip_id":"5662e6bb-58aa-4d72-8983-899388825d2e","mac_address":"02:00:00:11:93:78","masquerade_enabled":true,"private_network_id":"2672bc5e-1565-4047-b2d6-4f484c42170d","push_default_route":false,"status":"ready","updated_at":"2025-03-21T14:36:05.650288Z","zone":"fr-par-1"}' headers: Content-Length: - - "1946" + - "417" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:27 GMT + - Fri, 21 Mar 2025 14:36:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1673,10 +1671,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 73f631b8-17b0-4e77-80d2-b0374e409515 + - 4364ddcb-1e5f-4c1a-bec3-d6fca173be60 status: 200 OK code: 200 - duration: 29.984875ms + duration: 50.201631ms - id: 34 request: proto: HTTP/1.1 @@ -1692,8 +1690,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/b73f9917-559f-4c03-a154-90fd9be1f97d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/55bb0b10-987d-4977-8bc9-93342e725248 method: GET response: proto: HTTP/2.0 @@ -1701,20 +1699,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 966 + content_length: 396 uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":"02:00:00:17:61:04","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"ready","updated_at":"2025-01-27T09:16:23.155373Z","zone":"fr-par-1"}' + body: '{"address":"163.172.157.246","created_at":"2025-03-21T14:35:48.834879Z","gateway_id":"419c7e78-7788-413d-8206-b7cc036e64c8","id":"55bb0b10-987d-4977-8bc9-93342e725248","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"246-157-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:35:48.834879Z","zone":"fr-par-1"}' headers: Content-Length: - - "966" + - "396" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:27 GMT + - Fri, 21 Mar 2025 14:36:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1722,10 +1720,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d1ddb7a3-0fc2-4862-aa97-10a61351bed7 + - 621080f6-4cad-4696-86cd-8952fd334f5d status: 200 OK code: 200 - duration: 43.625542ms + duration: 28.845851ms - id: 35 request: proto: HTTP/1.1 @@ -1741,8 +1739,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-gw/v1/zones/fr-par-1/gateway-networks/b73f9917-559f-4c03-a154-90fd9be1f97d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2672bc5e-1565-4047-b2d6-4f484c42170d method: GET response: proto: HTTP/2.0 @@ -1750,20 +1748,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 966 + content_length: 1031 uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":"02:00:00:17:61:04","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"ready","updated_at":"2025-01-27T09:16:23.155373Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-21T14:35:48.129466Z","dhcp_enabled":true,"id":"2672bc5e-1565-4047-b2d6-4f484c42170d","name":"tf-pn-vibrant-varahamihira","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-03-21T14:35:48.129466Z","id":"d778a0ef-daa7-4136-a1a8-64e38f9d80c7","private_network_id":"2672bc5e-1565-4047-b2d6-4f484c42170d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.108.0/22","updated_at":"2025-03-21T14:35:48.129466Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-03-21T14:35:48.129466Z","id":"316caafb-af0e-4297-ac2c-57dcd8560f27","private_network_id":"2672bc5e-1565-4047-b2d6-4f484c42170d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:af44::/64","updated_at":"2025-03-21T14:35:48.129466Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-03-21T14:36:01.742014Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "966" + - "1031" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:27 GMT + - Fri, 21 Mar 2025 14:36:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1771,10 +1769,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e2e9a9c6-d445-4a85-94f1-130047b21528 + - 4e841c6d-0bfd-4e8e-97dc-794703e6637c status: 200 OK code: 200 - duration: 52.110875ms + duration: 27.916397ms - id: 36 request: proto: HTTP/1.1 @@ -1790,8 +1788,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/21269389-6430-4220-9db1-55c7db74b19c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/419c7e78-7788-413d-8206-b7cc036e64c8 method: GET response: proto: HTTP/2.0 @@ -1799,20 +1797,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1946 + content_length: 1333 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:01.759349Z","gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":"02:00:00:17:61:04","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"ready","updated_at":"2025-01-27T09:16:23.155373Z","zone":"fr-par-1"}],"id":"21269389-6430-4220-9db1-55c7db74b19c","ip":{"address":"51.15.142.126","created_at":"2025-01-27T09:16:01.631347Z","gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"422c6b53-e4c8-4031-9e24-8c3141978b2c","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"126-142-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.631347Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"tf-pn-happy-driscoll","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:23.307652Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:35:49.031968Z","gateway_networks":[{"created_at":"2025-03-21T14:35:55.242457Z","gateway_id":"419c7e78-7788-413d-8206-b7cc036e64c8","id":"c27a5c57-d86c-442f-baf5-ae3e84e1ccd6","ipam_ip_id":"5662e6bb-58aa-4d72-8983-899388825d2e","mac_address":"02:00:00:11:93:78","masquerade_enabled":true,"private_network_id":"2672bc5e-1565-4047-b2d6-4f484c42170d","push_default_route":false,"status":"ready","updated_at":"2025-03-21T14:36:05.650288Z","zone":"fr-par-1"}],"id":"419c7e78-7788-413d-8206-b7cc036e64c8","ipv4":{"address":"163.172.157.246","created_at":"2025-03-21T14:35:48.834879Z","gateway_id":"419c7e78-7788-413d-8206-b7cc036e64c8","id":"55bb0b10-987d-4977-8bc9-93342e725248","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"246-157-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:35:48.834879Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-adoring-johnson","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-03-21T14:36:05.885020Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "1946" + - "1333" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:27 GMT + - Fri, 21 Mar 2025 14:36:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1820,10 +1818,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b0d07291-c1e6-4ba1-b6b9-a54d3d1225e7 + - 4a91a0c9-ac8a-4759-ada7-cb1217beb2f7 status: 200 OK code: 200 - duration: 26.213875ms + duration: 24.268559ms - id: 37 request: proto: HTTP/1.1 @@ -1839,8 +1837,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-gw/v1/zones/fr-par-1/gateway-networks/b73f9917-559f-4c03-a154-90fd9be1f97d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/c27a5c57-d86c-442f-baf5-ae3e84e1ccd6 method: GET response: proto: HTTP/2.0 @@ -1848,20 +1846,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 966 + content_length: 417 uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":"02:00:00:17:61:04","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"ready","updated_at":"2025-01-27T09:16:23.155373Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-21T14:35:55.242457Z","gateway_id":"419c7e78-7788-413d-8206-b7cc036e64c8","id":"c27a5c57-d86c-442f-baf5-ae3e84e1ccd6","ipam_ip_id":"5662e6bb-58aa-4d72-8983-899388825d2e","mac_address":"02:00:00:11:93:78","masquerade_enabled":true,"private_network_id":"2672bc5e-1565-4047-b2d6-4f484c42170d","push_default_route":false,"status":"ready","updated_at":"2025-03-21T14:36:05.650288Z","zone":"fr-par-1"}' headers: Content-Length: - - "966" + - "417" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:27 GMT + - Fri, 21 Mar 2025 14:36:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1869,10 +1867,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2201b936-cd93-4afd-8aac-6de8dcd29e6d + - 6b9a880c-cf7f-44e3-aff6-dd3754e13aab status: 200 OK code: 200 - duration: 40.499333ms + duration: 45.457874ms - id: 38 request: proto: HTTP/1.1 @@ -1888,8 +1886,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-gw/v1/zones/fr-par-1/gateways/21269389-6430-4220-9db1-55c7db74b19c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks?gateway_ids=419c7e78-7788-413d-8206-b7cc036e64c8&order_by=created_at_asc&private_network_ids=2672bc5e-1565-4047-b2d6-4f484c42170d method: GET response: proto: HTTP/2.0 @@ -1897,20 +1895,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1946 + content_length: 456 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:01.759349Z","gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":"02:00:00:17:61:04","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"ready","updated_at":"2025-01-27T09:16:23.155373Z","zone":"fr-par-1"}],"id":"21269389-6430-4220-9db1-55c7db74b19c","ip":{"address":"51.15.142.126","created_at":"2025-01-27T09:16:01.631347Z","gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"422c6b53-e4c8-4031-9e24-8c3141978b2c","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"126-142-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.631347Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"tf-pn-happy-driscoll","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:23.307652Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"gateway_networks":[{"created_at":"2025-03-21T14:35:55.242457Z","gateway_id":"419c7e78-7788-413d-8206-b7cc036e64c8","id":"c27a5c57-d86c-442f-baf5-ae3e84e1ccd6","ipam_ip_id":"5662e6bb-58aa-4d72-8983-899388825d2e","mac_address":"02:00:00:11:93:78","masquerade_enabled":true,"private_network_id":"2672bc5e-1565-4047-b2d6-4f484c42170d","push_default_route":false,"status":"ready","updated_at":"2025-03-21T14:36:05.650288Z","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "1946" + - "456" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:27 GMT + - Fri, 21 Mar 2025 14:36:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1918,10 +1916,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6013c40f-9c47-4e91-9f76-76038cc3c3dd + - cc7ad72e-63cc-4254-bfb5-fc1d9f6e3a34 status: 200 OK code: 200 - duration: 25.462208ms + duration: 46.047237ms - id: 39 request: proto: HTTP/1.1 @@ -1937,8 +1935,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-gw/v1/zones/fr-par-1/gateway-networks/b73f9917-559f-4c03-a154-90fd9be1f97d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/c27a5c57-d86c-442f-baf5-ae3e84e1ccd6 method: GET response: proto: HTTP/2.0 @@ -1946,20 +1944,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 966 + content_length: 417 uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":"02:00:00:17:61:04","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"ready","updated_at":"2025-01-27T09:16:23.155373Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-21T14:35:55.242457Z","gateway_id":"419c7e78-7788-413d-8206-b7cc036e64c8","id":"c27a5c57-d86c-442f-baf5-ae3e84e1ccd6","ipam_ip_id":"5662e6bb-58aa-4d72-8983-899388825d2e","mac_address":"02:00:00:11:93:78","masquerade_enabled":true,"private_network_id":"2672bc5e-1565-4047-b2d6-4f484c42170d","push_default_route":false,"status":"ready","updated_at":"2025-03-21T14:36:05.650288Z","zone":"fr-par-1"}' headers: Content-Length: - - "966" + - "417" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:27 GMT + - Fri, 21 Mar 2025 14:36:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1967,10 +1965,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e8b8d38c-1330-42ca-b230-d11fbee50d98 + - 062ae3d5-0f3d-4702-b768-1097eab4593e status: 200 OK code: 200 - duration: 48.530875ms + duration: 53.772028ms - id: 40 request: proto: HTTP/1.1 @@ -1986,8 +1984,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-gw/v1/zones/fr-par-1/gateway-networks/b73f9917-559f-4c03-a154-90fd9be1f97d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/c27a5c57-d86c-442f-baf5-ae3e84e1ccd6 method: GET response: proto: HTTP/2.0 @@ -1995,20 +1993,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 966 + content_length: 417 uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":"02:00:00:17:61:04","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"ready","updated_at":"2025-01-27T09:16:23.155373Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-21T14:35:55.242457Z","gateway_id":"419c7e78-7788-413d-8206-b7cc036e64c8","id":"c27a5c57-d86c-442f-baf5-ae3e84e1ccd6","ipam_ip_id":"5662e6bb-58aa-4d72-8983-899388825d2e","mac_address":"02:00:00:11:93:78","masquerade_enabled":true,"private_network_id":"2672bc5e-1565-4047-b2d6-4f484c42170d","push_default_route":false,"status":"ready","updated_at":"2025-03-21T14:36:05.650288Z","zone":"fr-par-1"}' headers: Content-Length: - - "966" + - "417" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:27 GMT + - Fri, 21 Mar 2025 14:36:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2016,10 +2014,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec01c694-db9c-4ab7-9428-dd0df486be12 + - c12d663a-afec-4bbc-a6db-fc05f21a0064 status: 200 OK code: 200 - duration: 48.631916ms + duration: 61.702799ms - id: 41 request: proto: HTTP/1.1 @@ -2035,8 +2033,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-gw/v1/zones/fr-par-1/gateway-networks/b73f9917-559f-4c03-a154-90fd9be1f97d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks?gateway_ids=419c7e78-7788-413d-8206-b7cc036e64c8&order_by=created_at_asc&private_network_ids=2672bc5e-1565-4047-b2d6-4f484c42170d method: GET response: proto: HTTP/2.0 @@ -2044,20 +2042,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 966 + content_length: 456 uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":"02:00:00:17:61:04","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"ready","updated_at":"2025-01-27T09:16:23.155373Z","zone":"fr-par-1"}' + body: '{"gateway_networks":[{"created_at":"2025-03-21T14:35:55.242457Z","gateway_id":"419c7e78-7788-413d-8206-b7cc036e64c8","id":"c27a5c57-d86c-442f-baf5-ae3e84e1ccd6","ipam_ip_id":"5662e6bb-58aa-4d72-8983-899388825d2e","mac_address":"02:00:00:11:93:78","masquerade_enabled":true,"private_network_id":"2672bc5e-1565-4047-b2d6-4f484c42170d","push_default_route":false,"status":"ready","updated_at":"2025-03-21T14:36:05.650288Z","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "966" + - "456" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:27 GMT + - Fri, 21 Mar 2025 14:36:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2065,10 +2063,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 47147ab9-7e7b-4213-81f2-56cdf0bb4489 + - c0a5876e-dbee-46bd-96bf-a9f35b942068 status: 200 OK code: 200 - duration: 46.613958ms + duration: 40.104901ms - id: 42 request: proto: HTTP/1.1 @@ -2084,8 +2082,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-gw/v1/zones/fr-par-1/gateway-networks?gateway_id=21269389-6430-4220-9db1-55c7db74b19c&order_by=created_at_asc&private_network_id=fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0&status=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/c27a5c57-d86c-442f-baf5-ae3e84e1ccd6 method: GET response: proto: HTTP/2.0 @@ -2093,20 +2091,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1005 + content_length: 417 uncompressed: false - body: '{"gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":"02:00:00:17:61:04","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"ready","updated_at":"2025-01-27T09:16:23.155373Z","zone":"fr-par-1"}],"total_count":1}' + body: '{"created_at":"2025-03-21T14:35:55.242457Z","gateway_id":"419c7e78-7788-413d-8206-b7cc036e64c8","id":"c27a5c57-d86c-442f-baf5-ae3e84e1ccd6","ipam_ip_id":"5662e6bb-58aa-4d72-8983-899388825d2e","mac_address":"02:00:00:11:93:78","masquerade_enabled":true,"private_network_id":"2672bc5e-1565-4047-b2d6-4f484c42170d","push_default_route":false,"status":"ready","updated_at":"2025-03-21T14:36:05.650288Z","zone":"fr-par-1"}' headers: Content-Length: - - "1005" + - "417" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:27 GMT + - Fri, 21 Mar 2025 14:36:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2114,10 +2112,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0bed66c0-a41d-4487-960e-ff68deba8ff3 + - efb293b0-b304-4764-be97-547198f162c7 status: 200 OK code: 200 - duration: 56.348ms + duration: 47.520873ms - id: 43 request: proto: HTTP/1.1 @@ -2133,8 +2131,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-gw/v1/zones/fr-par-1/gateways/21269389-6430-4220-9db1-55c7db74b19c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/c27a5c57-d86c-442f-baf5-ae3e84e1ccd6 method: GET response: proto: HTTP/2.0 @@ -2142,20 +2140,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1946 + content_length: 417 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:01.759349Z","gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":"02:00:00:17:61:04","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"ready","updated_at":"2025-01-27T09:16:23.155373Z","zone":"fr-par-1"}],"id":"21269389-6430-4220-9db1-55c7db74b19c","ip":{"address":"51.15.142.126","created_at":"2025-01-27T09:16:01.631347Z","gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"422c6b53-e4c8-4031-9e24-8c3141978b2c","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"126-142-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.631347Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"tf-pn-happy-driscoll","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:23.307652Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-21T14:35:55.242457Z","gateway_id":"419c7e78-7788-413d-8206-b7cc036e64c8","id":"c27a5c57-d86c-442f-baf5-ae3e84e1ccd6","ipam_ip_id":"5662e6bb-58aa-4d72-8983-899388825d2e","mac_address":"02:00:00:11:93:78","masquerade_enabled":true,"private_network_id":"2672bc5e-1565-4047-b2d6-4f484c42170d","push_default_route":false,"status":"ready","updated_at":"2025-03-21T14:36:05.650288Z","zone":"fr-par-1"}' headers: Content-Length: - - "1946" + - "417" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:27 GMT + - Fri, 21 Mar 2025 14:36:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2163,10 +2161,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 102c2777-b5e7-4a06-a25f-1ae59187f61b + - 85140d29-661a-4c6a-897e-5e593b5d6a4f status: 200 OK code: 200 - duration: 29.58975ms + duration: 46.05014ms - id: 44 request: proto: HTTP/1.1 @@ -2182,8 +2180,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-gw/v1/zones/fr-par-1/gateway-networks/b73f9917-559f-4c03-a154-90fd9be1f97d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/c27a5c57-d86c-442f-baf5-ae3e84e1ccd6 method: GET response: proto: HTTP/2.0 @@ -2191,20 +2189,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 966 + content_length: 417 uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":"02:00:00:17:61:04","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"ready","updated_at":"2025-01-27T09:16:23.155373Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-21T14:35:55.242457Z","gateway_id":"419c7e78-7788-413d-8206-b7cc036e64c8","id":"c27a5c57-d86c-442f-baf5-ae3e84e1ccd6","ipam_ip_id":"5662e6bb-58aa-4d72-8983-899388825d2e","mac_address":"02:00:00:11:93:78","masquerade_enabled":true,"private_network_id":"2672bc5e-1565-4047-b2d6-4f484c42170d","push_default_route":false,"status":"ready","updated_at":"2025-03-21T14:36:05.650288Z","zone":"fr-par-1"}' headers: Content-Length: - - "966" + - "417" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:27 GMT + - Fri, 21 Mar 2025 14:36:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2212,10 +2210,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8916b8f1-ef19-47af-b875-078c85780c85 + - 598b708f-4f0d-4f44-8b53-6e18c1e91f3e status: 200 OK code: 200 - duration: 41.727ms + duration: 49.940748ms - id: 45 request: proto: HTTP/1.1 @@ -2231,29 +2229,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/b73f9917-559f-4c03-a154-90fd9be1f97d - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/c27a5c57-d86c-442f-baf5-ae3e84e1ccd6 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 966 + content_length: 421 uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":"02:00:00:17:61:04","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"ready","updated_at":"2025-01-27T09:16:23.155373Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-21T14:35:55.242457Z","gateway_id":"419c7e78-7788-413d-8206-b7cc036e64c8","id":"c27a5c57-d86c-442f-baf5-ae3e84e1ccd6","ipam_ip_id":"5662e6bb-58aa-4d72-8983-899388825d2e","mac_address":"02:00:00:11:93:78","masquerade_enabled":true,"private_network_id":"2672bc5e-1565-4047-b2d6-4f484c42170d","push_default_route":false,"status":"detaching","updated_at":"2025-03-21T14:36:14.226668Z","zone":"fr-par-1"}' headers: Content-Length: - - "966" + - "421" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:27 GMT + - Fri, 21 Mar 2025 14:36:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2261,10 +2259,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fcf1166c-bdb7-4ec6-97b0-bdc2134137ca + - b5781b58-48cd-4429-b5ac-fe0bf96f0eff status: 200 OK code: 200 - duration: 45.928583ms + duration: 70.305841ms - id: 46 request: proto: HTTP/1.1 @@ -2280,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-gw/v1/zones/fr-par-1/gateways/21269389-6430-4220-9db1-55c7db74b19c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/c27a5c57-d86c-442f-baf5-ae3e84e1ccd6 method: GET response: proto: HTTP/2.0 @@ -2289,20 +2287,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1946 + content_length: 421 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:01.759349Z","gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":"02:00:00:17:61:04","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"ready","updated_at":"2025-01-27T09:16:23.155373Z","zone":"fr-par-1"}],"id":"21269389-6430-4220-9db1-55c7db74b19c","ip":{"address":"51.15.142.126","created_at":"2025-01-27T09:16:01.631347Z","gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"422c6b53-e4c8-4031-9e24-8c3141978b2c","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"126-142-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.631347Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"tf-pn-happy-driscoll","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:23.307652Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-21T14:35:55.242457Z","gateway_id":"419c7e78-7788-413d-8206-b7cc036e64c8","id":"c27a5c57-d86c-442f-baf5-ae3e84e1ccd6","ipam_ip_id":"5662e6bb-58aa-4d72-8983-899388825d2e","mac_address":"02:00:00:11:93:78","masquerade_enabled":true,"private_network_id":"2672bc5e-1565-4047-b2d6-4f484c42170d","push_default_route":false,"status":"detaching","updated_at":"2025-03-21T14:36:14.226668Z","zone":"fr-par-1"}' headers: Content-Length: - - "1946" + - "421" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:27 GMT + - Fri, 21 Mar 2025 14:36:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2310,10 +2308,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b07c221-e058-456b-9007-0f707f87bcaf + - ed635d9e-32ff-4332-8cdd-2fa7676bfdb0 status: 200 OK code: 200 - duration: 29.273666ms + duration: 45.249936ms - id: 47 request: proto: HTTP/1.1 @@ -2329,8 +2327,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-gw/v1/zones/fr-par-1/gateway-networks/b73f9917-559f-4c03-a154-90fd9be1f97d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/c27a5c57-d86c-442f-baf5-ae3e84e1ccd6 method: GET response: proto: HTTP/2.0 @@ -2338,20 +2336,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 966 + content_length: 136 uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":"02:00:00:17:61:04","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"ready","updated_at":"2025-01-27T09:16:23.155373Z","zone":"fr-par-1"}' + body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"c27a5c57-d86c-442f-baf5-ae3e84e1ccd6","type":"not_found"}' headers: Content-Length: - - "966" + - "136" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:27 GMT + - Fri, 21 Mar 2025 14:36:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2359,10 +2357,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5295413e-aca9-403e-b32e-4e107b38daa5 - status: 200 OK - code: 200 - duration: 49.099375ms + - 7ac979b4-7825-4cfb-a5ad-556d4d2f8445 + status: 404 Not Found + code: 404 + duration: 24.199704ms - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/b73f9917-559f-4c03-a154-90fd9be1f97d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/419c7e78-7788-413d-8206-b7cc036e64c8 method: GET response: proto: HTTP/2.0 @@ -2387,20 +2385,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 966 + content_length: 916 uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":"02:00:00:17:61:04","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"ready","updated_at":"2025-01-27T09:16:23.155373Z","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:35:49.031968Z","gateway_networks":[],"id":"419c7e78-7788-413d-8206-b7cc036e64c8","ipv4":{"address":"163.172.157.246","created_at":"2025-03-21T14:35:48.834879Z","gateway_id":"419c7e78-7788-413d-8206-b7cc036e64c8","id":"55bb0b10-987d-4977-8bc9-93342e725248","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"246-157-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:35:48.834879Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-adoring-johnson","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-03-21T14:36:05.885020Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "966" + - "916" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:28 GMT + - Fri, 21 Mar 2025 14:36:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2408,10 +2406,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0a158115-17bf-47d8-94c0-40f7b99234c1 + - 0628bd6c-f2f2-45a4-9929-1bd7791327f8 status: 200 OK code: 200 - duration: 70.895375ms + duration: 28.368907ms - id: 49 request: proto: HTTP/1.1 @@ -2427,29 +2425,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/b73f9917-559f-4c03-a154-90fd9be1f97d - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/419c7e78-7788-413d-8206-b7cc036e64c8?delete_ip=false + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 966 + content_length: 917 uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":"02:00:00:17:61:04","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"ready","updated_at":"2025-01-27T09:16:23.155373Z","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:35:49.031968Z","gateway_networks":[],"id":"419c7e78-7788-413d-8206-b7cc036e64c8","ipv4":{"address":"163.172.157.246","created_at":"2025-03-21T14:35:48.834879Z","gateway_id":"419c7e78-7788-413d-8206-b7cc036e64c8","id":"55bb0b10-987d-4977-8bc9-93342e725248","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"246-157-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:35:48.834879Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-adoring-johnson","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-03-21T14:36:19.407503Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "966" + - "917" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:29 GMT + - Fri, 21 Mar 2025 14:36:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2457,10 +2455,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - efc5a3a3-6bbf-4ac3-bba2-a8af8dd31c22 + - abf35c7c-57ce-4d9b-9a0c-61a5d2bb1927 status: 200 OK code: 200 - duration: 45.442708ms + duration: 147.644348ms - id: 50 request: proto: HTTP/1.1 @@ -2476,8 +2474,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-gw/v1/zones/fr-par-1/gateway-networks?gateway_id=21269389-6430-4220-9db1-55c7db74b19c&order_by=created_at_asc&private_network_id=fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0&status=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/419c7e78-7788-413d-8206-b7cc036e64c8 method: GET response: proto: HTTP/2.0 @@ -2485,20 +2483,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1005 + content_length: 128 uncompressed: false - body: '{"gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":"02:00:00:17:61:04","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"ready","updated_at":"2025-01-27T09:16:23.155373Z","zone":"fr-par-1"}],"total_count":1}' + body: '{"message":"resource is not found","resource":"gateway","resource_id":"419c7e78-7788-413d-8206-b7cc036e64c8","type":"not_found"}' headers: Content-Length: - - "1005" + - "128" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:29 GMT + - Fri, 21 Mar 2025 14:36:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2506,10 +2504,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 453fe04b-334f-4840-9ec3-f06965c0b183 - status: 200 OK - code: 200 - duration: 77.543542ms + - 12e7f796-ede6-4dd7-88a2-47d47ec16800 + status: 404 Not Found + code: 404 + duration: 21.914319ms - id: 51 request: proto: HTTP/1.1 @@ -2525,127 +2523,27 @@ interactions: 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-gw/v1/zones/fr-par-1/gateways/21269389-6430-4220-9db1-55c7db74b19c - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/55bb0b10-987d-4977-8bc9-93342e725248 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1946 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:01.759349Z","gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":"02:00:00:17:61:04","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"ready","updated_at":"2025-01-27T09:16:23.155373Z","zone":"fr-par-1"}],"id":"21269389-6430-4220-9db1-55c7db74b19c","ip":{"address":"51.15.142.126","created_at":"2025-01-27T09:16:01.631347Z","gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"422c6b53-e4c8-4031-9e24-8c3141978b2c","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"126-142-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.631347Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"tf-pn-happy-driscoll","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:23.307652Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' - headers: - Content-Length: - - "1946" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:29 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6b11de26-ff00-4e65-9ad7-0ee9d925a208 - status: 200 OK - code: 200 - duration: 65.858334ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/b73f9917-559f-4c03-a154-90fd9be1f97d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 966 uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":"02:00:00:17:61:04","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"ready","updated_at":"2025-01-27T09:16:23.155373Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "966" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:29 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1ca9eebf-cb43-4a25-8002-7879ad8fdbc5 - status: 200 OK - code: 200 - duration: 43.407167ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/21269389-6430-4220-9db1-55c7db74b19c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1946 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:01.759349Z","gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":"02:00:00:17:61:04","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"ready","updated_at":"2025-01-27T09:16:23.155373Z","zone":"fr-par-1"}],"id":"21269389-6430-4220-9db1-55c7db74b19c","ip":{"address":"51.15.142.126","created_at":"2025-01-27T09:16:01.631347Z","gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"422c6b53-e4c8-4031-9e24-8c3141978b2c","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"126-142-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.631347Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"tf-pn-happy-driscoll","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:23.307652Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' headers: - Content-Length: - - "1946" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:29 GMT + - Fri, 21 Mar 2025 14:36:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2653,11 +2551,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 94d18355-ce56-441e-b014-52453fc97fe1 - status: 200 OK - code: 200 - duration: 31.58125ms - - id: 54 + - a670a1b1-fae4-49bb-8045-eeebf3c515d1 + status: 204 No Content + code: 204 + duration: 798.085267ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -2672,127 +2570,27 @@ interactions: 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-gw/v1/zones/fr-par-1/gateway-networks/b73f9917-559f-4c03-a154-90fd9be1f97d - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2672bc5e-1565-4047-b2d6-4f484c42170d + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 966 - uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":"02:00:00:17:61:04","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"ready","updated_at":"2025-01-27T09:16:23.155373Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "966" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:29 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - de9022bd-f3d8-441b-8307-d57270af65fb - status: 200 OK - code: 200 - duration: 51.536ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/b73f9917-559f-4c03-a154-90fd9be1f97d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 966 uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":"02:00:00:17:61:04","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"ready","updated_at":"2025-01-27T09:16:23.155373Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "966" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:29 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c8c89fc5-5144-4286-908c-e861d4dfec9b - status: 200 OK - code: 200 - duration: 47.558292ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips/422c6b53-e4c8-4031-9e24-8c3141978b2c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 392 - uncompressed: false - body: '{"address":"51.15.142.126","created_at":"2025-01-27T09:16:01.631347Z","gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"422c6b53-e4c8-4031-9e24-8c3141978b2c","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"126-142-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.631347Z","zone":"fr-par-1"}' headers: - Content-Length: - - "392" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:29 GMT + - Fri, 21 Mar 2025 14:36:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2800,11 +2598,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2ea278ab-a2a2-4571-b209-230a70d199d5 - status: 200 OK - code: 200 - duration: 117.361292ms - - id: 57 + - 679ea389-86da-48f0-a8c1-f59b81f7ee13 + status: 204 No Content + code: 204 + duration: 1.391699539s + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -2819,8 +2617,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/fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/c27a5c57-d86c-442f-baf5-ae3e84e1ccd6 method: GET response: proto: HTTP/2.0 @@ -2828,20 +2626,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1026 + content_length: 136 uncompressed: false - body: '{"created_at":"2025-01-27T09:16:00.934889Z","dhcp_enabled":true,"id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","name":"tf-pn-crazy-kowalevski","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-27T09:16:00.934889Z","id":"4080041b-f367-4697-82ff-e1d41fc32aea","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:12.212213Z","vpc_id":"61a53743-8b16-4c41-8c27-c2271b31cbec"},{"created_at":"2025-01-27T09:16:00.934889Z","id":"61d75c9e-8912-4402-b53c-b1533fdd4a32","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:bbf5::/64","updated_at":"2025-01-27T09:16:12.216823Z","vpc_id":"61a53743-8b16-4c41-8c27-c2271b31cbec"}],"tags":[],"updated_at":"2025-01-27T09:16:20.918931Z","vpc_id":"61a53743-8b16-4c41-8c27-c2271b31cbec"}' + body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"c27a5c57-d86c-442f-baf5-ae3e84e1ccd6","type":"not_found"}' headers: Content-Length: - - "1026" + - "136" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:29 GMT + - Fri, 21 Mar 2025 14:36:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2849,11 +2647,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2bc8fc60-8d43-4b67-83ef-c368c52e91a2 - status: 200 OK - code: 200 - duration: 110.257208ms - - id: 58 + - 436ddb37-d4c5-4e33-bd59-356b00b293f1 + status: 404 Not Found + code: 404 + duration: 24.857281ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -2868,8 +2666,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-gw/v1/zones/fr-par-1/dhcps/9ae8d1e8-4b5f-4037-abb5-6825baab0789 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/c27a5c57-d86c-442f-baf5-ae3e84e1ccd6 method: GET response: proto: HTTP/2.0 @@ -2877,20 +2675,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 568 + content_length: 136 uncompressed: false - body: '{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"}' + body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"c27a5c57-d86c-442f-baf5-ae3e84e1ccd6","type":"not_found"}' headers: Content-Length: - - "568" + - "136" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:29 GMT + - Fri, 21 Mar 2025 14:36:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2898,1522 +2696,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c56416ad-7944-4be6-a18b-5048768c5e3f - status: 200 OK - code: 200 - duration: 113.0485ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/21269389-6430-4220-9db1-55c7db74b19c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1946 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:01.759349Z","gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":"02:00:00:17:61:04","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"ready","updated_at":"2025-01-27T09:16:23.155373Z","zone":"fr-par-1"}],"id":"21269389-6430-4220-9db1-55c7db74b19c","ip":{"address":"51.15.142.126","created_at":"2025-01-27T09:16:01.631347Z","gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"422c6b53-e4c8-4031-9e24-8c3141978b2c","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"126-142-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.631347Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"tf-pn-happy-driscoll","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:23.307652Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' - headers: - Content-Length: - - "1946" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:29 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1f9458cb-9da2-4cf9-a088-76563cb4f2a2 - status: 200 OK - code: 200 - duration: 32.591958ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/b73f9917-559f-4c03-a154-90fd9be1f97d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 966 - uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":"02:00:00:17:61:04","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"ready","updated_at":"2025-01-27T09:16:23.155373Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "966" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:29 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4f28f2c9-7925-463f-be41-624c3e799ca7 - status: 200 OK - code: 200 - duration: 42.62175ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/21269389-6430-4220-9db1-55c7db74b19c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1946 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:01.759349Z","gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":"02:00:00:17:61:04","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"ready","updated_at":"2025-01-27T09:16:23.155373Z","zone":"fr-par-1"}],"id":"21269389-6430-4220-9db1-55c7db74b19c","ip":{"address":"51.15.142.126","created_at":"2025-01-27T09:16:01.631347Z","gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"422c6b53-e4c8-4031-9e24-8c3141978b2c","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"126-142-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.631347Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"tf-pn-happy-driscoll","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:23.307652Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' - headers: - Content-Length: - - "1946" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:29 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c17ed7b7-e2b2-43d3-9976-de7c8ef3a316 - status: 200 OK - code: 200 - duration: 27.715209ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks?gateway_id=21269389-6430-4220-9db1-55c7db74b19c&order_by=created_at_asc&private_network_id=fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0&status=unknown - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1005 - uncompressed: false - body: '{"gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":"02:00:00:17:61:04","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"ready","updated_at":"2025-01-27T09:16:23.155373Z","zone":"fr-par-1"}],"total_count":1}' - headers: - Content-Length: - - "1005" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:29 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6a4c38f6-7827-4839-9bb6-667c6690e43d - status: 200 OK - code: 200 - duration: 80.382ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/b73f9917-559f-4c03-a154-90fd9be1f97d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 966 - uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":"02:00:00:17:61:04","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"ready","updated_at":"2025-01-27T09:16:23.155373Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "966" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:29 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 197ff79f-1529-465b-a33e-fc811463c451 - status: 200 OK - code: 200 - duration: 56.517333ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/b73f9917-559f-4c03-a154-90fd9be1f97d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 966 - uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":"02:00:00:17:61:04","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"ready","updated_at":"2025-01-27T09:16:23.155373Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "966" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:29 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 25e82ccf-cc3f-4a5a-803b-eca7f04e945f - status: 200 OK - code: 200 - duration: 48.704667ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/21269389-6430-4220-9db1-55c7db74b19c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1946 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:01.759349Z","gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":"02:00:00:17:61:04","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"ready","updated_at":"2025-01-27T09:16:23.155373Z","zone":"fr-par-1"}],"id":"21269389-6430-4220-9db1-55c7db74b19c","ip":{"address":"51.15.142.126","created_at":"2025-01-27T09:16:01.631347Z","gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"422c6b53-e4c8-4031-9e24-8c3141978b2c","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"126-142-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.631347Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"tf-pn-happy-driscoll","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:23.307652Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' - headers: - Content-Length: - - "1946" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16: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: - - b2ec5d04-c396-4296-9381-23e9925acbb9 - status: 200 OK - code: 200 - duration: 28.280917ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/b73f9917-559f-4c03-a154-90fd9be1f97d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 966 - uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":"02:00:00:17:61:04","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"ready","updated_at":"2025-01-27T09:16:23.155373Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "966" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16: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: - - d56d2169-4db2-4453-8fb3-bcc911a45b63 - status: 200 OK - code: 200 - duration: 41.819709ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/b73f9917-559f-4c03-a154-90fd9be1f97d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 966 - uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":"02:00:00:17:61:04","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"ready","updated_at":"2025-01-27T09:16:23.155373Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "966" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16: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: - - 09178232-a4e9-41a3-bdb1-5856b75ee2fe - status: 200 OK - code: 200 - duration: 40.176583ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/21269389-6430-4220-9db1-55c7db74b19c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1946 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:01.759349Z","gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":"02:00:00:17:61:04","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"ready","updated_at":"2025-01-27T09:16:23.155373Z","zone":"fr-par-1"}],"id":"21269389-6430-4220-9db1-55c7db74b19c","ip":{"address":"51.15.142.126","created_at":"2025-01-27T09:16:01.631347Z","gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"422c6b53-e4c8-4031-9e24-8c3141978b2c","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"126-142-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.631347Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"tf-pn-happy-driscoll","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:23.307652Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' - headers: - Content-Length: - - "1946" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16: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: - - 3b91b4c2-d3a1-4680-aeeb-8e5268520af5 - status: 200 OK - code: 200 - duration: 29.485625ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/b73f9917-559f-4c03-a154-90fd9be1f97d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 966 - uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":"02:00:00:17:61:04","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"ready","updated_at":"2025-01-27T09:16:23.155373Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "966" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16: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: - - 83fde098-eea6-47a8-9375-bf9a447a19c6 - status: 200 OK - code: 200 - duration: 50.191583ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/b73f9917-559f-4c03-a154-90fd9be1f97d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 966 - uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":"02:00:00:17:61:04","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"ready","updated_at":"2025-01-27T09:16:23.155373Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "966" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16: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: - - 9741b75c-f974-476c-8407-26d2ae63f596 - status: 200 OK - code: 200 - duration: 38.420625ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks?gateway_id=21269389-6430-4220-9db1-55c7db74b19c&order_by=created_at_asc&private_network_id=fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0&status=unknown - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1005 - uncompressed: false - body: '{"gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":"02:00:00:17:61:04","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"ready","updated_at":"2025-01-27T09:16:23.155373Z","zone":"fr-par-1"}],"total_count":1}' - headers: - Content-Length: - - "1005" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16: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: - - fafe06b3-936b-46e5-9b94-7e690d183176 - status: 200 OK - code: 200 - duration: 58.915417ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/21269389-6430-4220-9db1-55c7db74b19c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1946 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:01.759349Z","gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":"02:00:00:17:61:04","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"ready","updated_at":"2025-01-27T09:16:23.155373Z","zone":"fr-par-1"}],"id":"21269389-6430-4220-9db1-55c7db74b19c","ip":{"address":"51.15.142.126","created_at":"2025-01-27T09:16:01.631347Z","gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"422c6b53-e4c8-4031-9e24-8c3141978b2c","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"126-142-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.631347Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"tf-pn-happy-driscoll","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:23.307652Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' - headers: - Content-Length: - - "1946" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16: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: - - 207262c8-5e18-4185-b4b3-6282462aa7f4 - status: 200 OK - code: 200 - duration: 29.347833ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/b73f9917-559f-4c03-a154-90fd9be1f97d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 966 - uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":"02:00:00:17:61:04","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"ready","updated_at":"2025-01-27T09:16:23.155373Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "966" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16: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: - - 36c4c513-f1ce-4328-b368-ccd3eeab3e3d - status: 200 OK - code: 200 - duration: 49.317834ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/b73f9917-559f-4c03-a154-90fd9be1f97d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 966 - uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":"02:00:00:17:61:04","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"ready","updated_at":"2025-01-27T09:16:23.155373Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "966" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16: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: - - 2dfd0ca2-586d-4209-a1a6-bf54afcfaeb3 - status: 200 OK - code: 200 - duration: 41.873334ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/21269389-6430-4220-9db1-55c7db74b19c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1946 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:01.759349Z","gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":"02:00:00:17:61:04","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"ready","updated_at":"2025-01-27T09:16:23.155373Z","zone":"fr-par-1"}],"id":"21269389-6430-4220-9db1-55c7db74b19c","ip":{"address":"51.15.142.126","created_at":"2025-01-27T09:16:01.631347Z","gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"422c6b53-e4c8-4031-9e24-8c3141978b2c","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"126-142-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.631347Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"tf-pn-happy-driscoll","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:23.307652Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' - headers: - Content-Length: - - "1946" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16: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: - - 1b97e57c-634f-41e0-a05a-32dbc78ecf30 - status: 200 OK - code: 200 - duration: 27.737833ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/b73f9917-559f-4c03-a154-90fd9be1f97d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 966 - uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":"02:00:00:17:61:04","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"ready","updated_at":"2025-01-27T09:16:23.155373Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "966" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16: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: - - 8c68d2a6-2527-4d29-8429-a9c2bf7d4fa5 - status: 200 OK - code: 200 - duration: 49.264625ms - - id: 77 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/b73f9917-559f-4c03-a154-90fd9be1f97d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 966 - uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":"02:00:00:17:61:04","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"ready","updated_at":"2025-01-27T09:16:23.155373Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "966" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:31 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: - - d4080ce5-c0b1-4972-9533-963250177c58 - status: 200 OK - code: 200 - duration: 46.619459ms - - id: 78 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/b73f9917-559f-4c03-a154-90fd9be1f97d?cleanup_dhcp=true - 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, 27 Jan 2025 09:16:31 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: - - d6dc9562-fe1f-4645-962f-e21868fb0d07 - status: 204 No Content - code: 204 - duration: 69.137083ms - - id: 79 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/b73f9917-559f-4c03-a154-90fd9be1f97d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 970 - uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:14.341857Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:00.935528Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:00.935528Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"b73f9917-559f-4c03-a154-90fd9be1f97d","ipam_config":null,"mac_address":"02:00:00:17:61:04","private_network_id":"fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0","status":"detaching","updated_at":"2025-01-27T09:16:31.437285Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "970" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:31 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: - - 38f07e8a-2562-4fb9-925d-256897b3b894 - status: 200 OK - code: 200 - duration: 41.448208ms - - id: 80 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/b73f9917-559f-4c03-a154-90fd9be1f97d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 136 - uncompressed: false - body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"b73f9917-559f-4c03-a154-90fd9be1f97d","type":"not_found"}' - headers: - Content-Length: - - "136" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:36 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f697ef27-5c49-4ee0-842d-d297d3bee4ad - status: 404 Not Found - code: 404 - duration: 21.291416ms - - id: 81 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/21269389-6430-4220-9db1-55c7db74b19c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 980 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:01.759349Z","gateway_networks":[],"id":"21269389-6430-4220-9db1-55c7db74b19c","ip":{"address":"51.15.142.126","created_at":"2025-01-27T09:16:01.631347Z","gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"422c6b53-e4c8-4031-9e24-8c3141978b2c","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"126-142-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.631347Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"tf-pn-happy-driscoll","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:23.307652Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' - headers: - Content-Length: - - "980" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:36 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 768f1bf8-5998-4627-ac23-2ca6cbb25be3 - status: 200 OK - code: 200 - duration: 27.054917ms - - id: 82 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/9ae8d1e8-4b5f-4037-abb5-6825baab0789 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 125 - uncompressed: false - body: '{"message":"resource is not found","resource":"dhcp","resource_id":"9ae8d1e8-4b5f-4037-abb5-6825baab0789","type":"not_found"}' - headers: - Content-Length: - - "125" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:36 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7d7285fa-6ea3-4bfb-b5a8-313ace2676b6 - status: 404 Not Found - code: 404 - duration: 21.062334ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/21269389-6430-4220-9db1-55c7db74b19c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 980 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:01.759349Z","gateway_networks":[],"id":"21269389-6430-4220-9db1-55c7db74b19c","ip":{"address":"51.15.142.126","created_at":"2025-01-27T09:16:01.631347Z","gateway_id":"21269389-6430-4220-9db1-55c7db74b19c","id":"422c6b53-e4c8-4031-9e24-8c3141978b2c","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"126-142-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.631347Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"tf-pn-happy-driscoll","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:23.307652Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' - headers: - Content-Length: - - "980" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:36 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8e5110b5-81a6-4ff8-84fe-b4c1ee5011b5 - status: 200 OK - code: 200 - duration: 24.140667ms - - id: 84 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/21269389-6430-4220-9db1-55c7db74b19c?cleanup_dhcp=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: - - Mon, 27 Jan 2025 09:16:36 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 17682e71-8259-4829-a526-9c178c348715 - status: 204 No Content - code: 204 - duration: 50.831417ms - - id: 85 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/21269389-6430-4220-9db1-55c7db74b19c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 128 - uncompressed: false - body: '{"message":"resource is not found","resource":"gateway","resource_id":"21269389-6430-4220-9db1-55c7db74b19c","type":"not_found"}' - headers: - Content-Length: - - "128" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:36 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 361ffc36-16e0-42e4-8f00-819fff394c8b - status: 404 Not Found - code: 404 - duration: 20.008917ms - - id: 86 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips/422c6b53-e4c8-4031-9e24-8c3141978b2c - 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, 27 Jan 2025 09:16: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: - - 56d05349-af1d-435b-840f-0a5df0efe1d6 - status: 204 No Content - code: 204 - duration: 608.530625ms - - id: 87 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/fca9b3d8-c3a1-49a3-9306-9ebf983b8bd0 - 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, 27 Jan 2025 09:16: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: - - 656e45e1-b28e-498b-ad6b-4b0d6b316697 - status: 204 No Content - code: 204 - duration: 1.207134417s - - id: 88 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/b73f9917-559f-4c03-a154-90fd9be1f97d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 136 - uncompressed: false - body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"b73f9917-559f-4c03-a154-90fd9be1f97d","type":"not_found"}' - headers: - Content-Length: - - "136" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16: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: - - 3982c7d7-dc03-462f-8e36-5551f21c0bf3 - status: 404 Not Found - code: 404 - duration: 20.38825ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/b73f9917-559f-4c03-a154-90fd9be1f97d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 136 - uncompressed: false - body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"b73f9917-559f-4c03-a154-90fd9be1f97d","type":"not_found"}' - headers: - Content-Length: - - "136" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16: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: - - ff921a1d-5873-4376-a374-98d95df8ddfc + - 065a669b-1ed9-4d28-8de8-69ecba19afdf status: 404 Not Found code: 404 - duration: 27.812709ms - - id: 90 + duration: 18.581893ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -4428,8 +2715,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-gw/v1/zones/fr-par-1/gateway-networks/b73f9917-559f-4c03-a154-90fd9be1f97d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/c27a5c57-d86c-442f-baf5-ae3e84e1ccd6 method: GET response: proto: HTTP/2.0 @@ -4439,7 +2726,7 @@ interactions: trailer: {} content_length: 136 uncompressed: false - body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"b73f9917-559f-4c03-a154-90fd9be1f97d","type":"not_found"}' + body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"c27a5c57-d86c-442f-baf5-ae3e84e1ccd6","type":"not_found"}' headers: Content-Length: - "136" @@ -4448,9 +2735,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:37 GMT + - Fri, 21 Mar 2025 14:36:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4458,7 +2745,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa0e38b8-d5b1-4e0a-85fa-3cab6049f687 + - a28ae2ce-61ff-42ba-82bc-eecb3e2f2d0c status: 404 Not Found code: 404 - duration: 25.723375ms + duration: 21.721697ms diff --git a/internal/services/vpcgw/testdata/data-source-vpc-public-gateway-basic.cassette.yaml b/internal/services/vpcgw/testdata/data-source-vpc-public-gateway-basic.cassette.yaml index 9d05ff19ae..8c9508d5c0 100644 --- a/internal/services/vpcgw/testdata/data-source-vpc-public-gateway-basic.cassette.yaml +++ b/internal/services/vpcgw/testdata/data-source-vpc-public-gateway-basic.cassette.yaml @@ -6,20 +6,20 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 207 + content_length: 181 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"TestAccScalewayDataSourceVPCPublicGateway_Basic","tags":[],"type":"VPC-GW-S","upstream_dns_servers":[],"enable_smtp":false,"enable_bastion":false}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"TestAccScalewayDataSourceVPCPublicGateway_Basic","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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways method: POST response: proto: HTTP/2.0 @@ -27,20 +27,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1007 + content_length: 923 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:09.409713Z","gateway_networks":[],"id":"48632d57-88f6-4e71-b32f-62e5f3ff0e01","ip":{"address":"51.158.64.26","created_at":"2025-01-27T09:16:09.394007Z","gateway_id":"48632d57-88f6-4e71-b32f-62e5f3ff0e01","id":"aa78ee1c-8ca0-4565-bacb-7beecc956af9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"26-64-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:09.394007Z","zone":"fr-par-1"},"ip_mobility_enabled":false,"is_legacy":false,"name":"TestAccScalewayDataSourceVPCPublicGateway_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:09.409713Z","upstream_dns_servers":[],"version":null,"zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:28:13.764114Z","gateway_networks":[],"id":"e4bdd74e-d912-4491-96ef-45cb67671e24","ipv4":{"address":"51.15.245.212","created_at":"2025-03-21T14:28:13.735003Z","gateway_id":"e4bdd74e-d912-4491-96ef-45cb67671e24","id":"1d1cbc63-b842-42fc-b7b9-cb336f475e4d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"212-245-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:28:13.735003Z","zone":"fr-par-1"},"is_legacy":false,"name":"TestAccScalewayDataSourceVPCPublicGateway_Basic","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-03-21T14:28:13.764114Z","zone":"fr-par-1"}' headers: Content-Length: - - "1007" + - "923" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:09 GMT + - Fri, 21 Mar 2025 14:28:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,48 +48,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 80afebe8-69c7-41b4-bccf-3abf7be56ce5 + - ab56d833-e41d-4afd-b397-9bbcd518e0c9 status: 200 OK code: 200 - duration: 805.507084ms + duration: 920.557024ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 170 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"public-gateway-with-not-default-zone","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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/48632d57-88f6-4e71-b32f-62e5f3ff0e01 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-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: 1009 + content_length: 910 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:09.409713Z","gateway_networks":[],"id":"48632d57-88f6-4e71-b32f-62e5f3ff0e01","ip":{"address":"51.158.64.26","created_at":"2025-01-27T09:16:09.394007Z","gateway_id":"48632d57-88f6-4e71-b32f-62e5f3ff0e01","id":"aa78ee1c-8ca0-4565-bacb-7beecc956af9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"26-64-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:09.394007Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"TestAccScalewayDataSourceVPCPublicGateway_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:09.445583Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:28:13.765683Z","gateway_networks":[],"id":"8f2d1404-6d2c-40ae-9400-7c024fbba8ef","ipv4":{"address":"51.15.45.142","created_at":"2025-03-21T14:28:13.733782Z","gateway_id":"8f2d1404-6d2c-40ae-9400-7c024fbba8ef","id":"ad097cae-eb5b-440d-8687-a8139c082712","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"142-45-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:28:13.733782Z","zone":"nl-ams-1"},"is_legacy":false,"name":"public-gateway-with-not-default-zone","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-03-21T14:28:13.765683Z","zone":"nl-ams-1"}' headers: Content-Length: - - "1009" + - "910" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:09 GMT + - Fri, 21 Mar 2025 14:28:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,50 +99,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ea9d490b-4245-4628-8efe-213f1eae28f2 + - a13c7d3f-9f0c-4577-b9eb-e9eb8182b1fb status: 200 OK code: 200 - duration: 24.720709ms + duration: 945.848598ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 196 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"public-gateway-with-not-default-zone","tags":[],"type":"VPC-GW-S","upstream_dns_servers":[],"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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/e4bdd74e-d912-4491-96ef-45cb67671e24 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1000 + content_length: 923 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:09.649174Z","gateway_networks":[],"id":"625487a3-7fad-497a-b040-ab550da4feae","ip":{"address":"51.158.160.128","created_at":"2025-01-27T09:16:09.612360Z","gateway_id":"625487a3-7fad-497a-b040-ab550da4feae","id":"b3dace1f-6637-4155-bd19-401846471f43","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"128-160-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:09.612360Z","zone":"nl-ams-1"},"ip_mobility_enabled":false,"is_legacy":false,"name":"public-gateway-with-not-default-zone","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-01-27T09:16:09.649174Z","upstream_dns_servers":[],"version":null,"zone":"nl-ams-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:28:13.764114Z","gateway_networks":[],"id":"e4bdd74e-d912-4491-96ef-45cb67671e24","ipv4":{"address":"51.15.245.212","created_at":"2025-03-21T14:28:13.735003Z","gateway_id":"e4bdd74e-d912-4491-96ef-45cb67671e24","id":"1d1cbc63-b842-42fc-b7b9-cb336f475e4d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"212-245-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:28:13.735003Z","zone":"fr-par-1"},"is_legacy":false,"name":"TestAccScalewayDataSourceVPCPublicGateway_Basic","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-03-21T14:28:13.764114Z","zone":"fr-par-1"}' headers: Content-Length: - - "1000" + - "923" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:09 GMT + - Fri, 21 Mar 2025 14:28:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -148,10 +148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e9d3d7d4-8e7a-468a-8a48-db461c3274f9 + - 5d880d70-f991-4b97-aa2d-b8bd73aad369 status: 200 OK code: 200 - duration: 1.0759315s + duration: 45.266899ms - id: 3 request: proto: HTTP/1.1 @@ -167,8 +167,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/625487a3-7fad-497a-b040-ab550da4feae + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/8f2d1404-6d2c-40ae-9400-7c024fbba8ef method: GET response: proto: HTTP/2.0 @@ -176,20 +176,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1002 + content_length: 928 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:09.649174Z","gateway_networks":[],"id":"625487a3-7fad-497a-b040-ab550da4feae","ip":{"address":"51.158.160.128","created_at":"2025-01-27T09:16:09.612360Z","gateway_id":"625487a3-7fad-497a-b040-ab550da4feae","id":"b3dace1f-6637-4155-bd19-401846471f43","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"128-160-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:09.612360Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-with-not-default-zone","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-01-27T09:16:09.711636Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:28:13.765683Z","gateway_networks":[],"id":"8f2d1404-6d2c-40ae-9400-7c024fbba8ef","ipv4":{"address":"51.15.45.142","created_at":"2025-03-21T14:28:13.733782Z","gateway_id":"8f2d1404-6d2c-40ae-9400-7c024fbba8ef","id":"ad097cae-eb5b-440d-8687-a8139c082712","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"142-45-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:28:13.733782Z","zone":"nl-ams-1"},"is_legacy":false,"name":"public-gateway-with-not-default-zone","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-03-21T14:28:13.830792Z","version":"0.7.3","zone":"nl-ams-1"}' headers: Content-Length: - - "1002" + - "928" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:09 GMT + - Fri, 21 Mar 2025 14:28:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,10 +197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ffc5612f-d224-4879-9e96-792380582e6e + - b157ab93-461d-410d-ac7f-3f17080ad7d7 status: 200 OK code: 200 - duration: 106.83375ms + duration: 51.516053ms - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/48632d57-88f6-4e71-b32f-62e5f3ff0e01 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/e4bdd74e-d912-4491-96ef-45cb67671e24 method: GET response: proto: HTTP/2.0 @@ -225,20 +225,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1006 + content_length: 938 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:09.409713Z","gateway_networks":[],"id":"48632d57-88f6-4e71-b32f-62e5f3ff0e01","ip":{"address":"51.158.64.26","created_at":"2025-01-27T09:16:09.394007Z","gateway_id":"48632d57-88f6-4e71-b32f-62e5f3ff0e01","id":"aa78ee1c-8ca0-4565-bacb-7beecc956af9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"26-64-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:09.394007Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"TestAccScalewayDataSourceVPCPublicGateway_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:14.188174Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:28:13.764114Z","gateway_networks":[],"id":"e4bdd74e-d912-4491-96ef-45cb67671e24","ipv4":{"address":"51.15.245.212","created_at":"2025-03-21T14:28:13.735003Z","gateway_id":"e4bdd74e-d912-4491-96ef-45cb67671e24","id":"1d1cbc63-b842-42fc-b7b9-cb336f475e4d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"212-245-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:28:13.735003Z","zone":"fr-par-1"},"is_legacy":false,"name":"TestAccScalewayDataSourceVPCPublicGateway_Basic","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-03-21T14:28:18.543066Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "1006" + - "938" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:14 GMT + - Fri, 21 Mar 2025 14:28:18 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -246,10 +246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d6c555d-2a91-4ee0-825c-538fda16b1f6 + - 4429f07f-a7b6-40a3-90ba-6525eab66476 status: 200 OK code: 200 - duration: 32.156ms + duration: 31.646068ms - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/48632d57-88f6-4e71-b32f-62e5f3ff0e01 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/e4bdd74e-d912-4491-96ef-45cb67671e24 method: GET response: proto: HTTP/2.0 @@ -274,20 +274,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1006 + content_length: 938 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:09.409713Z","gateway_networks":[],"id":"48632d57-88f6-4e71-b32f-62e5f3ff0e01","ip":{"address":"51.158.64.26","created_at":"2025-01-27T09:16:09.394007Z","gateway_id":"48632d57-88f6-4e71-b32f-62e5f3ff0e01","id":"aa78ee1c-8ca0-4565-bacb-7beecc956af9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"26-64-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:09.394007Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"TestAccScalewayDataSourceVPCPublicGateway_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:14.188174Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:28:13.764114Z","gateway_networks":[],"id":"e4bdd74e-d912-4491-96ef-45cb67671e24","ipv4":{"address":"51.15.245.212","created_at":"2025-03-21T14:28:13.735003Z","gateway_id":"e4bdd74e-d912-4491-96ef-45cb67671e24","id":"1d1cbc63-b842-42fc-b7b9-cb336f475e4d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"212-245-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:28:13.735003Z","zone":"fr-par-1"},"is_legacy":false,"name":"TestAccScalewayDataSourceVPCPublicGateway_Basic","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-03-21T14:28:18.543066Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "1006" + - "938" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:14 GMT + - Fri, 21 Mar 2025 14:28:18 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -295,10 +295,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5392761b-ea8d-443f-97b4-3e246f15021b + - 75f227f1-a83c-489a-ab79-4b9339144d85 status: 200 OK code: 200 - duration: 26.489792ms + duration: 33.503314ms - 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-gw/v1/zones/nl-ams-1/gateways/625487a3-7fad-497a-b040-ab550da4feae + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/8f2d1404-6d2c-40ae-9400-7c024fbba8ef method: GET response: proto: HTTP/2.0 @@ -323,20 +323,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1003 + content_length: 929 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:09.649174Z","gateway_networks":[],"id":"625487a3-7fad-497a-b040-ab550da4feae","ip":{"address":"51.158.160.128","created_at":"2025-01-27T09:16:09.612360Z","gateway_id":"625487a3-7fad-497a-b040-ab550da4feae","id":"b3dace1f-6637-4155-bd19-401846471f43","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"128-160-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:09.612360Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-with-not-default-zone","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-01-27T09:16:09.853760Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:28:13.765683Z","gateway_networks":[],"id":"8f2d1404-6d2c-40ae-9400-7c024fbba8ef","ipv4":{"address":"51.15.45.142","created_at":"2025-03-21T14:28:13.733782Z","gateway_id":"8f2d1404-6d2c-40ae-9400-7c024fbba8ef","id":"ad097cae-eb5b-440d-8687-a8139c082712","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"142-45-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:28:13.733782Z","zone":"nl-ams-1"},"is_legacy":false,"name":"public-gateway-with-not-default-zone","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-03-21T14:28:14.028875Z","version":"0.7.3","zone":"nl-ams-1"}' headers: Content-Length: - - "1003" + - "929" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:14 GMT + - Fri, 21 Mar 2025 14:28:18 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -344,10 +344,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 22155d68-b461-4e4f-b3e4-bb3ebbdfb8e8 + - ff28b18f-4c41-4bdf-8eed-69417e7ada69 status: 200 OK code: 200 - duration: 47.114ms + duration: 46.0897ms - 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-gw/v1/zones/nl-ams-1/gateways/625487a3-7fad-497a-b040-ab550da4feae + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/8f2d1404-6d2c-40ae-9400-7c024fbba8ef method: GET response: proto: HTTP/2.0 @@ -372,20 +372,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 999 + content_length: 925 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:09.649174Z","gateway_networks":[],"id":"625487a3-7fad-497a-b040-ab550da4feae","ip":{"address":"51.158.160.128","created_at":"2025-01-27T09:16:09.612360Z","gateway_id":"625487a3-7fad-497a-b040-ab550da4feae","id":"b3dace1f-6637-4155-bd19-401846471f43","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"128-160-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:09.612360Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-with-not-default-zone","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-01-27T09:16:15.070772Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:28:13.765683Z","gateway_networks":[],"id":"8f2d1404-6d2c-40ae-9400-7c024fbba8ef","ipv4":{"address":"51.15.45.142","created_at":"2025-03-21T14:28:13.733782Z","gateway_id":"8f2d1404-6d2c-40ae-9400-7c024fbba8ef","id":"ad097cae-eb5b-440d-8687-a8139c082712","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"142-45-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:28:13.733782Z","zone":"nl-ams-1"},"is_legacy":false,"name":"public-gateway-with-not-default-zone","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-03-21T14:28:19.139437Z","version":"0.7.3","zone":"nl-ams-1"}' headers: Content-Length: - - "999" + - "925" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:19 GMT + - Fri, 21 Mar 2025 14:28:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -393,10 +393,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d3c0412b-089a-4d0c-865c-67192cc29883 + - a3a11d8f-76e0-4fe5-b95c-2943b374fbf1 status: 200 OK code: 200 - duration: 58.295375ms + duration: 57.094713ms - 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-gw/v1/zones/nl-ams-1/gateways/625487a3-7fad-497a-b040-ab550da4feae + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/8f2d1404-6d2c-40ae-9400-7c024fbba8ef method: GET response: proto: HTTP/2.0 @@ -421,20 +421,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 999 + content_length: 925 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:09.649174Z","gateway_networks":[],"id":"625487a3-7fad-497a-b040-ab550da4feae","ip":{"address":"51.158.160.128","created_at":"2025-01-27T09:16:09.612360Z","gateway_id":"625487a3-7fad-497a-b040-ab550da4feae","id":"b3dace1f-6637-4155-bd19-401846471f43","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"128-160-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:09.612360Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-with-not-default-zone","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-01-27T09:16:15.070772Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:28:13.765683Z","gateway_networks":[],"id":"8f2d1404-6d2c-40ae-9400-7c024fbba8ef","ipv4":{"address":"51.15.45.142","created_at":"2025-03-21T14:28:13.733782Z","gateway_id":"8f2d1404-6d2c-40ae-9400-7c024fbba8ef","id":"ad097cae-eb5b-440d-8687-a8139c082712","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"142-45-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:28:13.733782Z","zone":"nl-ams-1"},"is_legacy":false,"name":"public-gateway-with-not-default-zone","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-03-21T14:28:19.139437Z","version":"0.7.3","zone":"nl-ams-1"}' headers: Content-Length: - - "999" + - "925" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:19 GMT + - Fri, 21 Mar 2025 14:28:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -442,10 +442,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dbd94b93-b8e5-48a7-93e6-d0334e7bc70f + - 27e1ada6-a95e-406c-a93d-e82c6b3c40f8 status: 200 OK code: 200 - duration: 41.842917ms + duration: 43.247161ms - 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-gw/v1/zones/fr-par-1/gateways/48632d57-88f6-4e71-b32f-62e5f3ff0e01 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/e4bdd74e-d912-4491-96ef-45cb67671e24 method: GET response: proto: HTTP/2.0 @@ -470,20 +470,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1006 + content_length: 938 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:09.409713Z","gateway_networks":[],"id":"48632d57-88f6-4e71-b32f-62e5f3ff0e01","ip":{"address":"51.158.64.26","created_at":"2025-01-27T09:16:09.394007Z","gateway_id":"48632d57-88f6-4e71-b32f-62e5f3ff0e01","id":"aa78ee1c-8ca0-4565-bacb-7beecc956af9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"26-64-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:09.394007Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"TestAccScalewayDataSourceVPCPublicGateway_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:14.188174Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:28:13.764114Z","gateway_networks":[],"id":"e4bdd74e-d912-4491-96ef-45cb67671e24","ipv4":{"address":"51.15.245.212","created_at":"2025-03-21T14:28:13.735003Z","gateway_id":"e4bdd74e-d912-4491-96ef-45cb67671e24","id":"1d1cbc63-b842-42fc-b7b9-cb336f475e4d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"212-245-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:28:13.735003Z","zone":"fr-par-1"},"is_legacy":false,"name":"TestAccScalewayDataSourceVPCPublicGateway_Basic","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-03-21T14:28:18.543066Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "1006" + - "938" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:21 GMT + - Fri, 21 Mar 2025 14:28:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -491,10 +491,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 98dc7ed5-4bdc-4115-a96e-96e1a5ffcd2f + - af417305-a9c7-4432-80ce-ed9ae1ff74ef status: 200 OK code: 200 - duration: 35.677125ms + duration: 32.167491ms - id: 10 request: proto: HTTP/1.1 @@ -510,8 +510,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/625487a3-7fad-497a-b040-ab550da4feae + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/8f2d1404-6d2c-40ae-9400-7c024fbba8ef method: GET response: proto: HTTP/2.0 @@ -519,20 +519,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 999 + content_length: 925 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:09.649174Z","gateway_networks":[],"id":"625487a3-7fad-497a-b040-ab550da4feae","ip":{"address":"51.158.160.128","created_at":"2025-01-27T09:16:09.612360Z","gateway_id":"625487a3-7fad-497a-b040-ab550da4feae","id":"b3dace1f-6637-4155-bd19-401846471f43","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"128-160-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:09.612360Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-with-not-default-zone","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-01-27T09:16:15.070772Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:28:13.765683Z","gateway_networks":[],"id":"8f2d1404-6d2c-40ae-9400-7c024fbba8ef","ipv4":{"address":"51.15.45.142","created_at":"2025-03-21T14:28:13.733782Z","gateway_id":"8f2d1404-6d2c-40ae-9400-7c024fbba8ef","id":"ad097cae-eb5b-440d-8687-a8139c082712","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"142-45-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:28:13.733782Z","zone":"nl-ams-1"},"is_legacy":false,"name":"public-gateway-with-not-default-zone","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-03-21T14:28:19.139437Z","version":"0.7.3","zone":"nl-ams-1"}' headers: Content-Length: - - "999" + - "925" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:21 GMT + - Fri, 21 Mar 2025 14:28:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -540,10 +540,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 51371b46-a23f-4a74-89f8-74161ad26f38 + - 07b762c6-5013-4ebc-b00a-888780c6e517 status: 200 OK code: 200 - duration: 107.906834ms + duration: 46.052098ms - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/48632d57-88f6-4e71-b32f-62e5f3ff0e01 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/e4bdd74e-d912-4491-96ef-45cb67671e24 method: GET response: proto: HTTP/2.0 @@ -568,20 +568,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1006 + content_length: 938 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:09.409713Z","gateway_networks":[],"id":"48632d57-88f6-4e71-b32f-62e5f3ff0e01","ip":{"address":"51.158.64.26","created_at":"2025-01-27T09:16:09.394007Z","gateway_id":"48632d57-88f6-4e71-b32f-62e5f3ff0e01","id":"aa78ee1c-8ca0-4565-bacb-7beecc956af9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"26-64-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:09.394007Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"TestAccScalewayDataSourceVPCPublicGateway_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:14.188174Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:28:13.764114Z","gateway_networks":[],"id":"e4bdd74e-d912-4491-96ef-45cb67671e24","ipv4":{"address":"51.15.245.212","created_at":"2025-03-21T14:28:13.735003Z","gateway_id":"e4bdd74e-d912-4491-96ef-45cb67671e24","id":"1d1cbc63-b842-42fc-b7b9-cb336f475e4d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"212-245-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:28:13.735003Z","zone":"fr-par-1"},"is_legacy":false,"name":"TestAccScalewayDataSourceVPCPublicGateway_Basic","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-03-21T14:28:18.543066Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "1006" + - "938" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:22 GMT + - Fri, 21 Mar 2025 14:28:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -589,10 +589,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0967d2e7-770e-4379-a0ed-44f27e049ede + - ff3ec00d-0cd7-43e9-94e7-6763052d35dd status: 200 OK code: 200 - duration: 27.500541ms + duration: 37.34675ms - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/625487a3-7fad-497a-b040-ab550da4feae + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/8f2d1404-6d2c-40ae-9400-7c024fbba8ef method: GET response: proto: HTTP/2.0 @@ -617,20 +617,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 999 + content_length: 925 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:09.649174Z","gateway_networks":[],"id":"625487a3-7fad-497a-b040-ab550da4feae","ip":{"address":"51.158.160.128","created_at":"2025-01-27T09:16:09.612360Z","gateway_id":"625487a3-7fad-497a-b040-ab550da4feae","id":"b3dace1f-6637-4155-bd19-401846471f43","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"128-160-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:09.612360Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-with-not-default-zone","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-01-27T09:16:15.070772Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:28:13.765683Z","gateway_networks":[],"id":"8f2d1404-6d2c-40ae-9400-7c024fbba8ef","ipv4":{"address":"51.15.45.142","created_at":"2025-03-21T14:28:13.733782Z","gateway_id":"8f2d1404-6d2c-40ae-9400-7c024fbba8ef","id":"ad097cae-eb5b-440d-8687-a8139c082712","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"142-45-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:28:13.733782Z","zone":"nl-ams-1"},"is_legacy":false,"name":"public-gateway-with-not-default-zone","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-03-21T14:28:19.139437Z","version":"0.7.3","zone":"nl-ams-1"}' headers: Content-Length: - - "999" + - "925" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:22 GMT + - Fri, 21 Mar 2025 14:28:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -638,10 +638,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 19f96fd9-aabc-432d-a212-da32375dac5e + - dffbcd62-eb8d-472b-9aba-5f2261633d0c status: 200 OK code: 200 - duration: 45.901125ms + duration: 48.927739ms - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/48632d57-88f6-4e71-b32f-62e5f3ff0e01 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/e4bdd74e-d912-4491-96ef-45cb67671e24 method: GET response: proto: HTTP/2.0 @@ -666,20 +666,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1006 + content_length: 938 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:09.409713Z","gateway_networks":[],"id":"48632d57-88f6-4e71-b32f-62e5f3ff0e01","ip":{"address":"51.158.64.26","created_at":"2025-01-27T09:16:09.394007Z","gateway_id":"48632d57-88f6-4e71-b32f-62e5f3ff0e01","id":"aa78ee1c-8ca0-4565-bacb-7beecc956af9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"26-64-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:09.394007Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"TestAccScalewayDataSourceVPCPublicGateway_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:14.188174Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:28:13.764114Z","gateway_networks":[],"id":"e4bdd74e-d912-4491-96ef-45cb67671e24","ipv4":{"address":"51.15.245.212","created_at":"2025-03-21T14:28:13.735003Z","gateway_id":"e4bdd74e-d912-4491-96ef-45cb67671e24","id":"1d1cbc63-b842-42fc-b7b9-cb336f475e4d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"212-245-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:28:13.735003Z","zone":"fr-par-1"},"is_legacy":false,"name":"TestAccScalewayDataSourceVPCPublicGateway_Basic","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-03-21T14:28:18.543066Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "1006" + - "938" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:22 GMT + - Fri, 21 Mar 2025 14:28:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -687,10 +687,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0dbf5852-25f2-47d4-9fab-fdc8b4028b8b + - 0ee9b9a0-950f-4c96-a3f6-dbc0e7baeedd status: 200 OK code: 200 - duration: 28.350166ms + duration: 25.014663ms - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/625487a3-7fad-497a-b040-ab550da4feae + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways?include_legacy=true&name=TestAccScalewayDataSourceVPCPublicGateway_Basic&order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -715,20 +715,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 999 + content_length: 969 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:09.649174Z","gateway_networks":[],"id":"625487a3-7fad-497a-b040-ab550da4feae","ip":{"address":"51.158.160.128","created_at":"2025-01-27T09:16:09.612360Z","gateway_id":"625487a3-7fad-497a-b040-ab550da4feae","id":"b3dace1f-6637-4155-bd19-401846471f43","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"128-160-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:09.612360Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-with-not-default-zone","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-01-27T09:16:15.070772Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}' + body: '{"gateways":[{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:28:13.764114Z","gateway_networks":[],"id":"e4bdd74e-d912-4491-96ef-45cb67671e24","ipv4":{"address":"51.15.245.212","created_at":"2025-03-21T14:28:13.735003Z","gateway_id":"e4bdd74e-d912-4491-96ef-45cb67671e24","id":"1d1cbc63-b842-42fc-b7b9-cb336f475e4d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"212-245-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:28:13.735003Z","zone":"fr-par-1"},"is_legacy":false,"name":"TestAccScalewayDataSourceVPCPublicGateway_Basic","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-03-21T14:28:18.543066Z","version":"0.7.3","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "999" + - "969" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:22 GMT + - Fri, 21 Mar 2025 14:28:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -736,10 +736,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c8bad8d-6f8b-4770-a511-e3994ed4465b + - b3616e96-7f06-475f-aa4f-1db25797c46b status: 200 OK code: 200 - duration: 43.869666ms + duration: 52.515692ms - id: 15 request: proto: HTTP/1.1 @@ -755,8 +755,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways?name=TestAccScalewayDataSourceVPCPublicGateway_Basic&order_by=created_at_asc&status=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/8f2d1404-6d2c-40ae-9400-7c024fbba8ef method: GET response: proto: HTTP/2.0 @@ -764,20 +764,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1037 + content_length: 925 uncompressed: false - body: '{"gateways":[{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:09.409713Z","gateway_networks":[],"id":"48632d57-88f6-4e71-b32f-62e5f3ff0e01","ip":{"address":"51.158.64.26","created_at":"2025-01-27T09:16:09.394007Z","gateway_id":"48632d57-88f6-4e71-b32f-62e5f3ff0e01","id":"aa78ee1c-8ca0-4565-bacb-7beecc956af9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"26-64-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:09.394007Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"TestAccScalewayDataSourceVPCPublicGateway_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:14.188174Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}],"total_count":1}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:28:13.765683Z","gateway_networks":[],"id":"8f2d1404-6d2c-40ae-9400-7c024fbba8ef","ipv4":{"address":"51.15.45.142","created_at":"2025-03-21T14:28:13.733782Z","gateway_id":"8f2d1404-6d2c-40ae-9400-7c024fbba8ef","id":"ad097cae-eb5b-440d-8687-a8139c082712","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"142-45-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:28:13.733782Z","zone":"nl-ams-1"},"is_legacy":false,"name":"public-gateway-with-not-default-zone","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-03-21T14:28:19.139437Z","version":"0.7.3","zone":"nl-ams-1"}' headers: Content-Length: - - "1037" + - "925" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:22 GMT + - Fri, 21 Mar 2025 14:28:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -785,10 +785,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b1c528b2-307c-4525-8423-f0d87d60d135 + - 865757c6-d24d-4426-a5fd-8955c2845319 status: 200 OK code: 200 - duration: 75.141125ms + duration: 53.233512ms - id: 16 request: proto: HTTP/1.1 @@ -804,8 +804,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways?name=public-gateway-with-not-default-zone&order_by=created_at_asc&status=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/e4bdd74e-d912-4491-96ef-45cb67671e24 method: GET response: proto: HTTP/2.0 @@ -813,20 +813,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1030 + content_length: 938 uncompressed: false - body: '{"gateways":[{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:09.649174Z","gateway_networks":[],"id":"625487a3-7fad-497a-b040-ab550da4feae","ip":{"address":"51.158.160.128","created_at":"2025-01-27T09:16:09.612360Z","gateway_id":"625487a3-7fad-497a-b040-ab550da4feae","id":"b3dace1f-6637-4155-bd19-401846471f43","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"128-160-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:09.612360Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-with-not-default-zone","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-01-27T09:16:15.070772Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}],"total_count":1}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:28:13.764114Z","gateway_networks":[],"id":"e4bdd74e-d912-4491-96ef-45cb67671e24","ipv4":{"address":"51.15.245.212","created_at":"2025-03-21T14:28:13.735003Z","gateway_id":"e4bdd74e-d912-4491-96ef-45cb67671e24","id":"1d1cbc63-b842-42fc-b7b9-cb336f475e4d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"212-245-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:28:13.735003Z","zone":"fr-par-1"},"is_legacy":false,"name":"TestAccScalewayDataSourceVPCPublicGateway_Basic","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-03-21T14:28:18.543066Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "1030" + - "938" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:22 GMT + - Fri, 21 Mar 2025 14:28:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -834,10 +834,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 497da475-b7fd-4720-a19b-474bcfc63b67 + - ea3eb015-d1dc-4721-a5a2-f09b32f43e9e status: 200 OK code: 200 - duration: 90.6125ms + duration: 27.589376ms - id: 17 request: proto: HTTP/1.1 @@ -853,8 +853,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/48632d57-88f6-4e71-b32f-62e5f3ff0e01 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways?include_legacy=true&name=public-gateway-with-not-default-zone&order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -862,20 +862,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1006 + content_length: 956 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:09.409713Z","gateway_networks":[],"id":"48632d57-88f6-4e71-b32f-62e5f3ff0e01","ip":{"address":"51.158.64.26","created_at":"2025-01-27T09:16:09.394007Z","gateway_id":"48632d57-88f6-4e71-b32f-62e5f3ff0e01","id":"aa78ee1c-8ca0-4565-bacb-7beecc956af9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"26-64-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:09.394007Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"TestAccScalewayDataSourceVPCPublicGateway_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:14.188174Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"gateways":[{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:28:13.765683Z","gateway_networks":[],"id":"8f2d1404-6d2c-40ae-9400-7c024fbba8ef","ipv4":{"address":"51.15.45.142","created_at":"2025-03-21T14:28:13.733782Z","gateway_id":"8f2d1404-6d2c-40ae-9400-7c024fbba8ef","id":"ad097cae-eb5b-440d-8687-a8139c082712","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"142-45-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:28:13.733782Z","zone":"nl-ams-1"},"is_legacy":false,"name":"public-gateway-with-not-default-zone","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-03-21T14:28:19.139437Z","version":"0.7.3","zone":"nl-ams-1"}],"total_count":1}' headers: Content-Length: - - "1006" + - "956" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:22 GMT + - Fri, 21 Mar 2025 14:28:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -883,10 +883,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - af7e0ffb-f7c8-4898-8f6e-19cc117985f7 + - d0767bac-4fd5-44a3-8c37-adf6da58388d status: 200 OK code: 200 - duration: 26.340209ms + duration: 74.085644ms - id: 18 request: proto: HTTP/1.1 @@ -902,8 +902,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/625487a3-7fad-497a-b040-ab550da4feae + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/8f2d1404-6d2c-40ae-9400-7c024fbba8ef method: GET response: proto: HTTP/2.0 @@ -911,20 +911,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 999 + content_length: 925 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:09.649174Z","gateway_networks":[],"id":"625487a3-7fad-497a-b040-ab550da4feae","ip":{"address":"51.158.160.128","created_at":"2025-01-27T09:16:09.612360Z","gateway_id":"625487a3-7fad-497a-b040-ab550da4feae","id":"b3dace1f-6637-4155-bd19-401846471f43","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"128-160-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:09.612360Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-with-not-default-zone","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-01-27T09:16:15.070772Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:28:13.765683Z","gateway_networks":[],"id":"8f2d1404-6d2c-40ae-9400-7c024fbba8ef","ipv4":{"address":"51.15.45.142","created_at":"2025-03-21T14:28:13.733782Z","gateway_id":"8f2d1404-6d2c-40ae-9400-7c024fbba8ef","id":"ad097cae-eb5b-440d-8687-a8139c082712","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"142-45-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:28:13.733782Z","zone":"nl-ams-1"},"is_legacy":false,"name":"public-gateway-with-not-default-zone","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-03-21T14:28:19.139437Z","version":"0.7.3","zone":"nl-ams-1"}' headers: Content-Length: - - "999" + - "925" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:22 GMT + - Fri, 21 Mar 2025 14:28:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -932,10 +932,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a6f9c03d-83fc-4332-b4ef-3f87a1b1e45e + - 7476a3b7-4456-4e64-a617-c01a8dd1f987 status: 200 OK code: 200 - duration: 50.411375ms + duration: 50.070574ms - id: 19 request: proto: HTTP/1.1 @@ -951,8 +951,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/48632d57-88f6-4e71-b32f-62e5f3ff0e01 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/e4bdd74e-d912-4491-96ef-45cb67671e24 method: GET response: proto: HTTP/2.0 @@ -960,20 +960,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1006 + content_length: 938 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:09.409713Z","gateway_networks":[],"id":"48632d57-88f6-4e71-b32f-62e5f3ff0e01","ip":{"address":"51.158.64.26","created_at":"2025-01-27T09:16:09.394007Z","gateway_id":"48632d57-88f6-4e71-b32f-62e5f3ff0e01","id":"aa78ee1c-8ca0-4565-bacb-7beecc956af9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"26-64-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:09.394007Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"TestAccScalewayDataSourceVPCPublicGateway_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:14.188174Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:28:13.764114Z","gateway_networks":[],"id":"e4bdd74e-d912-4491-96ef-45cb67671e24","ipv4":{"address":"51.15.245.212","created_at":"2025-03-21T14:28:13.735003Z","gateway_id":"e4bdd74e-d912-4491-96ef-45cb67671e24","id":"1d1cbc63-b842-42fc-b7b9-cb336f475e4d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"212-245-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:28:13.735003Z","zone":"fr-par-1"},"is_legacy":false,"name":"TestAccScalewayDataSourceVPCPublicGateway_Basic","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-03-21T14:28:18.543066Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "1006" + - "938" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:23 GMT + - Fri, 21 Mar 2025 14:28:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -981,10 +981,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c3455aab-c393-41ed-a556-0a1132eb9a4f + - 69ed1ff7-607c-488b-8d6b-37e2429be12a status: 200 OK code: 200 - duration: 29.929292ms + duration: 23.316456ms - id: 20 request: proto: HTTP/1.1 @@ -1000,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-gw/v1/zones/nl-ams-1/gateways/625487a3-7fad-497a-b040-ab550da4feae + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/8f2d1404-6d2c-40ae-9400-7c024fbba8ef method: GET response: proto: HTTP/2.0 @@ -1009,20 +1009,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 999 + content_length: 925 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:09.649174Z","gateway_networks":[],"id":"625487a3-7fad-497a-b040-ab550da4feae","ip":{"address":"51.158.160.128","created_at":"2025-01-27T09:16:09.612360Z","gateway_id":"625487a3-7fad-497a-b040-ab550da4feae","id":"b3dace1f-6637-4155-bd19-401846471f43","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"128-160-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:09.612360Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-with-not-default-zone","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-01-27T09:16:15.070772Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:28:13.765683Z","gateway_networks":[],"id":"8f2d1404-6d2c-40ae-9400-7c024fbba8ef","ipv4":{"address":"51.15.45.142","created_at":"2025-03-21T14:28:13.733782Z","gateway_id":"8f2d1404-6d2c-40ae-9400-7c024fbba8ef","id":"ad097cae-eb5b-440d-8687-a8139c082712","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"142-45-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:28:13.733782Z","zone":"nl-ams-1"},"is_legacy":false,"name":"public-gateway-with-not-default-zone","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-03-21T14:28:19.139437Z","version":"0.7.3","zone":"nl-ams-1"}' headers: Content-Length: - - "999" + - "925" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:23 GMT + - Fri, 21 Mar 2025 14:28:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1030,10 +1030,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e0785af6-3eda-4a68-ae31-ad3527aaf9a6 + - acc2d005-9b12-4b6c-a7e2-3fca3b0460a6 status: 200 OK code: 200 - duration: 49.392459ms + duration: 37.690305ms - id: 21 request: proto: HTTP/1.1 @@ -1049,8 +1049,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways?name=TestAccScalewayDataSourceVPCPublicGateway_Basic&order_by=created_at_asc&status=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways?include_legacy=true&name=TestAccScalewayDataSourceVPCPublicGateway_Basic&order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -1058,20 +1058,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1037 + content_length: 969 uncompressed: false - body: '{"gateways":[{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:09.409713Z","gateway_networks":[],"id":"48632d57-88f6-4e71-b32f-62e5f3ff0e01","ip":{"address":"51.158.64.26","created_at":"2025-01-27T09:16:09.394007Z","gateway_id":"48632d57-88f6-4e71-b32f-62e5f3ff0e01","id":"aa78ee1c-8ca0-4565-bacb-7beecc956af9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"26-64-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:09.394007Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"TestAccScalewayDataSourceVPCPublicGateway_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:14.188174Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}],"total_count":1}' + body: '{"gateways":[{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:28:13.764114Z","gateway_networks":[],"id":"e4bdd74e-d912-4491-96ef-45cb67671e24","ipv4":{"address":"51.15.245.212","created_at":"2025-03-21T14:28:13.735003Z","gateway_id":"e4bdd74e-d912-4491-96ef-45cb67671e24","id":"1d1cbc63-b842-42fc-b7b9-cb336f475e4d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"212-245-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:28:13.735003Z","zone":"fr-par-1"},"is_legacy":false,"name":"TestAccScalewayDataSourceVPCPublicGateway_Basic","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-03-21T14:28:18.543066Z","version":"0.7.3","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "1037" + - "969" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:23 GMT + - Fri, 21 Mar 2025 14:28:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1079,10 +1079,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 08fad729-58ae-4b40-a67a-93c52769da3c + - 786347a0-3c1a-4740-abe2-33b85d8d2895 status: 200 OK code: 200 - duration: 86.973459ms + duration: 50.084886ms - id: 22 request: proto: HTTP/1.1 @@ -1098,8 +1098,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-gw/v1/zones/nl-ams-1/gateways?name=public-gateway-with-not-default-zone&order_by=created_at_asc&status=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways?include_legacy=true&name=public-gateway-with-not-default-zone&order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -1107,20 +1107,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1030 + content_length: 956 uncompressed: false - body: '{"gateways":[{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:09.649174Z","gateway_networks":[],"id":"625487a3-7fad-497a-b040-ab550da4feae","ip":{"address":"51.158.160.128","created_at":"2025-01-27T09:16:09.612360Z","gateway_id":"625487a3-7fad-497a-b040-ab550da4feae","id":"b3dace1f-6637-4155-bd19-401846471f43","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"128-160-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:09.612360Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-with-not-default-zone","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-01-27T09:16:15.070772Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}],"total_count":1}' + body: '{"gateways":[{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:28:13.765683Z","gateway_networks":[],"id":"8f2d1404-6d2c-40ae-9400-7c024fbba8ef","ipv4":{"address":"51.15.45.142","created_at":"2025-03-21T14:28:13.733782Z","gateway_id":"8f2d1404-6d2c-40ae-9400-7c024fbba8ef","id":"ad097cae-eb5b-440d-8687-a8139c082712","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"142-45-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:28:13.733782Z","zone":"nl-ams-1"},"is_legacy":false,"name":"public-gateway-with-not-default-zone","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-03-21T14:28:19.139437Z","version":"0.7.3","zone":"nl-ams-1"}],"total_count":1}' headers: Content-Length: - - "1030" + - "956" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:23 GMT + - Fri, 21 Mar 2025 14:28:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1128,10 +1128,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1e072616-1798-4d71-8bc2-b938bf09279d + - 140ad4da-cbcc-4574-bfa8-96e05be864e3 status: 200 OK code: 200 - duration: 95.991125ms + duration: 73.338904ms - id: 23 request: proto: HTTP/1.1 @@ -1147,8 +1147,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-gw/v1/zones/fr-par-1/gateways/48632d57-88f6-4e71-b32f-62e5f3ff0e01 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/e4bdd74e-d912-4491-96ef-45cb67671e24 method: GET response: proto: HTTP/2.0 @@ -1156,20 +1156,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1006 + content_length: 938 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:09.409713Z","gateway_networks":[],"id":"48632d57-88f6-4e71-b32f-62e5f3ff0e01","ip":{"address":"51.158.64.26","created_at":"2025-01-27T09:16:09.394007Z","gateway_id":"48632d57-88f6-4e71-b32f-62e5f3ff0e01","id":"aa78ee1c-8ca0-4565-bacb-7beecc956af9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"26-64-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:09.394007Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"TestAccScalewayDataSourceVPCPublicGateway_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:14.188174Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:28:13.764114Z","gateway_networks":[],"id":"e4bdd74e-d912-4491-96ef-45cb67671e24","ipv4":{"address":"51.15.245.212","created_at":"2025-03-21T14:28:13.735003Z","gateway_id":"e4bdd74e-d912-4491-96ef-45cb67671e24","id":"1d1cbc63-b842-42fc-b7b9-cb336f475e4d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"212-245-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:28:13.735003Z","zone":"fr-par-1"},"is_legacy":false,"name":"TestAccScalewayDataSourceVPCPublicGateway_Basic","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-03-21T14:28:18.543066Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "1006" + - "938" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:23 GMT + - Fri, 21 Mar 2025 14:28:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1177,10 +1177,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4c211a94-aa09-4487-b3e9-10849058cb32 + - a8e2159e-ab76-4bda-a83a-8b8c93a4e753 status: 200 OK code: 200 - duration: 27.285ms + duration: 23.406685ms - id: 24 request: proto: HTTP/1.1 @@ -1196,8 +1196,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-gw/v1/zones/nl-ams-1/gateways/625487a3-7fad-497a-b040-ab550da4feae + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/8f2d1404-6d2c-40ae-9400-7c024fbba8ef method: GET response: proto: HTTP/2.0 @@ -1205,20 +1205,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 999 + content_length: 925 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:09.649174Z","gateway_networks":[],"id":"625487a3-7fad-497a-b040-ab550da4feae","ip":{"address":"51.158.160.128","created_at":"2025-01-27T09:16:09.612360Z","gateway_id":"625487a3-7fad-497a-b040-ab550da4feae","id":"b3dace1f-6637-4155-bd19-401846471f43","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"128-160-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:09.612360Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-with-not-default-zone","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-01-27T09:16:15.070772Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:28:13.765683Z","gateway_networks":[],"id":"8f2d1404-6d2c-40ae-9400-7c024fbba8ef","ipv4":{"address":"51.15.45.142","created_at":"2025-03-21T14:28:13.733782Z","gateway_id":"8f2d1404-6d2c-40ae-9400-7c024fbba8ef","id":"ad097cae-eb5b-440d-8687-a8139c082712","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"142-45-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:28:13.733782Z","zone":"nl-ams-1"},"is_legacy":false,"name":"public-gateway-with-not-default-zone","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-03-21T14:28:19.139437Z","version":"0.7.3","zone":"nl-ams-1"}' headers: Content-Length: - - "999" + - "925" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:23 GMT + - Fri, 21 Mar 2025 14:28:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1226,10 +1226,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b9f3c10c-8043-4ef7-8c65-c83a357efbeb + - 1f498c8d-f971-4f9d-8cc3-c592d1163ecb status: 200 OK code: 200 - duration: 42.176417ms + duration: 38.191103ms - id: 25 request: proto: HTTP/1.1 @@ -1245,8 +1245,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-gw/v1/zones/fr-par-1/gateways/48632d57-88f6-4e71-b32f-62e5f3ff0e01 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/e4bdd74e-d912-4491-96ef-45cb67671e24 method: GET response: proto: HTTP/2.0 @@ -1254,20 +1254,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1006 + content_length: 938 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:09.409713Z","gateway_networks":[],"id":"48632d57-88f6-4e71-b32f-62e5f3ff0e01","ip":{"address":"51.158.64.26","created_at":"2025-01-27T09:16:09.394007Z","gateway_id":"48632d57-88f6-4e71-b32f-62e5f3ff0e01","id":"aa78ee1c-8ca0-4565-bacb-7beecc956af9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"26-64-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:09.394007Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"TestAccScalewayDataSourceVPCPublicGateway_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:14.188174Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:28:13.764114Z","gateway_networks":[],"id":"e4bdd74e-d912-4491-96ef-45cb67671e24","ipv4":{"address":"51.15.245.212","created_at":"2025-03-21T14:28:13.735003Z","gateway_id":"e4bdd74e-d912-4491-96ef-45cb67671e24","id":"1d1cbc63-b842-42fc-b7b9-cb336f475e4d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"212-245-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:28:13.735003Z","zone":"fr-par-1"},"is_legacy":false,"name":"TestAccScalewayDataSourceVPCPublicGateway_Basic","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-03-21T14:28:18.543066Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "1006" + - "938" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:23 GMT + - Fri, 21 Mar 2025 14:28:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1275,10 +1275,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1fa2a339-48a4-4896-aee5-366bfbf4f0fb + - 1cc10f78-5113-4211-939f-8b74ec41380b status: 200 OK code: 200 - duration: 36.410125ms + duration: 35.890298ms - id: 26 request: proto: HTTP/1.1 @@ -1294,8 +1294,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-gw/v1/zones/fr-par-1/gateways/48632d57-88f6-4e71-b32f-62e5f3ff0e01 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/e4bdd74e-d912-4491-96ef-45cb67671e24 method: GET response: proto: HTTP/2.0 @@ -1303,20 +1303,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1006 + content_length: 938 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:09.409713Z","gateway_networks":[],"id":"48632d57-88f6-4e71-b32f-62e5f3ff0e01","ip":{"address":"51.158.64.26","created_at":"2025-01-27T09:16:09.394007Z","gateway_id":"48632d57-88f6-4e71-b32f-62e5f3ff0e01","id":"aa78ee1c-8ca0-4565-bacb-7beecc956af9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"26-64-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:09.394007Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"TestAccScalewayDataSourceVPCPublicGateway_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:14.188174Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:28:13.764114Z","gateway_networks":[],"id":"e4bdd74e-d912-4491-96ef-45cb67671e24","ipv4":{"address":"51.15.245.212","created_at":"2025-03-21T14:28:13.735003Z","gateway_id":"e4bdd74e-d912-4491-96ef-45cb67671e24","id":"1d1cbc63-b842-42fc-b7b9-cb336f475e4d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"212-245-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:28:13.735003Z","zone":"fr-par-1"},"is_legacy":false,"name":"TestAccScalewayDataSourceVPCPublicGateway_Basic","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-03-21T14:28:18.543066Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "1006" + - "938" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:24 GMT + - Fri, 21 Mar 2025 14:28:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1324,10 +1324,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a33b17c8-ddf4-43fc-948e-14c527abeccf + - 7e1f93af-785c-416c-8cd8-9f064e870e82 status: 200 OK code: 200 - duration: 32.065166ms + duration: 30.00412ms - id: 27 request: proto: HTTP/1.1 @@ -1343,8 +1343,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-gw/v1/zones/nl-ams-1/gateways/625487a3-7fad-497a-b040-ab550da4feae + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/8f2d1404-6d2c-40ae-9400-7c024fbba8ef method: GET response: proto: HTTP/2.0 @@ -1352,20 +1352,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 999 + content_length: 925 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:09.649174Z","gateway_networks":[],"id":"625487a3-7fad-497a-b040-ab550da4feae","ip":{"address":"51.158.160.128","created_at":"2025-01-27T09:16:09.612360Z","gateway_id":"625487a3-7fad-497a-b040-ab550da4feae","id":"b3dace1f-6637-4155-bd19-401846471f43","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"128-160-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:09.612360Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-with-not-default-zone","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-01-27T09:16:15.070772Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:28:13.765683Z","gateway_networks":[],"id":"8f2d1404-6d2c-40ae-9400-7c024fbba8ef","ipv4":{"address":"51.15.45.142","created_at":"2025-03-21T14:28:13.733782Z","gateway_id":"8f2d1404-6d2c-40ae-9400-7c024fbba8ef","id":"ad097cae-eb5b-440d-8687-a8139c082712","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"142-45-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:28:13.733782Z","zone":"nl-ams-1"},"is_legacy":false,"name":"public-gateway-with-not-default-zone","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-03-21T14:28:19.139437Z","version":"0.7.3","zone":"nl-ams-1"}' headers: Content-Length: - - "999" + - "925" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:24 GMT + - Fri, 21 Mar 2025 14:28:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1373,10 +1373,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 26ffa7de-73b5-4c8c-aa67-7d085a950aec + - e73f6361-b6ba-4441-8c73-25010be60fc7 status: 200 OK code: 200 - duration: 46.8785ms + duration: 42.193724ms - id: 28 request: proto: HTTP/1.1 @@ -1392,8 +1392,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-gw/v1/zones/fr-par-1/gateways?name=TestAccScalewayDataSourceVPCPublicGateway_Basic&order_by=created_at_asc&status=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways?include_legacy=true&name=TestAccScalewayDataSourceVPCPublicGateway_Basic&order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -1401,20 +1401,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1037 + content_length: 969 uncompressed: false - body: '{"gateways":[{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:09.409713Z","gateway_networks":[],"id":"48632d57-88f6-4e71-b32f-62e5f3ff0e01","ip":{"address":"51.158.64.26","created_at":"2025-01-27T09:16:09.394007Z","gateway_id":"48632d57-88f6-4e71-b32f-62e5f3ff0e01","id":"aa78ee1c-8ca0-4565-bacb-7beecc956af9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"26-64-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:09.394007Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"TestAccScalewayDataSourceVPCPublicGateway_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:14.188174Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}],"total_count":1}' + body: '{"gateways":[{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:28:13.764114Z","gateway_networks":[],"id":"e4bdd74e-d912-4491-96ef-45cb67671e24","ipv4":{"address":"51.15.245.212","created_at":"2025-03-21T14:28:13.735003Z","gateway_id":"e4bdd74e-d912-4491-96ef-45cb67671e24","id":"1d1cbc63-b842-42fc-b7b9-cb336f475e4d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"212-245-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:28:13.735003Z","zone":"fr-par-1"},"is_legacy":false,"name":"TestAccScalewayDataSourceVPCPublicGateway_Basic","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-03-21T14:28:18.543066Z","version":"0.7.3","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "1037" + - "969" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:24 GMT + - Fri, 21 Mar 2025 14:28:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1422,10 +1422,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f47c9b31-30b4-4c9e-97d1-33b7740dc9a1 + - f101d626-3a61-4351-91a9-1f73d6767b1d status: 200 OK code: 200 - duration: 87.600792ms + duration: 59.725229ms - id: 29 request: proto: HTTP/1.1 @@ -1441,8 +1441,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-gw/v1/zones/nl-ams-1/gateways?name=public-gateway-with-not-default-zone&order_by=created_at_asc&status=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways?include_legacy=true&name=public-gateway-with-not-default-zone&order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -1450,20 +1450,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1030 + content_length: 956 uncompressed: false - body: '{"gateways":[{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:09.649174Z","gateway_networks":[],"id":"625487a3-7fad-497a-b040-ab550da4feae","ip":{"address":"51.158.160.128","created_at":"2025-01-27T09:16:09.612360Z","gateway_id":"625487a3-7fad-497a-b040-ab550da4feae","id":"b3dace1f-6637-4155-bd19-401846471f43","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"128-160-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:09.612360Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-with-not-default-zone","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-01-27T09:16:15.070772Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}],"total_count":1}' + body: '{"gateways":[{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:28:13.765683Z","gateway_networks":[],"id":"8f2d1404-6d2c-40ae-9400-7c024fbba8ef","ipv4":{"address":"51.15.45.142","created_at":"2025-03-21T14:28:13.733782Z","gateway_id":"8f2d1404-6d2c-40ae-9400-7c024fbba8ef","id":"ad097cae-eb5b-440d-8687-a8139c082712","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"142-45-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:28:13.733782Z","zone":"nl-ams-1"},"is_legacy":false,"name":"public-gateway-with-not-default-zone","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-03-21T14:28:19.139437Z","version":"0.7.3","zone":"nl-ams-1"}],"total_count":1}' headers: Content-Length: - - "1030" + - "956" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:24 GMT + - Fri, 21 Mar 2025 14:28:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1471,10 +1471,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - afb5eaa8-3484-45a5-b705-0067fe9f3cb2 + - 31ebd5ef-86a2-42b3-a1aa-f2c289c3cba3 status: 200 OK code: 200 - duration: 87.770583ms + duration: 65.286493ms - id: 30 request: proto: HTTP/1.1 @@ -1490,8 +1490,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/48632d57-88f6-4e71-b32f-62e5f3ff0e01 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/e4bdd74e-d912-4491-96ef-45cb67671e24 method: GET response: proto: HTTP/2.0 @@ -1499,20 +1499,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1006 + content_length: 938 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:09.409713Z","gateway_networks":[],"id":"48632d57-88f6-4e71-b32f-62e5f3ff0e01","ip":{"address":"51.158.64.26","created_at":"2025-01-27T09:16:09.394007Z","gateway_id":"48632d57-88f6-4e71-b32f-62e5f3ff0e01","id":"aa78ee1c-8ca0-4565-bacb-7beecc956af9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"26-64-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:09.394007Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"TestAccScalewayDataSourceVPCPublicGateway_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:14.188174Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:28:13.764114Z","gateway_networks":[],"id":"e4bdd74e-d912-4491-96ef-45cb67671e24","ipv4":{"address":"51.15.245.212","created_at":"2025-03-21T14:28:13.735003Z","gateway_id":"e4bdd74e-d912-4491-96ef-45cb67671e24","id":"1d1cbc63-b842-42fc-b7b9-cb336f475e4d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"212-245-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:28:13.735003Z","zone":"fr-par-1"},"is_legacy":false,"name":"TestAccScalewayDataSourceVPCPublicGateway_Basic","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-03-21T14:28:18.543066Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "1006" + - "938" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:24 GMT + - Fri, 21 Mar 2025 14:28:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1520,10 +1520,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eca53e1d-ce54-4999-a984-ef3e44839437 + - 6ac361a4-c69d-492a-a397-fb3f070ad70a status: 200 OK code: 200 - duration: 30.019792ms + duration: 24.794472ms - id: 31 request: proto: HTTP/1.1 @@ -1539,8 +1539,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-gw/v1/zones/nl-ams-1/gateways/625487a3-7fad-497a-b040-ab550da4feae + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/8f2d1404-6d2c-40ae-9400-7c024fbba8ef method: GET response: proto: HTTP/2.0 @@ -1548,20 +1548,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 999 + content_length: 925 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:09.649174Z","gateway_networks":[],"id":"625487a3-7fad-497a-b040-ab550da4feae","ip":{"address":"51.158.160.128","created_at":"2025-01-27T09:16:09.612360Z","gateway_id":"625487a3-7fad-497a-b040-ab550da4feae","id":"b3dace1f-6637-4155-bd19-401846471f43","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"128-160-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:09.612360Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-with-not-default-zone","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-01-27T09:16:15.070772Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:28:13.765683Z","gateway_networks":[],"id":"8f2d1404-6d2c-40ae-9400-7c024fbba8ef","ipv4":{"address":"51.15.45.142","created_at":"2025-03-21T14:28:13.733782Z","gateway_id":"8f2d1404-6d2c-40ae-9400-7c024fbba8ef","id":"ad097cae-eb5b-440d-8687-a8139c082712","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"142-45-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:28:13.733782Z","zone":"nl-ams-1"},"is_legacy":false,"name":"public-gateway-with-not-default-zone","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-03-21T14:28:19.139437Z","version":"0.7.3","zone":"nl-ams-1"}' headers: Content-Length: - - "999" + - "925" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:24 GMT + - Fri, 21 Mar 2025 14:28:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1569,10 +1569,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 067ddfaf-f8d3-4b77-975f-687901f250c5 + - 5cddaf79-f079-4ba0-85f6-5c1a6b4600bf status: 200 OK code: 200 - duration: 48.118625ms + duration: 45.988818ms - id: 32 request: proto: HTTP/1.1 @@ -1588,8 +1588,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-gw/v1/zones/fr-par-1/gateways/48632d57-88f6-4e71-b32f-62e5f3ff0e01 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/e4bdd74e-d912-4491-96ef-45cb67671e24 method: GET response: proto: HTTP/2.0 @@ -1597,20 +1597,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1006 + content_length: 938 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:09.409713Z","gateway_networks":[],"id":"48632d57-88f6-4e71-b32f-62e5f3ff0e01","ip":{"address":"51.158.64.26","created_at":"2025-01-27T09:16:09.394007Z","gateway_id":"48632d57-88f6-4e71-b32f-62e5f3ff0e01","id":"aa78ee1c-8ca0-4565-bacb-7beecc956af9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"26-64-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:09.394007Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"TestAccScalewayDataSourceVPCPublicGateway_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:14.188174Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:28:13.764114Z","gateway_networks":[],"id":"e4bdd74e-d912-4491-96ef-45cb67671e24","ipv4":{"address":"51.15.245.212","created_at":"2025-03-21T14:28:13.735003Z","gateway_id":"e4bdd74e-d912-4491-96ef-45cb67671e24","id":"1d1cbc63-b842-42fc-b7b9-cb336f475e4d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"212-245-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:28:13.735003Z","zone":"fr-par-1"},"is_legacy":false,"name":"TestAccScalewayDataSourceVPCPublicGateway_Basic","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-03-21T14:28:18.543066Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "1006" + - "938" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:25 GMT + - Fri, 21 Mar 2025 14:28:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1618,10 +1618,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 80a1b35f-fbcf-44b8-862a-c4830b7d4e56 + - c31111ef-c4b9-47a4-968d-7ea229639cd9 status: 200 OK code: 200 - duration: 27.489916ms + duration: 29.281749ms - id: 33 request: proto: HTTP/1.1 @@ -1637,8 +1637,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-gw/v1/zones/nl-ams-1/gateways/625487a3-7fad-497a-b040-ab550da4feae + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/8f2d1404-6d2c-40ae-9400-7c024fbba8ef method: GET response: proto: HTTP/2.0 @@ -1646,20 +1646,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 999 + content_length: 925 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:09.649174Z","gateway_networks":[],"id":"625487a3-7fad-497a-b040-ab550da4feae","ip":{"address":"51.158.160.128","created_at":"2025-01-27T09:16:09.612360Z","gateway_id":"625487a3-7fad-497a-b040-ab550da4feae","id":"b3dace1f-6637-4155-bd19-401846471f43","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"128-160-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:09.612360Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-with-not-default-zone","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-01-27T09:16:15.070772Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:28:13.765683Z","gateway_networks":[],"id":"8f2d1404-6d2c-40ae-9400-7c024fbba8ef","ipv4":{"address":"51.15.45.142","created_at":"2025-03-21T14:28:13.733782Z","gateway_id":"8f2d1404-6d2c-40ae-9400-7c024fbba8ef","id":"ad097cae-eb5b-440d-8687-a8139c082712","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"142-45-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:28:13.733782Z","zone":"nl-ams-1"},"is_legacy":false,"name":"public-gateway-with-not-default-zone","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-03-21T14:28:19.139437Z","version":"0.7.3","zone":"nl-ams-1"}' headers: Content-Length: - - "999" + - "925" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:25 GMT + - Fri, 21 Mar 2025 14:28:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1667,10 +1667,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 99ba877f-6df3-4847-b4f0-8182fbadacd2 + - 88cf557d-fbe3-4e65-b240-2221a5503084 status: 200 OK code: 200 - duration: 44.737416ms + duration: 47.262174ms - id: 34 request: proto: HTTP/1.1 @@ -1686,8 +1686,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-gw/v1/zones/fr-par-1/gateways/48632d57-88f6-4e71-b32f-62e5f3ff0e01 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/e4bdd74e-d912-4491-96ef-45cb67671e24 method: GET response: proto: HTTP/2.0 @@ -1695,20 +1695,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1006 + content_length: 938 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:09.409713Z","gateway_networks":[],"id":"48632d57-88f6-4e71-b32f-62e5f3ff0e01","ip":{"address":"51.158.64.26","created_at":"2025-01-27T09:16:09.394007Z","gateway_id":"48632d57-88f6-4e71-b32f-62e5f3ff0e01","id":"aa78ee1c-8ca0-4565-bacb-7beecc956af9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"26-64-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:09.394007Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"TestAccScalewayDataSourceVPCPublicGateway_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:14.188174Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:28:13.764114Z","gateway_networks":[],"id":"e4bdd74e-d912-4491-96ef-45cb67671e24","ipv4":{"address":"51.15.245.212","created_at":"2025-03-21T14:28:13.735003Z","gateway_id":"e4bdd74e-d912-4491-96ef-45cb67671e24","id":"1d1cbc63-b842-42fc-b7b9-cb336f475e4d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"212-245-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:28:13.735003Z","zone":"fr-par-1"},"is_legacy":false,"name":"TestAccScalewayDataSourceVPCPublicGateway_Basic","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-03-21T14:28:18.543066Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "1006" + - "938" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:25 GMT + - Fri, 21 Mar 2025 14:28:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1716,10 +1716,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b5aed9e-5ade-44ab-a289-c3703edcc910 + - aed758f7-c9c5-42e0-9aa7-5a031ff2bb94 status: 200 OK code: 200 - duration: 33.644667ms + duration: 33.576215ms - id: 35 request: proto: HTTP/1.1 @@ -1735,8 +1735,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-gw/v1/zones/nl-ams-1/gateways/625487a3-7fad-497a-b040-ab550da4feae + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/8f2d1404-6d2c-40ae-9400-7c024fbba8ef method: GET response: proto: HTTP/2.0 @@ -1744,20 +1744,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 999 + content_length: 925 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:09.649174Z","gateway_networks":[],"id":"625487a3-7fad-497a-b040-ab550da4feae","ip":{"address":"51.158.160.128","created_at":"2025-01-27T09:16:09.612360Z","gateway_id":"625487a3-7fad-497a-b040-ab550da4feae","id":"b3dace1f-6637-4155-bd19-401846471f43","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"128-160-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:09.612360Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-with-not-default-zone","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-01-27T09:16:15.070772Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:28:13.765683Z","gateway_networks":[],"id":"8f2d1404-6d2c-40ae-9400-7c024fbba8ef","ipv4":{"address":"51.15.45.142","created_at":"2025-03-21T14:28:13.733782Z","gateway_id":"8f2d1404-6d2c-40ae-9400-7c024fbba8ef","id":"ad097cae-eb5b-440d-8687-a8139c082712","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"142-45-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:28:13.733782Z","zone":"nl-ams-1"},"is_legacy":false,"name":"public-gateway-with-not-default-zone","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-03-21T14:28:19.139437Z","version":"0.7.3","zone":"nl-ams-1"}' headers: Content-Length: - - "999" + - "925" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:25 GMT + - Fri, 21 Mar 2025 14:28:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1765,10 +1765,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f15527a-d272-4ff6-8249-bce9a452ace5 + - 62545285-22ba-4911-b0bb-e43a50399200 status: 200 OK code: 200 - duration: 53.057833ms + duration: 38.172526ms - id: 36 request: proto: HTTP/1.1 @@ -1784,8 +1784,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-gw/v1/zones/fr-par-1/gateways?name=TestAccScalewayDataSourceVPCPublicGateway_Basic&order_by=created_at_asc&status=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways?include_legacy=true&name=TestAccScalewayDataSourceVPCPublicGateway_Basic&order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -1793,20 +1793,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1037 + content_length: 969 uncompressed: false - body: '{"gateways":[{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:09.409713Z","gateway_networks":[],"id":"48632d57-88f6-4e71-b32f-62e5f3ff0e01","ip":{"address":"51.158.64.26","created_at":"2025-01-27T09:16:09.394007Z","gateway_id":"48632d57-88f6-4e71-b32f-62e5f3ff0e01","id":"aa78ee1c-8ca0-4565-bacb-7beecc956af9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"26-64-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:09.394007Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"TestAccScalewayDataSourceVPCPublicGateway_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:14.188174Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}],"total_count":1}' + body: '{"gateways":[{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:28:13.764114Z","gateway_networks":[],"id":"e4bdd74e-d912-4491-96ef-45cb67671e24","ipv4":{"address":"51.15.245.212","created_at":"2025-03-21T14:28:13.735003Z","gateway_id":"e4bdd74e-d912-4491-96ef-45cb67671e24","id":"1d1cbc63-b842-42fc-b7b9-cb336f475e4d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"212-245-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:28:13.735003Z","zone":"fr-par-1"},"is_legacy":false,"name":"TestAccScalewayDataSourceVPCPublicGateway_Basic","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-03-21T14:28:18.543066Z","version":"0.7.3","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "1037" + - "969" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:25 GMT + - Fri, 21 Mar 2025 14:28:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1814,10 +1814,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9a206a53-c305-49b1-bf80-760964f448d5 + - 43a6a965-faae-4b94-8f9a-cbbe72f7e9b0 status: 200 OK code: 200 - duration: 69.042583ms + duration: 59.743201ms - id: 37 request: proto: HTTP/1.1 @@ -1833,8 +1833,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-gw/v1/zones/fr-par-1/gateways/48632d57-88f6-4e71-b32f-62e5f3ff0e01 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways?include_legacy=true&name=public-gateway-with-not-default-zone&order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -1842,20 +1842,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1006 + content_length: 956 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:09.409713Z","gateway_networks":[],"id":"48632d57-88f6-4e71-b32f-62e5f3ff0e01","ip":{"address":"51.158.64.26","created_at":"2025-01-27T09:16:09.394007Z","gateway_id":"48632d57-88f6-4e71-b32f-62e5f3ff0e01","id":"aa78ee1c-8ca0-4565-bacb-7beecc956af9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"26-64-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:09.394007Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"TestAccScalewayDataSourceVPCPublicGateway_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:14.188174Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"gateways":[{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:28:13.765683Z","gateway_networks":[],"id":"8f2d1404-6d2c-40ae-9400-7c024fbba8ef","ipv4":{"address":"51.15.45.142","created_at":"2025-03-21T14:28:13.733782Z","gateway_id":"8f2d1404-6d2c-40ae-9400-7c024fbba8ef","id":"ad097cae-eb5b-440d-8687-a8139c082712","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"142-45-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:28:13.733782Z","zone":"nl-ams-1"},"is_legacy":false,"name":"public-gateway-with-not-default-zone","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-03-21T14:28:19.139437Z","version":"0.7.3","zone":"nl-ams-1"}],"total_count":1}' headers: Content-Length: - - "1006" + - "956" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:25 GMT + - Fri, 21 Mar 2025 14:28:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1863,10 +1863,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b5b66dfd-8c1c-49a0-b1e6-beecdbd4c5d6 + - 15172f20-5c2b-4570-96f6-680bfc6bf4e2 status: 200 OK code: 200 - duration: 26.545834ms + duration: 63.691284ms - id: 38 request: proto: HTTP/1.1 @@ -1882,8 +1882,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways?name=public-gateway-with-not-default-zone&order_by=created_at_asc&status=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/e4bdd74e-d912-4491-96ef-45cb67671e24 method: GET response: proto: HTTP/2.0 @@ -1891,20 +1891,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1030 + content_length: 938 uncompressed: false - body: '{"gateways":[{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:09.649174Z","gateway_networks":[],"id":"625487a3-7fad-497a-b040-ab550da4feae","ip":{"address":"51.158.160.128","created_at":"2025-01-27T09:16:09.612360Z","gateway_id":"625487a3-7fad-497a-b040-ab550da4feae","id":"b3dace1f-6637-4155-bd19-401846471f43","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"128-160-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:09.612360Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-with-not-default-zone","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-01-27T09:16:15.070772Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}],"total_count":1}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:28:13.764114Z","gateway_networks":[],"id":"e4bdd74e-d912-4491-96ef-45cb67671e24","ipv4":{"address":"51.15.245.212","created_at":"2025-03-21T14:28:13.735003Z","gateway_id":"e4bdd74e-d912-4491-96ef-45cb67671e24","id":"1d1cbc63-b842-42fc-b7b9-cb336f475e4d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"212-245-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:28:13.735003Z","zone":"fr-par-1"},"is_legacy":false,"name":"TestAccScalewayDataSourceVPCPublicGateway_Basic","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-03-21T14:28:18.543066Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "1030" + - "938" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:25 GMT + - Fri, 21 Mar 2025 14:28:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1912,10 +1912,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 56f117bf-5bc7-4e3b-9e26-676242958918 + - 01eb4516-8b60-4611-bef6-8d8c6b31d494 status: 200 OK code: 200 - duration: 97.469042ms + duration: 26.579141ms - id: 39 request: proto: HTTP/1.1 @@ -1931,8 +1931,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/625487a3-7fad-497a-b040-ab550da4feae + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/8f2d1404-6d2c-40ae-9400-7c024fbba8ef method: GET response: proto: HTTP/2.0 @@ -1940,20 +1940,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 999 + content_length: 925 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:09.649174Z","gateway_networks":[],"id":"625487a3-7fad-497a-b040-ab550da4feae","ip":{"address":"51.158.160.128","created_at":"2025-01-27T09:16:09.612360Z","gateway_id":"625487a3-7fad-497a-b040-ab550da4feae","id":"b3dace1f-6637-4155-bd19-401846471f43","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"128-160-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:09.612360Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-with-not-default-zone","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-01-27T09:16:15.070772Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:28:13.765683Z","gateway_networks":[],"id":"8f2d1404-6d2c-40ae-9400-7c024fbba8ef","ipv4":{"address":"51.15.45.142","created_at":"2025-03-21T14:28:13.733782Z","gateway_id":"8f2d1404-6d2c-40ae-9400-7c024fbba8ef","id":"ad097cae-eb5b-440d-8687-a8139c082712","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"142-45-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:28:13.733782Z","zone":"nl-ams-1"},"is_legacy":false,"name":"public-gateway-with-not-default-zone","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-03-21T14:28:19.139437Z","version":"0.7.3","zone":"nl-ams-1"}' headers: Content-Length: - - "999" + - "925" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:25 GMT + - Fri, 21 Mar 2025 14:28:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1961,10 +1961,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 09154741-1763-4f81-acdf-c5a64c504a27 + - 2262d0b5-fb6d-4f9d-ac68-372628f7599c status: 200 OK code: 200 - duration: 41.297541ms + duration: 37.583009ms - id: 40 request: proto: HTTP/1.1 @@ -1980,8 +1980,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-gw/v1/zones/fr-par-1/gateways/48632d57-88f6-4e71-b32f-62e5f3ff0e01 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/e4bdd74e-d912-4491-96ef-45cb67671e24 method: GET response: proto: HTTP/2.0 @@ -1989,20 +1989,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1006 + content_length: 938 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:09.409713Z","gateway_networks":[],"id":"48632d57-88f6-4e71-b32f-62e5f3ff0e01","ip":{"address":"51.158.64.26","created_at":"2025-01-27T09:16:09.394007Z","gateway_id":"48632d57-88f6-4e71-b32f-62e5f3ff0e01","id":"aa78ee1c-8ca0-4565-bacb-7beecc956af9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"26-64-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:09.394007Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"TestAccScalewayDataSourceVPCPublicGateway_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:14.188174Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:28:13.764114Z","gateway_networks":[],"id":"e4bdd74e-d912-4491-96ef-45cb67671e24","ipv4":{"address":"51.15.245.212","created_at":"2025-03-21T14:28:13.735003Z","gateway_id":"e4bdd74e-d912-4491-96ef-45cb67671e24","id":"1d1cbc63-b842-42fc-b7b9-cb336f475e4d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"212-245-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:28:13.735003Z","zone":"fr-par-1"},"is_legacy":false,"name":"TestAccScalewayDataSourceVPCPublicGateway_Basic","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-03-21T14:28:18.543066Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "1006" + - "938" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:25 GMT + - Fri, 21 Mar 2025 14:28:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2010,10 +2010,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c91814e4-c849-4e0a-93ec-4cc9054c39ee + - 1072c378-358e-4a63-80cf-2cbcab470815 status: 200 OK code: 200 - duration: 31.414ms + duration: 30.077461ms - id: 41 request: proto: HTTP/1.1 @@ -2029,8 +2029,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-gw/v1/zones/nl-ams-1/gateways/625487a3-7fad-497a-b040-ab550da4feae + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/8f2d1404-6d2c-40ae-9400-7c024fbba8ef method: GET response: proto: HTTP/2.0 @@ -2038,20 +2038,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 999 + content_length: 925 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:09.649174Z","gateway_networks":[],"id":"625487a3-7fad-497a-b040-ab550da4feae","ip":{"address":"51.158.160.128","created_at":"2025-01-27T09:16:09.612360Z","gateway_id":"625487a3-7fad-497a-b040-ab550da4feae","id":"b3dace1f-6637-4155-bd19-401846471f43","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"128-160-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:09.612360Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-with-not-default-zone","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-01-27T09:16:15.070772Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:28:13.765683Z","gateway_networks":[],"id":"8f2d1404-6d2c-40ae-9400-7c024fbba8ef","ipv4":{"address":"51.15.45.142","created_at":"2025-03-21T14:28:13.733782Z","gateway_id":"8f2d1404-6d2c-40ae-9400-7c024fbba8ef","id":"ad097cae-eb5b-440d-8687-a8139c082712","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"142-45-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:28:13.733782Z","zone":"nl-ams-1"},"is_legacy":false,"name":"public-gateway-with-not-default-zone","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-03-21T14:28:19.139437Z","version":"0.7.3","zone":"nl-ams-1"}' headers: Content-Length: - - "999" + - "925" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:25 GMT + - Fri, 21 Mar 2025 14:28:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2059,10 +2059,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c81827c3-c49b-491f-a112-48f3fdfffa16 + - 53c4539a-c93e-41de-80f2-4478f1bb06cd status: 200 OK code: 200 - duration: 44.608083ms + duration: 40.93674ms - id: 42 request: proto: HTTP/1.1 @@ -2078,8 +2078,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-gw/v1/zones/fr-par-1/gateways?name=TestAccScalewayDataSourceVPCPublicGateway_Basic&order_by=created_at_asc&status=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways?include_legacy=true&name=TestAccScalewayDataSourceVPCPublicGateway_Basic&order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -2087,20 +2087,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1037 + content_length: 969 uncompressed: false - body: '{"gateways":[{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:09.409713Z","gateway_networks":[],"id":"48632d57-88f6-4e71-b32f-62e5f3ff0e01","ip":{"address":"51.158.64.26","created_at":"2025-01-27T09:16:09.394007Z","gateway_id":"48632d57-88f6-4e71-b32f-62e5f3ff0e01","id":"aa78ee1c-8ca0-4565-bacb-7beecc956af9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"26-64-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:09.394007Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"TestAccScalewayDataSourceVPCPublicGateway_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:14.188174Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}],"total_count":1}' + body: '{"gateways":[{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:28:13.764114Z","gateway_networks":[],"id":"e4bdd74e-d912-4491-96ef-45cb67671e24","ipv4":{"address":"51.15.245.212","created_at":"2025-03-21T14:28:13.735003Z","gateway_id":"e4bdd74e-d912-4491-96ef-45cb67671e24","id":"1d1cbc63-b842-42fc-b7b9-cb336f475e4d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"212-245-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:28:13.735003Z","zone":"fr-par-1"},"is_legacy":false,"name":"TestAccScalewayDataSourceVPCPublicGateway_Basic","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-03-21T14:28:18.543066Z","version":"0.7.3","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "1037" + - "969" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:25 GMT + - Fri, 21 Mar 2025 14:28:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2108,10 +2108,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8aa7ab3a-e76a-457b-9223-b22ff6463675 + - d9def548-6acd-4d26-93da-8ee914ef3115 status: 200 OK code: 200 - duration: 73.610584ms + duration: 50.180245ms - id: 43 request: proto: HTTP/1.1 @@ -2127,8 +2127,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-gw/v1/zones/nl-ams-1/gateways?name=public-gateway-with-not-default-zone&order_by=created_at_asc&status=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/e4bdd74e-d912-4491-96ef-45cb67671e24 method: GET response: proto: HTTP/2.0 @@ -2136,20 +2136,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1030 + content_length: 938 uncompressed: false - body: '{"gateways":[{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:09.649174Z","gateway_networks":[],"id":"625487a3-7fad-497a-b040-ab550da4feae","ip":{"address":"51.158.160.128","created_at":"2025-01-27T09:16:09.612360Z","gateway_id":"625487a3-7fad-497a-b040-ab550da4feae","id":"b3dace1f-6637-4155-bd19-401846471f43","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"128-160-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:09.612360Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-with-not-default-zone","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-01-27T09:16:15.070772Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}],"total_count":1}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:28:13.764114Z","gateway_networks":[],"id":"e4bdd74e-d912-4491-96ef-45cb67671e24","ipv4":{"address":"51.15.245.212","created_at":"2025-03-21T14:28:13.735003Z","gateway_id":"e4bdd74e-d912-4491-96ef-45cb67671e24","id":"1d1cbc63-b842-42fc-b7b9-cb336f475e4d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"212-245-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:28:13.735003Z","zone":"fr-par-1"},"is_legacy":false,"name":"TestAccScalewayDataSourceVPCPublicGateway_Basic","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-03-21T14:28:18.543066Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "1030" + - "938" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:25 GMT + - Fri, 21 Mar 2025 14:28:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2157,10 +2157,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bb289107-2449-4c89-a3c3-550f1f3ddeb4 + - a4be27bc-d1fe-4c6c-85f1-90e50a7b4e51 status: 200 OK code: 200 - duration: 101.594ms + duration: 26.024064ms - id: 44 request: proto: HTTP/1.1 @@ -2176,8 +2176,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-gw/v1/zones/fr-par-1/gateways/48632d57-88f6-4e71-b32f-62e5f3ff0e01 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways?include_legacy=true&name=public-gateway-with-not-default-zone&order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -2185,20 +2185,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1006 + content_length: 956 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:09.409713Z","gateway_networks":[],"id":"48632d57-88f6-4e71-b32f-62e5f3ff0e01","ip":{"address":"51.158.64.26","created_at":"2025-01-27T09:16:09.394007Z","gateway_id":"48632d57-88f6-4e71-b32f-62e5f3ff0e01","id":"aa78ee1c-8ca0-4565-bacb-7beecc956af9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"26-64-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:09.394007Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"TestAccScalewayDataSourceVPCPublicGateway_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:14.188174Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"gateways":[{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:28:13.765683Z","gateway_networks":[],"id":"8f2d1404-6d2c-40ae-9400-7c024fbba8ef","ipv4":{"address":"51.15.45.142","created_at":"2025-03-21T14:28:13.733782Z","gateway_id":"8f2d1404-6d2c-40ae-9400-7c024fbba8ef","id":"ad097cae-eb5b-440d-8687-a8139c082712","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"142-45-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:28:13.733782Z","zone":"nl-ams-1"},"is_legacy":false,"name":"public-gateway-with-not-default-zone","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-03-21T14:28:19.139437Z","version":"0.7.3","zone":"nl-ams-1"}],"total_count":1}' headers: Content-Length: - - "1006" + - "956" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:25 GMT + - Fri, 21 Mar 2025 14:28:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2206,10 +2206,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 682816f6-dac1-4e5d-aa29-ccd5889d3c0a + - b974c93c-bf84-4cfc-88c5-bca4d7e088a8 status: 200 OK code: 200 - duration: 27.562167ms + duration: 78.351713ms - id: 45 request: proto: HTTP/1.1 @@ -2225,8 +2225,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-gw/v1/zones/nl-ams-1/gateways/625487a3-7fad-497a-b040-ab550da4feae + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/8f2d1404-6d2c-40ae-9400-7c024fbba8ef method: GET response: proto: HTTP/2.0 @@ -2234,20 +2234,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 999 + content_length: 925 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:09.649174Z","gateway_networks":[],"id":"625487a3-7fad-497a-b040-ab550da4feae","ip":{"address":"51.158.160.128","created_at":"2025-01-27T09:16:09.612360Z","gateway_id":"625487a3-7fad-497a-b040-ab550da4feae","id":"b3dace1f-6637-4155-bd19-401846471f43","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"128-160-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:09.612360Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-with-not-default-zone","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-01-27T09:16:15.070772Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:28:13.765683Z","gateway_networks":[],"id":"8f2d1404-6d2c-40ae-9400-7c024fbba8ef","ipv4":{"address":"51.15.45.142","created_at":"2025-03-21T14:28:13.733782Z","gateway_id":"8f2d1404-6d2c-40ae-9400-7c024fbba8ef","id":"ad097cae-eb5b-440d-8687-a8139c082712","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"142-45-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:28:13.733782Z","zone":"nl-ams-1"},"is_legacy":false,"name":"public-gateway-with-not-default-zone","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-03-21T14:28:19.139437Z","version":"0.7.3","zone":"nl-ams-1"}' headers: Content-Length: - - "999" + - "925" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:25 GMT + - Fri, 21 Mar 2025 14:28:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2255,10 +2255,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b3b2762c-eca9-41fc-880f-88681fe43b60 + - 073b7bde-2cc1-42ba-8573-57adb2b6a978 status: 200 OK code: 200 - duration: 41.945625ms + duration: 40.843486ms - id: 46 request: proto: HTTP/1.1 @@ -2274,8 +2274,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-gw/v1/zones/fr-par-1/gateways/48632d57-88f6-4e71-b32f-62e5f3ff0e01 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/e4bdd74e-d912-4491-96ef-45cb67671e24 method: GET response: proto: HTTP/2.0 @@ -2283,20 +2283,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1006 + content_length: 938 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:09.409713Z","gateway_networks":[],"id":"48632d57-88f6-4e71-b32f-62e5f3ff0e01","ip":{"address":"51.158.64.26","created_at":"2025-01-27T09:16:09.394007Z","gateway_id":"48632d57-88f6-4e71-b32f-62e5f3ff0e01","id":"aa78ee1c-8ca0-4565-bacb-7beecc956af9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"26-64-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:09.394007Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"TestAccScalewayDataSourceVPCPublicGateway_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:14.188174Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:28:13.764114Z","gateway_networks":[],"id":"e4bdd74e-d912-4491-96ef-45cb67671e24","ipv4":{"address":"51.15.245.212","created_at":"2025-03-21T14:28:13.735003Z","gateway_id":"e4bdd74e-d912-4491-96ef-45cb67671e24","id":"1d1cbc63-b842-42fc-b7b9-cb336f475e4d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"212-245-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:28:13.735003Z","zone":"fr-par-1"},"is_legacy":false,"name":"TestAccScalewayDataSourceVPCPublicGateway_Basic","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-03-21T14:28:18.543066Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "1006" + - "938" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:26 GMT + - Fri, 21 Mar 2025 14:28:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2304,10 +2304,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed35495d-702e-42a0-8181-f883f4a1bbf2 + - e823b122-ab18-4600-ad6f-8a179f072d5e status: 200 OK code: 200 - duration: 33.402334ms + duration: 28.158026ms - id: 47 request: proto: HTTP/1.1 @@ -2323,8 +2323,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-gw/v1/zones/nl-ams-1/gateways/625487a3-7fad-497a-b040-ab550da4feae + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/8f2d1404-6d2c-40ae-9400-7c024fbba8ef method: GET response: proto: HTTP/2.0 @@ -2332,20 +2332,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 999 + content_length: 925 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:09.649174Z","gateway_networks":[],"id":"625487a3-7fad-497a-b040-ab550da4feae","ip":{"address":"51.158.160.128","created_at":"2025-01-27T09:16:09.612360Z","gateway_id":"625487a3-7fad-497a-b040-ab550da4feae","id":"b3dace1f-6637-4155-bd19-401846471f43","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"128-160-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:09.612360Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-with-not-default-zone","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-01-27T09:16:15.070772Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:28:13.765683Z","gateway_networks":[],"id":"8f2d1404-6d2c-40ae-9400-7c024fbba8ef","ipv4":{"address":"51.15.45.142","created_at":"2025-03-21T14:28:13.733782Z","gateway_id":"8f2d1404-6d2c-40ae-9400-7c024fbba8ef","id":"ad097cae-eb5b-440d-8687-a8139c082712","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"142-45-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:28:13.733782Z","zone":"nl-ams-1"},"is_legacy":false,"name":"public-gateway-with-not-default-zone","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-03-21T14:28:19.139437Z","version":"0.7.3","zone":"nl-ams-1"}' headers: Content-Length: - - "999" + - "925" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:26 GMT + - Fri, 21 Mar 2025 14:28:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2353,10 +2353,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e4e53cda-9f46-4da4-b3c2-d2d57211b1a9 + - f2867816-954a-4372-b837-ea5ee1273736 status: 200 OK code: 200 - duration: 50.19325ms + duration: 57.6602ms - id: 48 request: proto: HTTP/1.1 @@ -2372,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-gw/v1/zones/fr-par-1/gateways/48632d57-88f6-4e71-b32f-62e5f3ff0e01?cleanup_dhcp=false + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/e4bdd74e-d912-4491-96ef-45cb67671e24?delete_ip=false method: DELETE response: proto: HTTP/2.0 @@ -2381,18 +2381,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 939 uncompressed: false - body: "" + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:28:13.764114Z","gateway_networks":[],"id":"e4bdd74e-d912-4491-96ef-45cb67671e24","ipv4":{"address":"51.15.245.212","created_at":"2025-03-21T14:28:13.735003Z","gateway_id":"e4bdd74e-d912-4491-96ef-45cb67671e24","id":"1d1cbc63-b842-42fc-b7b9-cb336f475e4d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"212-245-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:28:13.735003Z","zone":"fr-par-1"},"is_legacy":false,"name":"TestAccScalewayDataSourceVPCPublicGateway_Basic","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-03-21T14:28:27.503299Z","version":"0.7.3","zone":"fr-par-1"}' headers: + Content-Length: + - "939" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:26 GMT + - Fri, 21 Mar 2025 14:28:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2400,10 +2402,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b524a952-f2d0-42bf-8586-173e13608fae - status: 204 No Content - code: 204 - duration: 47.604042ms + - 5acabe90-0717-4168-aeaa-9316bbff1957 + status: 200 OK + code: 200 + duration: 41.392036ms - id: 49 request: proto: HTTP/1.1 @@ -2419,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-gw/v1/zones/fr-par-1/gateways/48632d57-88f6-4e71-b32f-62e5f3ff0e01 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/e4bdd74e-d912-4491-96ef-45cb67671e24 method: GET response: proto: HTTP/2.0 @@ -2430,7 +2432,7 @@ interactions: trailer: {} content_length: 128 uncompressed: false - body: '{"message":"resource is not found","resource":"gateway","resource_id":"48632d57-88f6-4e71-b32f-62e5f3ff0e01","type":"not_found"}' + body: '{"message":"resource is not found","resource":"gateway","resource_id":"e4bdd74e-d912-4491-96ef-45cb67671e24","type":"not_found"}' headers: Content-Length: - "128" @@ -2439,9 +2441,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:26 GMT + - Fri, 21 Mar 2025 14:28:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2449,10 +2451,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8e08f999-104e-4503-aa5d-b0aab5cb2939 + - 706bf4dd-3a9f-4755-85f1-fd914d5d76ca status: 404 Not Found code: 404 - duration: 21.834791ms + duration: 20.819301ms - id: 50 request: proto: HTTP/1.1 @@ -2468,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-gw/v1/zones/nl-ams-1/gateways/625487a3-7fad-497a-b040-ab550da4feae?cleanup_dhcp=false + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/8f2d1404-6d2c-40ae-9400-7c024fbba8ef?delete_ip=false method: DELETE response: proto: HTTP/2.0 @@ -2477,18 +2479,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 926 uncompressed: false - body: "" + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:28:13.765683Z","gateway_networks":[],"id":"8f2d1404-6d2c-40ae-9400-7c024fbba8ef","ipv4":{"address":"51.15.45.142","created_at":"2025-03-21T14:28:13.733782Z","gateway_id":"8f2d1404-6d2c-40ae-9400-7c024fbba8ef","id":"ad097cae-eb5b-440d-8687-a8139c082712","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"142-45-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:28:13.733782Z","zone":"nl-ams-1"},"is_legacy":false,"name":"public-gateway-with-not-default-zone","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-03-21T14:28:27.560072Z","version":"0.7.3","zone":"nl-ams-1"}' headers: + Content-Length: + - "926" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:26 GMT + - Fri, 21 Mar 2025 14:28:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2496,10 +2500,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - da58d89f-21be-4af8-b1ad-ff4e1ba7d8de - status: 204 No Content - code: 204 - duration: 138.701125ms + - cacb1935-c771-4dcb-b9f5-814bafbc7643 + status: 200 OK + code: 200 + duration: 97.299003ms - id: 51 request: proto: HTTP/1.1 @@ -2515,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-gw/v1/zones/nl-ams-1/gateways/625487a3-7fad-497a-b040-ab550da4feae + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/8f2d1404-6d2c-40ae-9400-7c024fbba8ef method: GET response: proto: HTTP/2.0 @@ -2526,7 +2530,7 @@ interactions: trailer: {} content_length: 128 uncompressed: false - body: '{"message":"resource is not found","resource":"gateway","resource_id":"625487a3-7fad-497a-b040-ab550da4feae","type":"not_found"}' + body: '{"message":"resource is not found","resource":"gateway","resource_id":"8f2d1404-6d2c-40ae-9400-7c024fbba8ef","type":"not_found"}' headers: Content-Length: - "128" @@ -2535,9 +2539,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:26 GMT + - Fri, 21 Mar 2025 14:28:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2545,10 +2549,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a99693c3-8e20-47fc-9001-c37bc3bc17b4 + - e2ebc56e-5e13-493f-a5cd-ee78ea8df884 status: 404 Not Found code: 404 - duration: 42.891ms + duration: 32.740283ms - id: 52 request: proto: HTTP/1.1 @@ -2564,8 +2568,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-gw/v1/zones/fr-par-1/gateways/48632d57-88f6-4e71-b32f-62e5f3ff0e01 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/e4bdd74e-d912-4491-96ef-45cb67671e24 method: GET response: proto: HTTP/2.0 @@ -2575,7 +2579,7 @@ interactions: trailer: {} content_length: 128 uncompressed: false - body: '{"message":"resource is not found","resource":"gateway","resource_id":"48632d57-88f6-4e71-b32f-62e5f3ff0e01","type":"not_found"}' + body: '{"message":"resource is not found","resource":"gateway","resource_id":"e4bdd74e-d912-4491-96ef-45cb67671e24","type":"not_found"}' headers: Content-Length: - "128" @@ -2584,9 +2588,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:26 GMT + - Fri, 21 Mar 2025 14:28:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2594,10 +2598,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a64b47b0-0361-4ba9-ab9f-c18668c8d4da + - 9254237b-1e73-4960-af12-ecbe2e1f25d5 status: 404 Not Found code: 404 - duration: 26.232875ms + duration: 21.292386ms - id: 53 request: proto: HTTP/1.1 @@ -2613,8 +2617,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-gw/v1/zones/nl-ams-1/gateways/625487a3-7fad-497a-b040-ab550da4feae + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/8f2d1404-6d2c-40ae-9400-7c024fbba8ef method: GET response: proto: HTTP/2.0 @@ -2624,7 +2628,7 @@ interactions: trailer: {} content_length: 128 uncompressed: false - body: '{"message":"resource is not found","resource":"gateway","resource_id":"625487a3-7fad-497a-b040-ab550da4feae","type":"not_found"}' + body: '{"message":"resource is not found","resource":"gateway","resource_id":"8f2d1404-6d2c-40ae-9400-7c024fbba8ef","type":"not_found"}' headers: Content-Length: - "128" @@ -2633,9 +2637,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:26 GMT + - Fri, 21 Mar 2025 14:28:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2643,10 +2647,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a91b542-a701-41aa-9e3c-42aa537f6897 + - 9e87afbd-c80b-400b-b4af-70e4ce1a9745 status: 404 Not Found code: 404 - duration: 46.150333ms + duration: 44.554818ms - id: 54 request: proto: HTTP/1.1 @@ -2662,8 +2666,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-gw/v1/zones/fr-par-1/gateways/48632d57-88f6-4e71-b32f-62e5f3ff0e01 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/e4bdd74e-d912-4491-96ef-45cb67671e24 method: GET response: proto: HTTP/2.0 @@ -2673,7 +2677,7 @@ interactions: trailer: {} content_length: 128 uncompressed: false - body: '{"message":"resource is not found","resource":"gateway","resource_id":"48632d57-88f6-4e71-b32f-62e5f3ff0e01","type":"not_found"}' + body: '{"message":"resource is not found","resource":"gateway","resource_id":"e4bdd74e-d912-4491-96ef-45cb67671e24","type":"not_found"}' headers: Content-Length: - "128" @@ -2682,9 +2686,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:27 GMT + - Fri, 21 Mar 2025 14:28:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2692,10 +2696,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b39d06a2-0914-498a-9b12-ab5051fefe12 + - 78eb0740-53d6-48c7-b74b-3ebf797de3c4 status: 404 Not Found code: 404 - duration: 28.389375ms + duration: 19.818095ms - id: 55 request: proto: HTTP/1.1 @@ -2711,8 +2715,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-gw/v1/zones/nl-ams-1/gateways/625487a3-7fad-497a-b040-ab550da4feae + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/8f2d1404-6d2c-40ae-9400-7c024fbba8ef method: GET response: proto: HTTP/2.0 @@ -2722,7 +2726,7 @@ interactions: trailer: {} content_length: 128 uncompressed: false - body: '{"message":"resource is not found","resource":"gateway","resource_id":"625487a3-7fad-497a-b040-ab550da4feae","type":"not_found"}' + body: '{"message":"resource is not found","resource":"gateway","resource_id":"8f2d1404-6d2c-40ae-9400-7c024fbba8ef","type":"not_found"}' headers: Content-Length: - "128" @@ -2731,9 +2735,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:27 GMT + - Fri, 21 Mar 2025 14:28:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2741,10 +2745,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0878ce99-f750-4d71-8dad-0c081da32bf9 + - b511e3e3-266a-44fe-ac78-1383ff1e9246 status: 404 Not Found code: 404 - duration: 42.447709ms + duration: 36.169336ms - id: 56 request: proto: HTTP/1.1 @@ -2760,8 +2764,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-gw/v1/zones/fr-par-1/gateways/48632d57-88f6-4e71-b32f-62e5f3ff0e01 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/e4bdd74e-d912-4491-96ef-45cb67671e24 method: GET response: proto: HTTP/2.0 @@ -2771,7 +2775,7 @@ interactions: trailer: {} content_length: 128 uncompressed: false - body: '{"message":"resource is not found","resource":"gateway","resource_id":"48632d57-88f6-4e71-b32f-62e5f3ff0e01","type":"not_found"}' + body: '{"message":"resource is not found","resource":"gateway","resource_id":"e4bdd74e-d912-4491-96ef-45cb67671e24","type":"not_found"}' headers: Content-Length: - "128" @@ -2780,9 +2784,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:27 GMT + - Fri, 21 Mar 2025 14:28:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2790,10 +2794,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b858f1c9-19f8-4ad5-b085-6fad3fbed235 + - 11eba74a-3e46-4727-8736-ea233ea9b26e status: 404 Not Found code: 404 - duration: 27.615583ms + duration: 19.214365ms - id: 57 request: proto: HTTP/1.1 @@ -2809,8 +2813,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-gw/v1/zones/nl-ams-1/gateways/625487a3-7fad-497a-b040-ab550da4feae + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/8f2d1404-6d2c-40ae-9400-7c024fbba8ef method: GET response: proto: HTTP/2.0 @@ -2820,7 +2824,7 @@ interactions: trailer: {} content_length: 128 uncompressed: false - body: '{"message":"resource is not found","resource":"gateway","resource_id":"625487a3-7fad-497a-b040-ab550da4feae","type":"not_found"}' + body: '{"message":"resource is not found","resource":"gateway","resource_id":"8f2d1404-6d2c-40ae-9400-7c024fbba8ef","type":"not_found"}' headers: Content-Length: - "128" @@ -2829,9 +2833,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:27 GMT + - Fri, 21 Mar 2025 14:28:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2839,7 +2843,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4095c844-bdd0-49b0-a026-bc639323c16d + - 281d2ecc-9490-49c6-96cd-eb8f77de96b2 status: 404 Not Found code: 404 - duration: 35.625375ms + duration: 38.727633ms diff --git a/internal/services/vpcgw/testdata/data-source-vpc-public-gateway-ip-basic.cassette.yaml b/internal/services/vpcgw/testdata/data-source-vpc-public-gateway-ip-basic.cassette.yaml index 28a17117d8..97ea25fc9d 100644 --- a/internal/services/vpcgw/testdata/data-source-vpc-public-gateway-ip-basic.cassette.yaml +++ b/internal/services/vpcgw/testdata/data-source-vpc-public-gateway-ip-basic.cassette.yaml @@ -12,14 +12,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[]}' + 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips method: POST response: proto: HTTP/2.0 @@ -27,20 +27,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 360 + content_length: 344 uncompressed: false - body: '{"address":"212.47.239.248","created_at":"2025-01-27T09:16:21.971042Z","gateway_id":null,"id":"61bb75b3-764a-4548-a96e-4b154363ee25","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"248-239-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:21.971042Z","zone":"fr-par-1"}' + body: '{"address":"163.172.157.246","created_at":"2025-03-21T14:38:19.917820Z","id":"f69f97a8-7e15-4aee-b1f0-f32142469c0f","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"246-157-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:38:19.917820Z","zone":"fr-par-1"}' headers: Content-Length: - - "360" + - "344" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:21 GMT + - Fri, 21 Mar 2025 14:38:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3e6e27be-45d3-4ea4-a27d-debe29cee706 + - fb647908-9884-406b-a613-716e4a3c3834 status: 200 OK code: 200 - duration: 1.440130958s + duration: 722.457768ms - 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-gw/v1/zones/fr-par-1/ips/61bb75b3-764a-4548-a96e-4b154363ee25 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/f69f97a8-7e15-4aee-b1f0-f32142469c0f method: GET response: proto: HTTP/2.0 @@ -76,20 +76,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 360 + content_length: 344 uncompressed: false - body: '{"address":"212.47.239.248","created_at":"2025-01-27T09:16:21.971042Z","gateway_id":null,"id":"61bb75b3-764a-4548-a96e-4b154363ee25","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"248-239-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:21.971042Z","zone":"fr-par-1"}' + body: '{"address":"163.172.157.246","created_at":"2025-03-21T14:38:19.917820Z","id":"f69f97a8-7e15-4aee-b1f0-f32142469c0f","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"246-157-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:38:19.917820Z","zone":"fr-par-1"}' headers: Content-Length: - - "360" + - "344" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:22 GMT + - Fri, 21 Mar 2025 14:38:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d377cf13-f204-4dd5-b8ce-a132fdc2ed06 + - ccc99544-13fa-4ae6-a87a-3c8ed00fb511 status: 200 OK code: 200 - duration: 106.19325ms + duration: 31.616295ms - 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-gw/v1/zones/fr-par-1/ips/61bb75b3-764a-4548-a96e-4b154363ee25 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/f69f97a8-7e15-4aee-b1f0-f32142469c0f method: GET response: proto: HTTP/2.0 @@ -125,20 +125,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 360 + content_length: 344 uncompressed: false - body: '{"address":"212.47.239.248","created_at":"2025-01-27T09:16:21.971042Z","gateway_id":null,"id":"61bb75b3-764a-4548-a96e-4b154363ee25","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"248-239-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:21.971042Z","zone":"fr-par-1"}' + body: '{"address":"163.172.157.246","created_at":"2025-03-21T14:38:19.917820Z","id":"f69f97a8-7e15-4aee-b1f0-f32142469c0f","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"246-157-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:38:19.917820Z","zone":"fr-par-1"}' headers: Content-Length: - - "360" + - "344" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:23 GMT + - Fri, 21 Mar 2025 14:38:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,10 +146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f500fffd-cebf-4dfb-a59d-90e226402b22 + - 1bb07d47-3c25-42e5-b99d-74345fb23d3a status: 200 OK code: 200 - duration: 22.921542ms + duration: 30.913143ms - 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-gw/v1/zones/fr-par-1/ips/61bb75b3-764a-4548-a96e-4b154363ee25 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/f69f97a8-7e15-4aee-b1f0-f32142469c0f method: GET response: proto: HTTP/2.0 @@ -174,20 +174,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 360 + content_length: 344 uncompressed: false - body: '{"address":"212.47.239.248","created_at":"2025-01-27T09:16:21.971042Z","gateway_id":null,"id":"61bb75b3-764a-4548-a96e-4b154363ee25","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"248-239-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:21.971042Z","zone":"fr-par-1"}' + body: '{"address":"163.172.157.246","created_at":"2025-03-21T14:38:19.917820Z","id":"f69f97a8-7e15-4aee-b1f0-f32142469c0f","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"246-157-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:38:19.917820Z","zone":"fr-par-1"}' headers: Content-Length: - - "360" + - "344" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:23 GMT + - Fri, 21 Mar 2025 14:38:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -195,10 +195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 027d44b8-cfc8-42c6-aa81-0dfeda32aeb3 + - 04ac558c-7192-46ae-90a2-f7d921c6a243 status: 200 OK code: 200 - duration: 25.064458ms + duration: 25.622565ms - 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-gw/v1/zones/fr-par-1/ips/61bb75b3-764a-4548-a96e-4b154363ee25 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/f69f97a8-7e15-4aee-b1f0-f32142469c0f method: GET response: proto: HTTP/2.0 @@ -223,20 +223,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 360 + content_length: 344 uncompressed: false - body: '{"address":"212.47.239.248","created_at":"2025-01-27T09:16:21.971042Z","gateway_id":null,"id":"61bb75b3-764a-4548-a96e-4b154363ee25","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"248-239-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:21.971042Z","zone":"fr-par-1"}' + body: '{"address":"163.172.157.246","created_at":"2025-03-21T14:38:19.917820Z","id":"f69f97a8-7e15-4aee-b1f0-f32142469c0f","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"246-157-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:38:19.917820Z","zone":"fr-par-1"}' headers: Content-Length: - - "360" + - "344" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:23 GMT + - Fri, 21 Mar 2025 14:38:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -244,10 +244,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 33a3cf65-00f4-47f4-b279-76b3973537a9 + - 29f5a38a-eb37-4873-8154-641995042403 status: 200 OK code: 200 - duration: 22.953208ms + duration: 22.568352ms - id: 5 request: proto: HTTP/1.1 @@ -263,8 +263,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-gw/v1/zones/fr-par-1/ips/61bb75b3-764a-4548-a96e-4b154363ee25 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/f69f97a8-7e15-4aee-b1f0-f32142469c0f method: GET response: proto: HTTP/2.0 @@ -272,20 +272,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 360 + content_length: 344 uncompressed: false - body: '{"address":"212.47.239.248","created_at":"2025-01-27T09:16:21.971042Z","gateway_id":null,"id":"61bb75b3-764a-4548-a96e-4b154363ee25","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"248-239-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:21.971042Z","zone":"fr-par-1"}' + body: '{"address":"163.172.157.246","created_at":"2025-03-21T14:38:19.917820Z","id":"f69f97a8-7e15-4aee-b1f0-f32142469c0f","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"246-157-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:38:19.917820Z","zone":"fr-par-1"}' headers: Content-Length: - - "360" + - "344" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:24 GMT + - Fri, 21 Mar 2025 14:38:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -293,10 +293,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 364ab906-d422-4d09-bbf1-3a087048c242 + - 842c2f62-19b8-4d9e-8fb7-5ed97f8b8c8d status: 200 OK code: 200 - duration: 28.300625ms + duration: 21.021783ms - 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-gw/v1/zones/fr-par-1/ips/61bb75b3-764a-4548-a96e-4b154363ee25 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/f69f97a8-7e15-4aee-b1f0-f32142469c0f method: GET response: proto: HTTP/2.0 @@ -321,20 +321,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 360 + content_length: 344 uncompressed: false - body: '{"address":"212.47.239.248","created_at":"2025-01-27T09:16:21.971042Z","gateway_id":null,"id":"61bb75b3-764a-4548-a96e-4b154363ee25","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"248-239-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:21.971042Z","zone":"fr-par-1"}' + body: '{"address":"163.172.157.246","created_at":"2025-03-21T14:38:19.917820Z","id":"f69f97a8-7e15-4aee-b1f0-f32142469c0f","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"246-157-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:38:19.917820Z","zone":"fr-par-1"}' headers: Content-Length: - - "360" + - "344" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:25 GMT + - Fri, 21 Mar 2025 14:38:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -342,10 +342,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d4fb0ba7-9e7b-446b-973c-3860ae2ce45f + - 5c84cc29-f8f1-4128-816d-fa5cb77fc699 status: 200 OK code: 200 - duration: 22.884083ms + duration: 27.6412ms - 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-gw/v1/zones/fr-par-1/ips/61bb75b3-764a-4548-a96e-4b154363ee25 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/f69f97a8-7e15-4aee-b1f0-f32142469c0f method: GET response: proto: HTTP/2.0 @@ -370,20 +370,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 360 + content_length: 344 uncompressed: false - body: '{"address":"212.47.239.248","created_at":"2025-01-27T09:16:21.971042Z","gateway_id":null,"id":"61bb75b3-764a-4548-a96e-4b154363ee25","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"248-239-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:21.971042Z","zone":"fr-par-1"}' + body: '{"address":"163.172.157.246","created_at":"2025-03-21T14:38:19.917820Z","id":"f69f97a8-7e15-4aee-b1f0-f32142469c0f","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"246-157-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:38:19.917820Z","zone":"fr-par-1"}' headers: Content-Length: - - "360" + - "344" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:25 GMT + - Fri, 21 Mar 2025 14:38:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -391,10 +391,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1e7db77c-63bb-4c49-97d3-878a7498f41b + - 88f2e0de-3286-48cb-a981-a880e0b3230a status: 200 OK code: 200 - duration: 21.603083ms + duration: 98.279476ms - id: 8 request: proto: HTTP/1.1 @@ -410,8 +410,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-gw/v1/zones/fr-par-1/ips/61bb75b3-764a-4548-a96e-4b154363ee25 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/f69f97a8-7e15-4aee-b1f0-f32142469c0f method: GET response: proto: HTTP/2.0 @@ -419,20 +419,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 360 + content_length: 344 uncompressed: false - body: '{"address":"212.47.239.248","created_at":"2025-01-27T09:16:21.971042Z","gateway_id":null,"id":"61bb75b3-764a-4548-a96e-4b154363ee25","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"248-239-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:21.971042Z","zone":"fr-par-1"}' + body: '{"address":"163.172.157.246","created_at":"2025-03-21T14:38:19.917820Z","id":"f69f97a8-7e15-4aee-b1f0-f32142469c0f","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"246-157-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:38:19.917820Z","zone":"fr-par-1"}' headers: Content-Length: - - "360" + - "344" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:26 GMT + - Fri, 21 Mar 2025 14:38:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -440,10 +440,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0d1b299a-2aa4-440a-b097-746d48d2c062 + - c3c10b66-feb7-4f58-949c-9ee3fcd938f5 status: 200 OK code: 200 - duration: 22.664708ms + duration: 29.756875ms - 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-gw/v1/zones/fr-par-1/ips/61bb75b3-764a-4548-a96e-4b154363ee25 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/f69f97a8-7e15-4aee-b1f0-f32142469c0f method: GET response: proto: HTTP/2.0 @@ -468,20 +468,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 360 + content_length: 344 uncompressed: false - body: '{"address":"212.47.239.248","created_at":"2025-01-27T09:16:21.971042Z","gateway_id":null,"id":"61bb75b3-764a-4548-a96e-4b154363ee25","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"248-239-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:21.971042Z","zone":"fr-par-1"}' + body: '{"address":"163.172.157.246","created_at":"2025-03-21T14:38:19.917820Z","id":"f69f97a8-7e15-4aee-b1f0-f32142469c0f","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"246-157-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:38:19.917820Z","zone":"fr-par-1"}' headers: Content-Length: - - "360" + - "344" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:26 GMT + - Fri, 21 Mar 2025 14:38:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -489,10 +489,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 357ae2f1-8a26-4b37-82db-97e1083170ce + - f35dc117-065e-4462-b9e2-e2f5dc5da824 status: 200 OK code: 200 - duration: 22.48125ms + duration: 19.08717ms - 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-gw/v1/zones/fr-par-1/ips/61bb75b3-764a-4548-a96e-4b154363ee25 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/f69f97a8-7e15-4aee-b1f0-f32142469c0f method: GET response: proto: HTTP/2.0 @@ -517,20 +517,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 360 + content_length: 344 uncompressed: false - body: '{"address":"212.47.239.248","created_at":"2025-01-27T09:16:21.971042Z","gateway_id":null,"id":"61bb75b3-764a-4548-a96e-4b154363ee25","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"248-239-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:21.971042Z","zone":"fr-par-1"}' + body: '{"address":"163.172.157.246","created_at":"2025-03-21T14:38:19.917820Z","id":"f69f97a8-7e15-4aee-b1f0-f32142469c0f","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"246-157-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:38:19.917820Z","zone":"fr-par-1"}' headers: Content-Length: - - "360" + - "344" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:26 GMT + - Fri, 21 Mar 2025 14:38:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -538,10 +538,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 810a6455-eb1f-42c4-ba72-397bea24cedf + - 225a8e10-e56a-4db2-92bb-4bee09b67cc9 status: 200 OK code: 200 - duration: 25.587334ms + duration: 22.336901ms - 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-gw/v1/zones/fr-par-1/ips/61bb75b3-764a-4548-a96e-4b154363ee25 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/f69f97a8-7e15-4aee-b1f0-f32142469c0f method: DELETE response: proto: HTTP/2.0 @@ -575,9 +575,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:27 GMT + - Fri, 21 Mar 2025 14:38:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -585,10 +585,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0afeae10-b955-4b10-9ad5-c12e529f1c9a + - 7e0ecf55-f4d1-4ceb-8860-c1b2618e9a7c status: 204 No Content code: 204 - duration: 542.948083ms + duration: 636.146267ms - id: 12 request: proto: HTTP/1.1 @@ -604,8 +604,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-gw/v1/zones/fr-par-1/ips/61bb75b3-764a-4548-a96e-4b154363ee25 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/f69f97a8-7e15-4aee-b1f0-f32142469c0f method: GET response: proto: HTTP/2.0 @@ -615,7 +615,7 @@ interactions: trailer: {} content_length: 123 uncompressed: false - body: '{"message":"resource is not found","resource":"ip","resource_id":"61bb75b3-764a-4548-a96e-4b154363ee25","type":"not_found"}' + body: '{"message":"resource is not found","resource":"ip","resource_id":"f69f97a8-7e15-4aee-b1f0-f32142469c0f","type":"not_found"}' headers: Content-Length: - "123" @@ -624,9 +624,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:27 GMT + - Fri, 21 Mar 2025 14:38:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -634,10 +634,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eb18ff06-526b-459f-9b18-bca0c5f751a3 + - 53826298-70f9-4034-a240-ad270ae8ff49 status: 404 Not Found code: 404 - duration: 20.797375ms + duration: 25.104893ms - id: 13 request: proto: HTTP/1.1 @@ -653,8 +653,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-gw/v1/zones/fr-par-1/ips/61bb75b3-764a-4548-a96e-4b154363ee25 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/f69f97a8-7e15-4aee-b1f0-f32142469c0f method: GET response: proto: HTTP/2.0 @@ -664,7 +664,7 @@ interactions: trailer: {} content_length: 123 uncompressed: false - body: '{"message":"resource is not found","resource":"ip","resource_id":"61bb75b3-764a-4548-a96e-4b154363ee25","type":"not_found"}' + body: '{"message":"resource is not found","resource":"ip","resource_id":"f69f97a8-7e15-4aee-b1f0-f32142469c0f","type":"not_found"}' headers: Content-Length: - "123" @@ -673,9 +673,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:27 GMT + - Fri, 21 Mar 2025 14:38:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -683,7 +683,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f46f6f39-9d26-48bc-8c5c-ad78e6ae16e4 + - 44288c34-cfaf-4c0c-b41b-f2cdb0b51684 status: 404 Not Found code: 404 - duration: 20.866208ms + duration: 22.880358ms 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 c4ee77d945..ccdeeaf1fd 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 @@ -6,20 +6,20 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 79 + content_length: 102 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"192.168.1.0/24"}' + 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 - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs method: POST response: proto: HTTP/2.0 @@ -27,20 +27,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 568 + content_length: 352 uncompressed: false - body: '{"address":"192.168.1.1","created_at":"2025-01-27T09:16:24.754760Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"a6fc5829-8455-417f-846d-11f9515a87ac","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:24.754760Z","valid_lifetime":"3600s","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-24T09:14:39.160125Z","id":"70331283-1308-4a96-8e20-4061b235979e","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-03-24T09:14:39.160125Z"}' headers: Content-Length: - - "568" + - "352" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:24 GMT + - Mon, 24 Mar 2025 09:14:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 082f43ee-3eb8-4f84-81ea-880e4c63a760 + - b1fad9b1-1895-482d-866b-9018861f801d status: 200 OK code: 200 - duration: 69.057375ms + duration: 313.034732ms - 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-gw/v1/zones/fr-par-1/dhcps/a6fc5829-8455-417f-846d-11f9515a87ac + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/70331283-1308-4a96-8e20-4061b235979e method: GET response: proto: HTTP/2.0 @@ -76,20 +76,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 568 + content_length: 352 uncompressed: false - body: '{"address":"192.168.1.1","created_at":"2025-01-27T09:16:24.754760Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"a6fc5829-8455-417f-846d-11f9515a87ac","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:24.754760Z","valid_lifetime":"3600s","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-24T09:14:39.160125Z","id":"70331283-1308-4a96-8e20-4061b235979e","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-03-24T09:14:39.160125Z"}' headers: Content-Length: - - "568" + - "352" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:24 GMT + - Mon, 24 Mar 2025 09:14:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,28 +97,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fedcc46d-3488-46af-86ce-43d5865fc385 + - d5de2d9b-f923-4a77-9b42-0925507eaca7 status: 200 OK code: 200 - duration: 28.231708ms + duration: 95.258517ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 103 + content_length: 117 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"pn_test_network","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null}' + body: '{"name":"pn_test_network","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":["172.16.32.0/22"]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: @@ -129,7 +129,7 @@ interactions: trailer: {} content_length: 1019 uncompressed: false - body: '{"created_at":"2025-01-27T09:16:24.763092Z","dhcp_enabled":true,"id":"d9ff0ea2-b13a-4150-b418-77d33e4b75bb","name":"pn_test_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-27T09:16:24.763092Z","id":"1e2c80ec-96ed-4f84-9824-6abbd84226db","private_network_id":"d9ff0ea2-b13a-4150-b418-77d33e4b75bb","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.28.0/22","updated_at":"2025-01-27T09:16:24.763092Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-01-27T09:16:24.763092Z","id":"0b065a25-eddd-4397-9ac7-988b7c35f79a","private_network_id":"d9ff0ea2-b13a-4150-b418-77d33e4b75bb","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:94b4::/64","updated_at":"2025-01-27T09:16:24.763092Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-01-27T09:16:24.763092Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-03-24T09:14:39.168179Z","dhcp_enabled":true,"id":"69193ea4-2393-42d9-a93a-382286d358fa","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-03-24T09:14:39.168179Z","id":"b08dc41c-e47b-4eef-8dfa-6f666591e0a4","private_network_id":"69193ea4-2393-42d9-a93a-382286d358fa","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-03-24T09:14:39.168179Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-03-24T09:14:39.168179Z","id":"c0834a45-47f6-4d06-90e2-1868e6df9b22","private_network_id":"69193ea4-2393-42d9-a93a-382286d358fa","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:f905::/64","updated_at":"2025-03-24T09:14:39.168179Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-03-24T09:14:39.168179Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - "1019" @@ -138,9 +138,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:25 GMT + - Mon, 24 Mar 2025 09:14:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -148,10 +148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 59527703-59b5-4c5d-bc67-d5432c619dfd + - 8e0e42ce-f270-4f14-90ee-ab14a59a405e status: 200 OK code: 200 - duration: 681.942833ms + duration: 793.970612ms - id: 3 request: proto: HTTP/1.1 @@ -167,8 +167,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d9ff0ea2-b13a-4150-b418-77d33e4b75bb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/69193ea4-2393-42d9-a93a-382286d358fa method: GET response: proto: HTTP/2.0 @@ -178,7 +178,7 @@ interactions: trailer: {} content_length: 1019 uncompressed: false - body: '{"created_at":"2025-01-27T09:16:24.763092Z","dhcp_enabled":true,"id":"d9ff0ea2-b13a-4150-b418-77d33e4b75bb","name":"pn_test_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-27T09:16:24.763092Z","id":"1e2c80ec-96ed-4f84-9824-6abbd84226db","private_network_id":"d9ff0ea2-b13a-4150-b418-77d33e4b75bb","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.28.0/22","updated_at":"2025-01-27T09:16:24.763092Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-01-27T09:16:24.763092Z","id":"0b065a25-eddd-4397-9ac7-988b7c35f79a","private_network_id":"d9ff0ea2-b13a-4150-b418-77d33e4b75bb","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:94b4::/64","updated_at":"2025-01-27T09:16:24.763092Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-01-27T09:16:24.763092Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-03-24T09:14:39.168179Z","dhcp_enabled":true,"id":"69193ea4-2393-42d9-a93a-382286d358fa","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-03-24T09:14:39.168179Z","id":"b08dc41c-e47b-4eef-8dfa-6f666591e0a4","private_network_id":"69193ea4-2393-42d9-a93a-382286d358fa","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-03-24T09:14:39.168179Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-03-24T09:14:39.168179Z","id":"c0834a45-47f6-4d06-90e2-1868e6df9b22","private_network_id":"69193ea4-2393-42d9-a93a-382286d358fa","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:f905::/64","updated_at":"2025-03-24T09:14:39.168179Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-03-24T09:14:39.168179Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - "1019" @@ -187,9 +187,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:25 GMT + - Mon, 24 Mar 2025 09:14:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,29 +197,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 26cdb4b7-7b29-48c0-99dd-c3c2b95d8f6d + - 49ec0769-c0a4-4b3c-a109-6e8b5d5b5136 status: 200 OK code: 200 - duration: 36.974333ms + duration: 78.92991ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 181 + content_length: 155 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"tf-pn-cranky-margulis","tags":[],"type":"VPC-GW-S","upstream_dns_servers":[],"enable_smtp":false,"enable_bastion":false}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"tf-pn-pensive-greider","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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways method: POST response: proto: HTTP/2.0 @@ -227,20 +227,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 983 + content_length: 901 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:25.454431Z","gateway_networks":[],"id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","ip":{"address":"51.15.238.232","created_at":"2025-01-27T09:16:25.430263Z","gateway_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","id":"53688cb0-70fa-4c94-93c0-ec1771e4020a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"232-238-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:25.430263Z","zone":"fr-par-1"},"ip_mobility_enabled":false,"is_legacy":false,"name":"tf-pn-cranky-margulis","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:25.454431Z","upstream_dns_servers":[],"version":null,"zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T09:14:39.935413Z","gateway_networks":[],"id":"94b9c605-ece6-4961-8811-b8935b60d127","ipv4":{"address":"163.172.152.109","created_at":"2025-03-24T09:14:39.922063Z","gateway_id":"94b9c605-ece6-4961-8811-b8935b60d127","id":"09e11863-a8b3-45b2-9861-0c00ae21852c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"109-152-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T09:14:39.922063Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-pensive-greider","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-03-24T09:14:39.935413Z","zone":"fr-par-1"}' headers: Content-Length: - - "983" + - "901" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:25 GMT + - Mon, 24 Mar 2025 09:14:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -248,10 +248,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0c7862d5-ffbd-4e48-941e-8bee2890f882 + - a2482785-4468-4392-9669-74f26b0240d3 status: 200 OK code: 200 - duration: 785.647833ms + duration: 1.188283406s - id: 5 request: proto: HTTP/1.1 @@ -267,8 +267,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/13ea9766-660b-40e7-94e7-7d90ceed7df3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/94b9c605-ece6-4961-8811-b8935b60d127 method: GET response: proto: HTTP/2.0 @@ -276,20 +276,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 985 + content_length: 919 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:25.454431Z","gateway_networks":[],"id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","ip":{"address":"51.15.238.232","created_at":"2025-01-27T09:16:25.430263Z","gateway_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","id":"53688cb0-70fa-4c94-93c0-ec1771e4020a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"232-238-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:25.430263Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"tf-pn-cranky-margulis","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:25.493705Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T09:14:39.935413Z","gateway_networks":[],"id":"94b9c605-ece6-4961-8811-b8935b60d127","ipv4":{"address":"163.172.152.109","created_at":"2025-03-24T09:14:39.922063Z","gateway_id":"94b9c605-ece6-4961-8811-b8935b60d127","id":"09e11863-a8b3-45b2-9861-0c00ae21852c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"109-152-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T09:14:39.922063Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-pensive-greider","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-03-24T09:14:39.995020Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "985" + - "919" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:25 GMT + - Mon, 24 Mar 2025 09:14:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -297,10 +297,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cde0f34d-a4bf-434e-9d23-452d2be408ba + - c0bbd152-7377-4a76-8070-1be5a376e3c3 status: 200 OK code: 200 - duration: 33.099666ms + duration: 73.83189ms - id: 6 request: proto: HTTP/1.1 @@ -316,8 +316,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/13ea9766-660b-40e7-94e7-7d90ceed7df3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/94b9c605-ece6-4961-8811-b8935b60d127 method: GET response: proto: HTTP/2.0 @@ -325,20 +325,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 982 + content_length: 916 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:25.454431Z","gateway_networks":[],"id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","ip":{"address":"51.15.238.232","created_at":"2025-01-27T09:16:25.430263Z","gateway_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","id":"53688cb0-70fa-4c94-93c0-ec1771e4020a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"232-238-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:25.430263Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"tf-pn-cranky-margulis","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:30.354131Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T09:14:39.935413Z","gateway_networks":[],"id":"94b9c605-ece6-4961-8811-b8935b60d127","ipv4":{"address":"163.172.152.109","created_at":"2025-03-24T09:14:39.922063Z","gateway_id":"94b9c605-ece6-4961-8811-b8935b60d127","id":"09e11863-a8b3-45b2-9861-0c00ae21852c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"109-152-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T09:14:39.922063Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-pensive-greider","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-03-24T09:14:44.778610Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "982" + - "916" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:30 GMT + - Mon, 24 Mar 2025 09:14:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -346,10 +346,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cd18987d-e151-417f-b9b8-e26d0c627597 + - 965cf4f2-85f3-456c-a7ab-9b55078c87e8 status: 200 OK code: 200 - duration: 25.74325ms + duration: 77.942431ms - id: 7 request: proto: HTTP/1.1 @@ -365,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-gw/v1/zones/fr-par-1/gateways/13ea9766-660b-40e7-94e7-7d90ceed7df3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/94b9c605-ece6-4961-8811-b8935b60d127 method: GET response: proto: HTTP/2.0 @@ -374,20 +374,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 982 + content_length: 916 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:25.454431Z","gateway_networks":[],"id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","ip":{"address":"51.15.238.232","created_at":"2025-01-27T09:16:25.430263Z","gateway_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","id":"53688cb0-70fa-4c94-93c0-ec1771e4020a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"232-238-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:25.430263Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"tf-pn-cranky-margulis","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:30.354131Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T09:14:39.935413Z","gateway_networks":[],"id":"94b9c605-ece6-4961-8811-b8935b60d127","ipv4":{"address":"163.172.152.109","created_at":"2025-03-24T09:14:39.922063Z","gateway_id":"94b9c605-ece6-4961-8811-b8935b60d127","id":"09e11863-a8b3-45b2-9861-0c00ae21852c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"109-152-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T09:14:39.922063Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-pensive-greider","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-03-24T09:14:44.778610Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "982" + - "916" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:30 GMT + - Mon, 24 Mar 2025 09:14:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -395,10 +395,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - deb3cbc1-1738-4d3c-91e9-5f4b9593e37c + - df4071ce-dfce-4303-91b7-bb15499ffd67 status: 200 OK code: 200 - duration: 29.101083ms + duration: 74.632829ms - id: 8 request: proto: HTTP/1.1 @@ -414,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-gw/v1/zones/fr-par-1/dhcps/a6fc5829-8455-417f-846d-11f9515a87ac + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/94b9c605-ece6-4961-8811-b8935b60d127 method: GET response: proto: HTTP/2.0 @@ -423,20 +423,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 568 + content_length: 916 uncompressed: false - body: '{"address":"192.168.1.1","created_at":"2025-01-27T09:16:24.754760Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"a6fc5829-8455-417f-846d-11f9515a87ac","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:24.754760Z","valid_lifetime":"3600s","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T09:14:39.935413Z","gateway_networks":[],"id":"94b9c605-ece6-4961-8811-b8935b60d127","ipv4":{"address":"163.172.152.109","created_at":"2025-03-24T09:14:39.922063Z","gateway_id":"94b9c605-ece6-4961-8811-b8935b60d127","id":"09e11863-a8b3-45b2-9861-0c00ae21852c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"109-152-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T09:14:39.922063Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-pensive-greider","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-03-24T09:14:44.778610Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "568" + - "916" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:31 GMT + - Mon, 24 Mar 2025 09:14:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -444,10 +444,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7c789d41-ea4a-4eb2-b0dc-bcda158aadee + - 0d7197cf-32ad-4713-b54c-61506cdb3a1f status: 200 OK code: 200 - duration: 22.753ms + duration: 81.175368ms - id: 9 request: proto: HTTP/1.1 @@ -463,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-gw/v1/zones/fr-par-1/gateways/13ea9766-660b-40e7-94e7-7d90ceed7df3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/70331283-1308-4a96-8e20-4061b235979e method: GET response: proto: HTTP/2.0 @@ -472,20 +472,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 982 + content_length: 352 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:25.454431Z","gateway_networks":[],"id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","ip":{"address":"51.15.238.232","created_at":"2025-01-27T09:16:25.430263Z","gateway_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","id":"53688cb0-70fa-4c94-93c0-ec1771e4020a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"232-238-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:25.430263Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"tf-pn-cranky-margulis","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:30.354131Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-24T09:14:39.160125Z","id":"70331283-1308-4a96-8e20-4061b235979e","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-03-24T09:14:39.160125Z"}' headers: Content-Length: - - "982" + - "352" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:31 GMT + - Mon, 24 Mar 2025 09:14:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -493,10 +493,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 788d82a5-8a78-4f6c-8662-0a1b25d9ad4e + - 63a95d23-989d-48b7-8079-c2125dda7cc8 status: 200 OK code: 200 - duration: 26.354042ms + duration: 81.826379ms - id: 10 request: proto: HTTP/1.1 @@ -512,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/d9ff0ea2-b13a-4150-b418-77d33e4b75bb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/69193ea4-2393-42d9-a93a-382286d358fa method: GET response: proto: HTTP/2.0 @@ -523,7 +523,7 @@ interactions: trailer: {} content_length: 1019 uncompressed: false - body: '{"created_at":"2025-01-27T09:16:24.763092Z","dhcp_enabled":true,"id":"d9ff0ea2-b13a-4150-b418-77d33e4b75bb","name":"pn_test_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-27T09:16:24.763092Z","id":"1e2c80ec-96ed-4f84-9824-6abbd84226db","private_network_id":"d9ff0ea2-b13a-4150-b418-77d33e4b75bb","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.28.0/22","updated_at":"2025-01-27T09:16:24.763092Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-01-27T09:16:24.763092Z","id":"0b065a25-eddd-4397-9ac7-988b7c35f79a","private_network_id":"d9ff0ea2-b13a-4150-b418-77d33e4b75bb","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:94b4::/64","updated_at":"2025-01-27T09:16:24.763092Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-01-27T09:16:24.763092Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-03-24T09:14:39.168179Z","dhcp_enabled":true,"id":"69193ea4-2393-42d9-a93a-382286d358fa","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-03-24T09:14:39.168179Z","id":"b08dc41c-e47b-4eef-8dfa-6f666591e0a4","private_network_id":"69193ea4-2393-42d9-a93a-382286d358fa","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-03-24T09:14:39.168179Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-03-24T09:14:39.168179Z","id":"c0834a45-47f6-4d06-90e2-1868e6df9b22","private_network_id":"69193ea4-2393-42d9-a93a-382286d358fa","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:f905::/64","updated_at":"2025-03-24T09:14:39.168179Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-03-24T09:14:39.168179Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - "1019" @@ -532,9 +532,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:31 GMT + - Mon, 24 Mar 2025 09:14:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -542,10 +542,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f1522047-89db-409b-b52d-42c0372374bd + - 5ef0b1b0-c950-4b53-8279-f183fdb042fa status: 200 OK code: 200 - duration: 29.511375ms + duration: 108.408857ms - id: 11 request: proto: HTTP/1.1 @@ -561,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-gw/v1/zones/fr-par-1/dhcps/a6fc5829-8455-417f-846d-11f9515a87ac + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/70331283-1308-4a96-8e20-4061b235979e method: GET response: proto: HTTP/2.0 @@ -570,20 +570,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 568 + content_length: 352 uncompressed: false - body: '{"address":"192.168.1.1","created_at":"2025-01-27T09:16:24.754760Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"a6fc5829-8455-417f-846d-11f9515a87ac","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:24.754760Z","valid_lifetime":"3600s","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-24T09:14:39.160125Z","id":"70331283-1308-4a96-8e20-4061b235979e","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-03-24T09:14:39.160125Z"}' headers: Content-Length: - - "568" + - "352" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:32 GMT + - Mon, 24 Mar 2025 09:14:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -591,10 +591,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 373eee99-9c3f-4ee8-89fc-304d40b16304 + - 8e927a73-3e3f-42e3-9a36-b7ae92e2e2e9 status: 200 OK code: 200 - duration: 21.661209ms + duration: 80.420264ms - id: 12 request: proto: HTTP/1.1 @@ -610,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-gw/v1/zones/fr-par-1/gateways/13ea9766-660b-40e7-94e7-7d90ceed7df3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/69193ea4-2393-42d9-a93a-382286d358fa method: GET response: proto: HTTP/2.0 @@ -619,20 +619,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 982 + content_length: 1019 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:25.454431Z","gateway_networks":[],"id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","ip":{"address":"51.15.238.232","created_at":"2025-01-27T09:16:25.430263Z","gateway_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","id":"53688cb0-70fa-4c94-93c0-ec1771e4020a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"232-238-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:25.430263Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"tf-pn-cranky-margulis","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:30.354131Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-24T09:14:39.168179Z","dhcp_enabled":true,"id":"69193ea4-2393-42d9-a93a-382286d358fa","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-03-24T09:14:39.168179Z","id":"b08dc41c-e47b-4eef-8dfa-6f666591e0a4","private_network_id":"69193ea4-2393-42d9-a93a-382286d358fa","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-03-24T09:14:39.168179Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-03-24T09:14:39.168179Z","id":"c0834a45-47f6-4d06-90e2-1868e6df9b22","private_network_id":"69193ea4-2393-42d9-a93a-382286d358fa","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:f905::/64","updated_at":"2025-03-24T09:14:39.168179Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-03-24T09:14:39.168179Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "982" + - "1019" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:32 GMT + - Mon, 24 Mar 2025 09:14:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -640,10 +640,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a199e076-f88b-4466-a180-b200096c3fee + - d268128e-0121-43ff-af62-edfcd5337d03 status: 200 OK code: 200 - duration: 29.14425ms + duration: 86.445843ms - id: 13 request: proto: HTTP/1.1 @@ -659,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/d9ff0ea2-b13a-4150-b418-77d33e4b75bb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/94b9c605-ece6-4961-8811-b8935b60d127 method: GET response: proto: HTTP/2.0 @@ -668,20 +668,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1019 + content_length: 916 uncompressed: false - body: '{"created_at":"2025-01-27T09:16:24.763092Z","dhcp_enabled":true,"id":"d9ff0ea2-b13a-4150-b418-77d33e4b75bb","name":"pn_test_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-27T09:16:24.763092Z","id":"1e2c80ec-96ed-4f84-9824-6abbd84226db","private_network_id":"d9ff0ea2-b13a-4150-b418-77d33e4b75bb","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.28.0/22","updated_at":"2025-01-27T09:16:24.763092Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-01-27T09:16:24.763092Z","id":"0b065a25-eddd-4397-9ac7-988b7c35f79a","private_network_id":"d9ff0ea2-b13a-4150-b418-77d33e4b75bb","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:94b4::/64","updated_at":"2025-01-27T09:16:24.763092Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-01-27T09:16:24.763092Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T09:14:39.935413Z","gateway_networks":[],"id":"94b9c605-ece6-4961-8811-b8935b60d127","ipv4":{"address":"163.172.152.109","created_at":"2025-03-24T09:14:39.922063Z","gateway_id":"94b9c605-ece6-4961-8811-b8935b60d127","id":"09e11863-a8b3-45b2-9861-0c00ae21852c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"109-152-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T09:14:39.922063Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-pensive-greider","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-03-24T09:14:44.778610Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "1019" + - "916" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:32 GMT + - Mon, 24 Mar 2025 09:14:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -689,10 +689,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eec2c712-a048-46d5-8ce7-6f0468721351 + - 7af2cd35-4b90-4e3b-ba0d-c740925d9034 status: 200 OK code: 200 - duration: 31.137375ms + duration: 90.974436ms - id: 14 request: proto: HTTP/1.1 @@ -708,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-gw/v1/zones/fr-par-1/gateways/13ea9766-660b-40e7-94e7-7d90ceed7df3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/94b9c605-ece6-4961-8811-b8935b60d127 method: GET response: proto: HTTP/2.0 @@ -717,20 +717,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 982 + content_length: 916 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:25.454431Z","gateway_networks":[],"id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","ip":{"address":"51.15.238.232","created_at":"2025-01-27T09:16:25.430263Z","gateway_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","id":"53688cb0-70fa-4c94-93c0-ec1771e4020a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"232-238-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:25.430263Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"tf-pn-cranky-margulis","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:30.354131Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T09:14:39.935413Z","gateway_networks":[],"id":"94b9c605-ece6-4961-8811-b8935b60d127","ipv4":{"address":"163.172.152.109","created_at":"2025-03-24T09:14:39.922063Z","gateway_id":"94b9c605-ece6-4961-8811-b8935b60d127","id":"09e11863-a8b3-45b2-9861-0c00ae21852c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"109-152-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T09:14:39.922063Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-pensive-greider","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-03-24T09:14:44.778610Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "982" + - "916" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:33 GMT + - Mon, 24 Mar 2025 09:14:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -738,50 +738,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b8bfe1eb-e667-45c8-a4f1-9e6d2cd20369 + - 3b298c37-631b-43de-844d-79ed24808347 status: 200 OK code: 200 - duration: 26.78225ms + duration: 92.935068ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 206 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"gateway_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","private_network_id":"d9ff0ea2-b13a-4150-b418-77d33e4b75bb","enable_masquerade":true,"enable_dhcp":true,"dhcp_id":"a6fc5829-8455-417f-846d-11f9515a87ac"}' + 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-gw/v1/zones/fr-par-1/gateway-networks - method: POST + - 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/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: 953 + content_length: 38958 uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:35.215256Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:24.754760Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"a6fc5829-8455-417f-846d-11f9515a87ac","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:24.754760Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","id":"1a02d3c9-a1dc-45c0-900f-9e1aab19708b","ipam_config":null,"mac_address":null,"private_network_id":"d9ff0ea2-b13a-4150-b418-77d33e4b75bb","status":"created","updated_at":"2025-01-27T09:16:35.215256Z","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":2,"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":1,"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":4,"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":1,"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":1,"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":6710886400,"capabilities":{"block_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":13421772800,"capabilities":{"block_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":6710886400,"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":6710886400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_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":10066329600,"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":13421772800,"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":6710886400,"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":10066329600,"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":13421772800,"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":0,"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":6710886400,"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":10066329600,"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":13421772800,"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}}}}' headers: Content-Length: - - "953" + - "38958" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:35 GMT + - Mon, 24 Mar 2025 09:14:47 GMT + Link: + - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -789,10 +789,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 960227a3-2a02-437c-893b-0d89776c2ae4 + - 293bd936-6389-452a-a493-77fa4e948a1c + X-Total-Count: + - "71" status: 200 OK code: 200 - duration: 2.026262708s + duration: 139.793653ms - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/13ea9766-660b-40e7-94e7-7d90ceed7df3 + - 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/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: proto: HTTP/2.0 @@ -817,20 +819,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1938 + content_length: 16732 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:25.454431Z","gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:35.215256Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:24.754760Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"a6fc5829-8455-417f-846d-11f9515a87ac","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:24.754760Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","id":"1a02d3c9-a1dc-45c0-900f-9e1aab19708b","ipam_config":null,"mac_address":null,"private_network_id":"d9ff0ea2-b13a-4150-b418-77d33e4b75bb","status":"created","updated_at":"2025-01-27T09:16:35.215256Z","zone":"fr-par-1"}],"id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","ip":{"address":"51.15.238.232","created_at":"2025-01-27T09:16:25.430263Z","gateway_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","id":"53688cb0-70fa-4c94-93c0-ec1771e4020a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"232-238-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:25.430263Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"tf-pn-cranky-margulis","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:35.371900Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + 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":5,"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":2,"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":1,"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}}}}' headers: Content-Length: - - "1938" + - "16732" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:35 GMT + - Mon, 24 Mar 2025 09:14:47 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -838,10 +842,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d821f3cf-9744-49f8-bb79-19ba88b5eb73 + - 83079383-675f-4392-9b55-2543d5d4bf0e + X-Total-Count: + - "71" status: 200 OK code: 200 - duration: 26.999084ms + duration: 122.987305ms - id: 17 request: proto: HTTP/1.1 @@ -857,8 +863,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-gw/v1/zones/fr-par-1/gateways/13ea9766-660b-40e7-94e7-7d90ceed7df3 + - 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/marketplace/v2/local-images?image_label=debian_bullseye&order_by=type_asc&type=instance_sbs&zone=fr-par-1 method: GET response: proto: HTTP/2.0 @@ -866,20 +872,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1938 + content_length: 1275 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:25.454431Z","gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:35.215256Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:24.754760Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"a6fc5829-8455-417f-846d-11f9515a87ac","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:24.754760Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","id":"1a02d3c9-a1dc-45c0-900f-9e1aab19708b","ipam_config":null,"mac_address":null,"private_network_id":"d9ff0ea2-b13a-4150-b418-77d33e4b75bb","status":"created","updated_at":"2025-01-27T09:16:35.215256Z","zone":"fr-par-1"}],"id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","ip":{"address":"51.15.238.232","created_at":"2025-01-27T09:16:25.430263Z","gateway_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","id":"53688cb0-70fa-4c94-93c0-ec1771e4020a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"232-238-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:25.430263Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"tf-pn-cranky-margulis","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:35.371900Z","upstream_dns_servers":[],"version":"0.7.3","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-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}' headers: Content-Length: - - "1938" + - "1275" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:40 GMT + - Mon, 24 Mar 2025 09:14:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -887,48 +893,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 45da915e-040a-47de-83f6-77b85179fc05 + - e5bde6ee-3fb0-4e2a-b2e9-0702b832b969 status: 200 OK code: 200 - duration: 34.051458ms + duration: 146.628007ms - id: 18 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":"94b9c605-ece6-4961-8811-b8935b60d127","private_network_id":"69193ea4-2393-42d9-a93a-382286d358fa","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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/13ea9766-660b-40e7-94e7-7d90ceed7df3 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-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: 1951 + content_length: 384 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:25.454431Z","gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:35.215256Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:24.754760Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"a6fc5829-8455-417f-846d-11f9515a87ac","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:24.754760Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","id":"1a02d3c9-a1dc-45c0-900f-9e1aab19708b","ipam_config":null,"mac_address":"02:00:00:16:53:CB","private_network_id":"d9ff0ea2-b13a-4150-b418-77d33e4b75bb","status":"ready","updated_at":"2025-01-27T09:16:45.526912Z","zone":"fr-par-1"}],"id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","ip":{"address":"51.15.238.232","created_at":"2025-01-27T09:16:25.430263Z","gateway_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","id":"53688cb0-70fa-4c94-93c0-ec1771e4020a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"232-238-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:25.430263Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"tf-pn-cranky-margulis","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:35.371900Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-24T09:14:48.404958Z","gateway_id":"94b9c605-ece6-4961-8811-b8935b60d127","id":"f94ba587-1e22-40c7-82a9-fe0f199f2bc8","ipam_ip_id":"90a807c5-5ee6-46cf-b167-ba9ae98d205d","masquerade_enabled":true,"private_network_id":"69193ea4-2393-42d9-a93a-382286d358fa","push_default_route":true,"status":"created","updated_at":"2025-03-24T09:14:48.404958Z","zone":"fr-par-1"}' headers: Content-Length: - - "1951" + - "384" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:45 GMT + - Mon, 24 Mar 2025 09:14:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -936,10 +944,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b1d50a25-9b85-4a78-a51e-ad2e26489f24 + - dc08496a-d34d-4b92-919d-d0818ade136c status: 200 OK code: 200 - duration: 165.64275ms + duration: 962.756399ms - id: 19 request: proto: HTTP/1.1 @@ -955,8 +963,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-gw/v1/zones/fr-par-1/gateways/13ea9766-660b-40e7-94e7-7d90ceed7df3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/94b9c605-ece6-4961-8811-b8935b60d127 method: GET response: proto: HTTP/2.0 @@ -964,20 +972,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1947 + content_length: 1304 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:25.454431Z","gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:35.215256Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:24.754760Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"a6fc5829-8455-417f-846d-11f9515a87ac","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:24.754760Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","id":"1a02d3c9-a1dc-45c0-900f-9e1aab19708b","ipam_config":null,"mac_address":"02:00:00:16:53:CB","private_network_id":"d9ff0ea2-b13a-4150-b418-77d33e4b75bb","status":"ready","updated_at":"2025-01-27T09:16:45.526912Z","zone":"fr-par-1"}],"id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","ip":{"address":"51.15.238.232","created_at":"2025-01-27T09:16:25.430263Z","gateway_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","id":"53688cb0-70fa-4c94-93c0-ec1771e4020a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"232-238-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:25.430263Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"tf-pn-cranky-margulis","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:45.668171Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T09:14:39.935413Z","gateway_networks":[{"created_at":"2025-03-24T09:14:48.404958Z","gateway_id":"94b9c605-ece6-4961-8811-b8935b60d127","id":"f94ba587-1e22-40c7-82a9-fe0f199f2bc8","ipam_ip_id":"90a807c5-5ee6-46cf-b167-ba9ae98d205d","masquerade_enabled":true,"private_network_id":"69193ea4-2393-42d9-a93a-382286d358fa","push_default_route":true,"status":"created","updated_at":"2025-03-24T09:14:48.404958Z","zone":"fr-par-1"}],"id":"94b9c605-ece6-4961-8811-b8935b60d127","ipv4":{"address":"163.172.152.109","created_at":"2025-03-24T09:14:39.922063Z","gateway_id":"94b9c605-ece6-4961-8811-b8935b60d127","id":"09e11863-a8b3-45b2-9861-0c00ae21852c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"109-152-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T09:14:39.922063Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-pensive-greider","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-03-24T09:14:48.558059Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "1947" + - "1304" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:50 GMT + - Mon, 24 Mar 2025 09:14:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -985,48 +993,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 09848c90-8052-4866-b994-9a6bf6b3087e + - dfe4b676-9389-4f1f-8f74-e9234d031522 status: 200 OK code: 200 - duration: 26.728625ms + duration: 85.641454ms - id: 20 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":"Scaleway Instance","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"6465cef1-374a-451c-bc2d-e2d179625dad","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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/1a02d3c9-a1dc-45c0-900f-9e1aab19708b - method: GET + - 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/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: 966 + content_length: 1674 uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:35.215256Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:24.754760Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"a6fc5829-8455-417f-846d-11f9515a87ac","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:24.754760Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","id":"1a02d3c9-a1dc-45c0-900f-9e1aab19708b","ipam_config":null,"mac_address":"02:00:00:16:53:CB","private_network_id":"d9ff0ea2-b13a-4150-b418-77d33e4b75bb","status":"ready","updated_at":"2025-01-27T09:16:45.526912Z","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-03-24T09:14:48.584179+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"274d8926-0928-492d-a362-45407011ef8e","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:9e:91:17","maintenances":[],"modification_date":"2025-03-24T09:14:48.584179+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":"97cc3c6c-f528-4192-a733-1b98c17c3e1d","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"d8370fbe-8fc3-4df4-940e-d7d90733b043","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "966" + - "1674" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:50 GMT + - Mon, 24 Mar 2025 09:14:49 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274d8926-0928-492d-a362-45407011ef8e Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1034,10 +1046,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e4dd8632-8b5a-4100-983b-cb99f1868d70 - status: 200 OK - code: 200 - duration: 45.623666ms + - 2793bae9-81a7-4b0f-9c7b-47151d8b487c + status: 201 Created + code: 201 + duration: 1.345656724s - id: 21 request: proto: HTTP/1.1 @@ -1053,8 +1065,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-gw/v1/zones/fr-par-1/gateway-networks/1a02d3c9-a1dc-45c0-900f-9e1aab19708b + - 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/instance/v1/zones/fr-par-1/servers/274d8926-0928-492d-a362-45407011ef8e method: GET response: proto: HTTP/2.0 @@ -1062,20 +1074,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 966 + content_length: 1674 uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:35.215256Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:24.754760Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"a6fc5829-8455-417f-846d-11f9515a87ac","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:24.754760Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","id":"1a02d3c9-a1dc-45c0-900f-9e1aab19708b","ipam_config":null,"mac_address":"02:00:00:16:53:CB","private_network_id":"d9ff0ea2-b13a-4150-b418-77d33e4b75bb","status":"ready","updated_at":"2025-01-27T09:16:45.526912Z","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-03-24T09:14:48.584179+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"274d8926-0928-492d-a362-45407011ef8e","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:9e:91:17","maintenances":[],"modification_date":"2025-03-24T09:14:48.584179+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":"97cc3c6c-f528-4192-a733-1b98c17c3e1d","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"d8370fbe-8fc3-4df4-940e-d7d90733b043","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "966" + - "1674" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:50 GMT + - Mon, 24 Mar 2025 09:14:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1083,10 +1095,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c484b5d7-d3ba-4b73-bf7d-9d9888bf826b + - 8a9570cb-abf4-496a-990a-7dada6c1d3ec status: 200 OK code: 200 - duration: 48.772083ms + duration: 222.961845ms - id: 22 request: proto: HTTP/1.1 @@ -1102,8 +1114,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-gw/v1/zones/fr-par-1/gateways/13ea9766-660b-40e7-94e7-7d90ceed7df3 + - 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/instance/v1/zones/fr-par-1/servers/274d8926-0928-492d-a362-45407011ef8e method: GET response: proto: HTTP/2.0 @@ -1111,20 +1123,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1947 + content_length: 1674 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:25.454431Z","gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:35.215256Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:24.754760Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"a6fc5829-8455-417f-846d-11f9515a87ac","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:24.754760Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","id":"1a02d3c9-a1dc-45c0-900f-9e1aab19708b","ipam_config":null,"mac_address":"02:00:00:16:53:CB","private_network_id":"d9ff0ea2-b13a-4150-b418-77d33e4b75bb","status":"ready","updated_at":"2025-01-27T09:16:45.526912Z","zone":"fr-par-1"}],"id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","ip":{"address":"51.15.238.232","created_at":"2025-01-27T09:16:25.430263Z","gateway_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","id":"53688cb0-70fa-4c94-93c0-ec1771e4020a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"232-238-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:25.430263Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"tf-pn-cranky-margulis","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:45.668171Z","upstream_dns_servers":[],"version":"0.7.3","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-03-24T09:14:48.584179+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"274d8926-0928-492d-a362-45407011ef8e","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:9e:91:17","maintenances":[],"modification_date":"2025-03-24T09:14:48.584179+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":"97cc3c6c-f528-4192-a733-1b98c17c3e1d","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"d8370fbe-8fc3-4df4-940e-d7d90733b043","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1947" + - "1674" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:50 GMT + - Mon, 24 Mar 2025 09:14:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1132,10 +1144,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 48b60a26-14ed-43eb-a6d9-2b7a97e95bc1 + - a27fe6b7-4880-451f-855b-c4398330ace2 status: 200 OK code: 200 - duration: 26.089625ms + duration: 403.431176ms - id: 23 request: proto: HTTP/1.1 @@ -1151,8 +1163,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-gw/v1/zones/fr-par-1/gateway-networks/1a02d3c9-a1dc-45c0-900f-9e1aab19708b + - 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/block/v1alpha1/zones/fr-par-1/volumes/d8370fbe-8fc3-4df4-940e-d7d90733b043 method: GET response: proto: HTTP/2.0 @@ -1160,20 +1172,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 966 + content_length: 674 uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:35.215256Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:24.754760Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"a6fc5829-8455-417f-846d-11f9515a87ac","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:24.754760Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","id":"1a02d3c9-a1dc-45c0-900f-9e1aab19708b","ipam_config":null,"mac_address":"02:00:00:16:53:CB","private_network_id":"d9ff0ea2-b13a-4150-b418-77d33e4b75bb","status":"ready","updated_at":"2025-01-27T09:16:45.526912Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-24T09:14:48.715806Z","id":"d8370fbe-8fc3-4df4-940e-d7d90733b043","last_detached_at":null,"name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"6ba10234-492c-443d-9f5d-2bea203f4fb2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-03-24T09:14:48.715806Z","id":"51596ed5-8e0b-4ce7-a94a-5471be823e69","product_resource_id":"274d8926-0928-492d-a362-45407011ef8e","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-03-24T09:14:48.715806Z","zone":"fr-par-1"}' headers: Content-Length: - - "966" + - "674" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:50 GMT + - Mon, 24 Mar 2025 09:14:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1181,10 +1193,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eab49eb0-2619-411b-bec7-f22023d9b69d + - 8f53961e-a4a4-479a-b4a8-f3aac5f214a3 status: 200 OK code: 200 - duration: 47.13275ms + duration: 98.625193ms - id: 24 request: proto: HTTP/1.1 @@ -1200,8 +1212,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-gw/v1/zones/fr-par-1/gateways/13ea9766-660b-40e7-94e7-7d90ceed7df3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/94b9c605-ece6-4961-8811-b8935b60d127 method: GET response: proto: HTTP/2.0 @@ -1209,20 +1221,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1947 + content_length: 1304 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:25.454431Z","gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:35.215256Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:24.754760Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"a6fc5829-8455-417f-846d-11f9515a87ac","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:24.754760Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","id":"1a02d3c9-a1dc-45c0-900f-9e1aab19708b","ipam_config":null,"mac_address":"02:00:00:16:53:CB","private_network_id":"d9ff0ea2-b13a-4150-b418-77d33e4b75bb","status":"ready","updated_at":"2025-01-27T09:16:45.526912Z","zone":"fr-par-1"}],"id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","ip":{"address":"51.15.238.232","created_at":"2025-01-27T09:16:25.430263Z","gateway_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","id":"53688cb0-70fa-4c94-93c0-ec1771e4020a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"232-238-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:25.430263Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"tf-pn-cranky-margulis","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:45.668171Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T09:14:39.935413Z","gateway_networks":[{"created_at":"2025-03-24T09:14:48.404958Z","gateway_id":"94b9c605-ece6-4961-8811-b8935b60d127","id":"f94ba587-1e22-40c7-82a9-fe0f199f2bc8","ipam_ip_id":"90a807c5-5ee6-46cf-b167-ba9ae98d205d","masquerade_enabled":true,"private_network_id":"69193ea4-2393-42d9-a93a-382286d358fa","push_default_route":true,"status":"created","updated_at":"2025-03-24T09:14:48.404958Z","zone":"fr-par-1"}],"id":"94b9c605-ece6-4961-8811-b8935b60d127","ipv4":{"address":"163.172.152.109","created_at":"2025-03-24T09:14:39.922063Z","gateway_id":"94b9c605-ece6-4961-8811-b8935b60d127","id":"09e11863-a8b3-45b2-9861-0c00ae21852c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"109-152-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T09:14:39.922063Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-pensive-greider","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-03-24T09:14:48.558059Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "1947" + - "1304" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:50 GMT + - Mon, 24 Mar 2025 09:14:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1230,10 +1242,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fd4bcc83-ed09-44ed-9760-b6987172823c + - 7ab5ce53-f4d6-4c12-8ade-c77c94905570 status: 200 OK code: 200 - duration: 34.511667ms + duration: 74.779444ms - id: 25 request: proto: HTTP/1.1 @@ -1249,8 +1261,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-gw/v1/zones/fr-par-1/gateways/13ea9766-660b-40e7-94e7-7d90ceed7df3 + - 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/block/v1alpha1/zones/fr-par-1/volumes/d8370fbe-8fc3-4df4-940e-d7d90733b043 method: GET response: proto: HTTP/2.0 @@ -1258,20 +1270,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1947 + content_length: 673 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:25.454431Z","gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:35.215256Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:24.754760Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"a6fc5829-8455-417f-846d-11f9515a87ac","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:24.754760Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","id":"1a02d3c9-a1dc-45c0-900f-9e1aab19708b","ipam_config":null,"mac_address":"02:00:00:16:53:CB","private_network_id":"d9ff0ea2-b13a-4150-b418-77d33e4b75bb","status":"ready","updated_at":"2025-01-27T09:16:45.526912Z","zone":"fr-par-1"}],"id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","ip":{"address":"51.15.238.232","created_at":"2025-01-27T09:16:25.430263Z","gateway_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","id":"53688cb0-70fa-4c94-93c0-ec1771e4020a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"232-238-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:25.430263Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"tf-pn-cranky-margulis","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:45.668171Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-24T09:14:48.715806Z","id":"d8370fbe-8fc3-4df4-940e-d7d90733b043","last_detached_at":null,"name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"6ba10234-492c-443d-9f5d-2bea203f4fb2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-03-24T09:14:48.715806Z","id":"51596ed5-8e0b-4ce7-a94a-5471be823e69","product_resource_id":"274d8926-0928-492d-a362-45407011ef8e","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-03-24T09:14:48.715806Z","zone":"fr-par-1"}' headers: Content-Length: - - "1947" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:50 GMT + - Mon, 24 Mar 2025 09:14:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1279,29 +1291,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - caadd633-244e-4f16-8fbd-9f153b31e130 + - 83a6059a-a52b-41bc-aeb6-6df31e6b58b4 status: 200 OK code: 200 - duration: 26.506667ms + duration: 96.761926ms - id: 26 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 133 + content_length: 20 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"gateway_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","public_port":42,"private_ip":"192.168.1.1","private_port":42,"protocol":"both"}' + body: '{"action":"poweron"}' 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-gw/v1/zones/fr-par-1/pat-rules + - 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/instance/v1/zones/fr-par-1/servers/274d8926-0928-492d-a362-45407011ef8e/action method: POST response: proto: HTTP/2.0 @@ -1309,20 +1321,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 281 + content_length: 357 uncompressed: false - body: '{"created_at":"2025-01-27T09:16:50.907721Z","gateway_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","id":"8b1d86e7-74d0-4660-aa66-913aa5c8ab63","private_ip":"192.168.1.1","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-01-27T09:16:50.907721Z","zone":"fr-par-1"}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/274d8926-0928-492d-a362-45407011ef8e/action","href_result":"/servers/274d8926-0928-492d-a362-45407011ef8e","id":"42f80321-b769-48b2-9ecd-0710224455ff","progress":0,"started_at":"2025-03-24T09:14:55.381862+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "281" + - "357" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:50 GMT + - Mon, 24 Mar 2025 09:14:55 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/42f80321-b769-48b2-9ecd-0710224455ff Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1330,10 +1344,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7fe7546f-7248-4064-adc4-900032234261 - status: 200 OK - code: 200 - duration: 76.011625ms + - cc77ee20-a4c1-4d9d-afc7-d724007fa32c + status: 202 Accepted + code: 202 + duration: 327.292598ms - id: 27 request: proto: HTTP/1.1 @@ -1349,8 +1363,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-gw/v1/zones/fr-par-1/gateways/13ea9766-660b-40e7-94e7-7d90ceed7df3 + - 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/instance/v1/zones/fr-par-1/servers/274d8926-0928-492d-a362-45407011ef8e method: GET response: proto: HTTP/2.0 @@ -1358,20 +1372,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1947 + content_length: 1696 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:25.454431Z","gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:35.215256Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:24.754760Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"a6fc5829-8455-417f-846d-11f9515a87ac","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:24.754760Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","id":"1a02d3c9-a1dc-45c0-900f-9e1aab19708b","ipam_config":null,"mac_address":"02:00:00:16:53:CB","private_network_id":"d9ff0ea2-b13a-4150-b418-77d33e4b75bb","status":"ready","updated_at":"2025-01-27T09:16:45.526912Z","zone":"fr-par-1"}],"id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","ip":{"address":"51.15.238.232","created_at":"2025-01-27T09:16:25.430263Z","gateway_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","id":"53688cb0-70fa-4c94-93c0-ec1771e4020a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"232-238-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:25.430263Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"tf-pn-cranky-margulis","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:45.668171Z","upstream_dns_servers":[],"version":"0.7.3","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-03-24T09:14:48.584179+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"274d8926-0928-492d-a362-45407011ef8e","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:9e:91:17","maintenances":[],"modification_date":"2025-03-24T09:14:55.168872+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":"97cc3c6c-f528-4192-a733-1b98c17c3e1d","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"d8370fbe-8fc3-4df4-940e-d7d90733b043","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1947" + - "1696" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:50 GMT + - Mon, 24 Mar 2025 09:14:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1379,10 +1393,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 01b7b0eb-24ed-4624-8f82-2bba30a7506e + - 5c39651b-4228-4964-bc8c-3b7b3082d024 status: 200 OK code: 200 - duration: 31.097125ms + duration: 204.421143ms - id: 28 request: proto: HTTP/1.1 @@ -1398,8 +1412,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-gw/v1/zones/fr-par-1/pat-rules/8b1d86e7-74d0-4660-aa66-913aa5c8ab63 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/94b9c605-ece6-4961-8811-b8935b60d127 method: GET response: proto: HTTP/2.0 @@ -1407,20 +1421,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 281 + content_length: 1342 uncompressed: false - body: '{"created_at":"2025-01-27T09:16:50.907721Z","gateway_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","id":"8b1d86e7-74d0-4660-aa66-913aa5c8ab63","private_ip":"192.168.1.1","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-01-27T09:16:50.907721Z","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T09:14:39.935413Z","gateway_networks":[{"created_at":"2025-03-24T09:14:48.404958Z","gateway_id":"94b9c605-ece6-4961-8811-b8935b60d127","id":"f94ba587-1e22-40c7-82a9-fe0f199f2bc8","ipam_ip_id":"90a807c5-5ee6-46cf-b167-ba9ae98d205d","mac_address":"02:00:00:13:F4:61","masquerade_enabled":true,"private_network_id":"69193ea4-2393-42d9-a93a-382286d358fa","push_default_route":true,"status":"configuring","updated_at":"2025-03-24T09:14:54.263540Z","zone":"fr-par-1"}],"id":"94b9c605-ece6-4961-8811-b8935b60d127","ipv4":{"address":"163.172.152.109","created_at":"2025-03-24T09:14:39.922063Z","gateway_id":"94b9c605-ece6-4961-8811-b8935b60d127","id":"09e11863-a8b3-45b2-9861-0c00ae21852c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"109-152-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T09:14:39.922063Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-pensive-greider","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-03-24T09:14:48.558059Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "281" + - "1342" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:50 GMT + - Mon, 24 Mar 2025 09:14:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1428,10 +1442,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 96578827-c333-409b-a22b-59702f85ece0 + - 06763689-bd99-4561-8bf5-b0d7128caf9e status: 200 OK code: 200 - duration: 22.7275ms + duration: 85.279305ms - id: 29 request: proto: HTTP/1.1 @@ -1447,8 +1461,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-gw/v1/zones/fr-par-1/pat-rules/8b1d86e7-74d0-4660-aa66-913aa5c8ab63 + - 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/instance/v1/zones/fr-par-1/servers/274d8926-0928-492d-a362-45407011ef8e method: GET response: proto: HTTP/2.0 @@ -1456,20 +1470,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 281 + content_length: 1829 uncompressed: false - body: '{"created_at":"2025-01-27T09:16:50.907721Z","gateway_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","id":"8b1d86e7-74d0-4660-aa66-913aa5c8ab63","private_ip":"192.168.1.1","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-01-27T09:16:50.907721Z","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-03-24T09:14:48.584179+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"274d8926-0928-492d-a362-45407011ef8e","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":"19","hypervisor_id":"601","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:9e:91:17","maintenances":[],"modification_date":"2025-03-24T09:14:59.203612+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":"97cc3c6c-f528-4192-a733-1b98c17c3e1d","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d8370fbe-8fc3-4df4-940e-d7d90733b043","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "281" + - "1829" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:51 GMT + - Mon, 24 Mar 2025 09:15:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1477,10 +1491,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f396b9cd-5aa8-4965-bef0-f0cc91b455dd + - df011fcc-9ec9-44d9-a660-1e9a26bfa5b8 status: 200 OK code: 200 - duration: 26.886042ms + duration: 260.465035ms - id: 30 request: proto: HTTP/1.1 @@ -1496,8 +1510,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-gw/v1/zones/fr-par-1/pat-rules/8b1d86e7-74d0-4660-aa66-913aa5c8ab63 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/69193ea4-2393-42d9-a93a-382286d358fa method: GET response: proto: HTTP/2.0 @@ -1505,20 +1519,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 281 + content_length: 1019 uncompressed: false - body: '{"created_at":"2025-01-27T09:16:50.907721Z","gateway_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","id":"8b1d86e7-74d0-4660-aa66-913aa5c8ab63","private_ip":"192.168.1.1","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-01-27T09:16:50.907721Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-24T09:14:39.168179Z","dhcp_enabled":true,"id":"69193ea4-2393-42d9-a93a-382286d358fa","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-03-24T09:14:39.168179Z","id":"b08dc41c-e47b-4eef-8dfa-6f666591e0a4","private_network_id":"69193ea4-2393-42d9-a93a-382286d358fa","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-03-24T09:14:39.168179Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-03-24T09:14:39.168179Z","id":"c0834a45-47f6-4d06-90e2-1868e6df9b22","private_network_id":"69193ea4-2393-42d9-a93a-382286d358fa","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:f905::/64","updated_at":"2025-03-24T09:14:39.168179Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-03-24T09:14:55.262050Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "281" + - "1019" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:51 GMT + - Mon, 24 Mar 2025 09:15:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1526,10 +1540,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a5a5df39-ec1f-4c87-9b16-dce24b12d536 + - 81b6c1a4-cf22-42c4-8eb1-a8c3d626e274 status: 200 OK code: 200 - duration: 21.819416ms + duration: 70.123957ms - id: 31 request: proto: HTTP/1.1 @@ -1545,8 +1559,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-gw/v1/zones/fr-par-1/pat-rules/8b1d86e7-74d0-4660-aa66-913aa5c8ab63 + - 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/instance/v1/zones/fr-par-1/servers/274d8926-0928-492d-a362-45407011ef8e method: GET response: proto: HTTP/2.0 @@ -1554,20 +1568,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 281 + content_length: 1829 uncompressed: false - body: '{"created_at":"2025-01-27T09:16:50.907721Z","gateway_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","id":"8b1d86e7-74d0-4660-aa66-913aa5c8ab63","private_ip":"192.168.1.1","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-01-27T09:16:50.907721Z","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-03-24T09:14:48.584179+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"274d8926-0928-492d-a362-45407011ef8e","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":"19","hypervisor_id":"601","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:9e:91:17","maintenances":[],"modification_date":"2025-03-24T09:14:59.203612+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":"97cc3c6c-f528-4192-a733-1b98c17c3e1d","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d8370fbe-8fc3-4df4-940e-d7d90733b043","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "281" + - "1829" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:51 GMT + - Mon, 24 Mar 2025 09:15:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1575,48 +1589,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 07a59ec5-d93b-4c3d-9c72-242ff31314e8 + - f09d19df-9439-4f28-b18e-94143b4bf8e6 status: 200 OK code: 200 - duration: 21.654459ms + duration: 230.344908ms - 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":"69193ea4-2393-42d9-a93a-382286d358fa"}' 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-gw/v1/zones/fr-par-1/pat-rules/8b1d86e7-74d0-4660-aa66-913aa5c8ab63 - method: GET + - 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/instance/v1/zones/fr-par-1/servers/274d8926-0928-492d-a362-45407011ef8e/private_nics + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 281 + content_length: 473 uncompressed: false - body: '{"created_at":"2025-01-27T09:16:50.907721Z","gateway_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","id":"8b1d86e7-74d0-4660-aa66-913aa5c8ab63","private_ip":"192.168.1.1","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-01-27T09:16:50.907721Z","zone":"fr-par-1"}' + body: '{"private_nic":{"creation_date":"2025-03-24T09:15:01.287650+00:00","id":"34e7c0bb-10ba-48c3-9fea-4308a1371ad9","ipam_ip_ids":["5887264b-33c8-4628-ad18-21584a211188","970c64cd-555b-4fc6-9d27-86cd82ac1bda"],"mac_address":"02:00:00:1a:60:40","modification_date":"2025-03-24T09:15:01.494565+00:00","private_network_id":"69193ea4-2393-42d9-a93a-382286d358fa","server_id":"274d8926-0928-492d-a362-45407011ef8e","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "281" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:51 GMT + - Mon, 24 Mar 2025 09:15:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1624,10 +1640,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cf25e51d-5021-4d96-8237-b6b47cf80b18 - status: 200 OK - code: 200 - duration: 25.337417ms + - 0b889350-b619-40f7-a1ee-7f877385a1fa + status: 201 Created + code: 201 + duration: 1.6153052s - id: 33 request: proto: HTTP/1.1 @@ -1643,8 +1659,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-gw/v1/zones/fr-par-1/pat-rules/8b1d86e7-74d0-4660-aa66-913aa5c8ab63 + - 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/instance/v1/zones/fr-par-1/servers/274d8926-0928-492d-a362-45407011ef8e/private_nics/34e7c0bb-10ba-48c3-9fea-4308a1371ad9 method: GET response: proto: HTTP/2.0 @@ -1652,20 +1668,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 281 + content_length: 473 uncompressed: false - body: '{"created_at":"2025-01-27T09:16:50.907721Z","gateway_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","id":"8b1d86e7-74d0-4660-aa66-913aa5c8ab63","private_ip":"192.168.1.1","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-01-27T09:16:50.907721Z","zone":"fr-par-1"}' + body: '{"private_nic":{"creation_date":"2025-03-24T09:15:01.287650+00:00","id":"34e7c0bb-10ba-48c3-9fea-4308a1371ad9","ipam_ip_ids":["5887264b-33c8-4628-ad18-21584a211188","970c64cd-555b-4fc6-9d27-86cd82ac1bda"],"mac_address":"02:00:00:1a:60:40","modification_date":"2025-03-24T09:15:01.494565+00:00","private_network_id":"69193ea4-2393-42d9-a93a-382286d358fa","server_id":"274d8926-0928-492d-a362-45407011ef8e","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "281" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:51 GMT + - Mon, 24 Mar 2025 09:15:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1673,10 +1689,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cfc72a47-6fad-443c-acef-e48c67118ead + - 6fce711c-fbd8-4503-b88b-6e23136ccf3e status: 200 OK code: 200 - duration: 23.520542ms + duration: 117.136533ms - id: 34 request: proto: HTTP/1.1 @@ -1692,8 +1708,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-gw/v1/zones/fr-par-1/dhcps/a6fc5829-8455-417f-846d-11f9515a87ac + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/94b9c605-ece6-4961-8811-b8935b60d127 method: GET response: proto: HTTP/2.0 @@ -1701,20 +1717,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 568 + content_length: 1332 uncompressed: false - body: '{"address":"192.168.1.1","created_at":"2025-01-27T09:16:24.754760Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"a6fc5829-8455-417f-846d-11f9515a87ac","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:24.754760Z","valid_lifetime":"3600s","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T09:14:39.935413Z","gateway_networks":[{"created_at":"2025-03-24T09:14:48.404958Z","gateway_id":"94b9c605-ece6-4961-8811-b8935b60d127","id":"f94ba587-1e22-40c7-82a9-fe0f199f2bc8","ipam_ip_id":"90a807c5-5ee6-46cf-b167-ba9ae98d205d","mac_address":"02:00:00:13:F4:61","masquerade_enabled":true,"private_network_id":"69193ea4-2393-42d9-a93a-382286d358fa","push_default_route":true,"status":"ready","updated_at":"2025-03-24T09:14:59.124065Z","zone":"fr-par-1"}],"id":"94b9c605-ece6-4961-8811-b8935b60d127","ipv4":{"address":"163.172.152.109","created_at":"2025-03-24T09:14:39.922063Z","gateway_id":"94b9c605-ece6-4961-8811-b8935b60d127","id":"09e11863-a8b3-45b2-9861-0c00ae21852c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"109-152-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T09:14:39.922063Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-pensive-greider","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-03-24T09:14:59.352819Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "568" + - "1332" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:52 GMT + - Mon, 24 Mar 2025 09:15:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1722,10 +1738,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - edd20857-e1b1-4b4a-b451-4cc0bb343b28 + - e37270ea-f83b-4b11-9e14-374e5e9dd426 status: 200 OK code: 200 - duration: 25.571083ms + duration: 96.119756ms - id: 35 request: proto: HTTP/1.1 @@ -1741,8 +1757,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-gw/v1/zones/fr-par-1/gateways/13ea9766-660b-40e7-94e7-7d90ceed7df3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/f94ba587-1e22-40c7-82a9-fe0f199f2bc8 method: GET response: proto: HTTP/2.0 @@ -1750,20 +1766,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1947 + content_length: 416 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:25.454431Z","gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:35.215256Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:24.754760Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"a6fc5829-8455-417f-846d-11f9515a87ac","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:24.754760Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","id":"1a02d3c9-a1dc-45c0-900f-9e1aab19708b","ipam_config":null,"mac_address":"02:00:00:16:53:CB","private_network_id":"d9ff0ea2-b13a-4150-b418-77d33e4b75bb","status":"ready","updated_at":"2025-01-27T09:16:45.526912Z","zone":"fr-par-1"}],"id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","ip":{"address":"51.15.238.232","created_at":"2025-01-27T09:16:25.430263Z","gateway_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","id":"53688cb0-70fa-4c94-93c0-ec1771e4020a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"232-238-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:25.430263Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"tf-pn-cranky-margulis","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:45.668171Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-24T09:14:48.404958Z","gateway_id":"94b9c605-ece6-4961-8811-b8935b60d127","id":"f94ba587-1e22-40c7-82a9-fe0f199f2bc8","ipam_ip_id":"90a807c5-5ee6-46cf-b167-ba9ae98d205d","mac_address":"02:00:00:13:F4:61","masquerade_enabled":true,"private_network_id":"69193ea4-2393-42d9-a93a-382286d358fa","push_default_route":true,"status":"ready","updated_at":"2025-03-24T09:14:59.124065Z","zone":"fr-par-1"}' headers: Content-Length: - - "1947" + - "416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:52 GMT + - Mon, 24 Mar 2025 09:15:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1771,10 +1787,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eede1a0c-419d-448f-b543-ed624d009cc2 + - 3d136261-25af-43c1-89e5-63e99a879325 status: 200 OK code: 200 - duration: 25.86825ms + duration: 103.20406ms - id: 36 request: proto: HTTP/1.1 @@ -1790,8 +1806,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/d9ff0ea2-b13a-4150-b418-77d33e4b75bb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/f94ba587-1e22-40c7-82a9-fe0f199f2bc8 method: GET response: proto: HTTP/2.0 @@ -1799,20 +1815,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1019 + content_length: 416 uncompressed: false - body: '{"created_at":"2025-01-27T09:16:24.763092Z","dhcp_enabled":true,"id":"d9ff0ea2-b13a-4150-b418-77d33e4b75bb","name":"pn_test_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-27T09:16:24.763092Z","id":"1e2c80ec-96ed-4f84-9824-6abbd84226db","private_network_id":"d9ff0ea2-b13a-4150-b418-77d33e4b75bb","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:33.609121Z","vpc_id":"2a352565-f6f4-48bf-8254-84ce793bbe4c"},{"created_at":"2025-01-27T09:16:24.763092Z","id":"0b065a25-eddd-4397-9ac7-988b7c35f79a","private_network_id":"d9ff0ea2-b13a-4150-b418-77d33e4b75bb","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:94b4::/64","updated_at":"2025-01-27T09:16:33.616492Z","vpc_id":"2a352565-f6f4-48bf-8254-84ce793bbe4c"}],"tags":[],"updated_at":"2025-01-27T09:16:41.729084Z","vpc_id":"2a352565-f6f4-48bf-8254-84ce793bbe4c"}' + body: '{"created_at":"2025-03-24T09:14:48.404958Z","gateway_id":"94b9c605-ece6-4961-8811-b8935b60d127","id":"f94ba587-1e22-40c7-82a9-fe0f199f2bc8","ipam_ip_id":"90a807c5-5ee6-46cf-b167-ba9ae98d205d","mac_address":"02:00:00:13:F4:61","masquerade_enabled":true,"private_network_id":"69193ea4-2393-42d9-a93a-382286d358fa","push_default_route":true,"status":"ready","updated_at":"2025-03-24T09:14:59.124065Z","zone":"fr-par-1"}' headers: Content-Length: - - "1019" + - "416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:52 GMT + - Mon, 24 Mar 2025 09:15:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1820,10 +1836,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b334fe34-3414-459c-81fe-886f0fd1db97 + - c8a5d803-dcae-4a86-a865-167688ffa76e status: 200 OK code: 200 - duration: 31.866959ms + duration: 93.75635ms - id: 37 request: proto: HTTP/1.1 @@ -1839,8 +1855,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-gw/v1/zones/fr-par-1/gateway-networks/1a02d3c9-a1dc-45c0-900f-9e1aab19708b + - 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/instance/v1/zones/fr-par-1/servers/274d8926-0928-492d-a362-45407011ef8e/private_nics/34e7c0bb-10ba-48c3-9fea-4308a1371ad9 method: GET response: proto: HTTP/2.0 @@ -1848,20 +1864,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 966 + content_length: 473 uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:35.215256Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:24.754760Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"a6fc5829-8455-417f-846d-11f9515a87ac","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:24.754760Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","id":"1a02d3c9-a1dc-45c0-900f-9e1aab19708b","ipam_config":null,"mac_address":"02:00:00:16:53:CB","private_network_id":"d9ff0ea2-b13a-4150-b418-77d33e4b75bb","status":"ready","updated_at":"2025-01-27T09:16:45.526912Z","zone":"fr-par-1"}' + body: '{"private_nic":{"creation_date":"2025-03-24T09:15:01.287650+00:00","id":"34e7c0bb-10ba-48c3-9fea-4308a1371ad9","ipam_ip_ids":["5887264b-33c8-4628-ad18-21584a211188","970c64cd-555b-4fc6-9d27-86cd82ac1bda"],"mac_address":"02:00:00:1a:60:40","modification_date":"2025-03-24T09:15:01.494565+00:00","private_network_id":"69193ea4-2393-42d9-a93a-382286d358fa","server_id":"274d8926-0928-492d-a362-45407011ef8e","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "966" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:52 GMT + - Mon, 24 Mar 2025 09:15:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1869,10 +1885,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 02dd0a24-8627-419c-a623-98eed939ebf1 + - c8bb8ed3-f625-4fc8-b7c4-a12b30f141ae status: 200 OK code: 200 - duration: 45.039709ms + duration: 106.751747ms - id: 38 request: proto: HTTP/1.1 @@ -1888,8 +1904,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-gw/v1/zones/fr-par-1/gateways/13ea9766-660b-40e7-94e7-7d90ceed7df3 + - 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/instance/v1/zones/fr-par-1/servers/274d8926-0928-492d-a362-45407011ef8e/private_nics/34e7c0bb-10ba-48c3-9fea-4308a1371ad9 method: GET response: proto: HTTP/2.0 @@ -1897,20 +1913,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1947 + content_length: 473 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:25.454431Z","gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:35.215256Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:24.754760Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"a6fc5829-8455-417f-846d-11f9515a87ac","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:24.754760Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","id":"1a02d3c9-a1dc-45c0-900f-9e1aab19708b","ipam_config":null,"mac_address":"02:00:00:16:53:CB","private_network_id":"d9ff0ea2-b13a-4150-b418-77d33e4b75bb","status":"ready","updated_at":"2025-01-27T09:16:45.526912Z","zone":"fr-par-1"}],"id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","ip":{"address":"51.15.238.232","created_at":"2025-01-27T09:16:25.430263Z","gateway_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","id":"53688cb0-70fa-4c94-93c0-ec1771e4020a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"232-238-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:25.430263Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"tf-pn-cranky-margulis","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:45.668171Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"private_nic":{"creation_date":"2025-03-24T09:15:01.287650+00:00","id":"34e7c0bb-10ba-48c3-9fea-4308a1371ad9","ipam_ip_ids":["5887264b-33c8-4628-ad18-21584a211188","970c64cd-555b-4fc6-9d27-86cd82ac1bda"],"mac_address":"02:00:00:1a:60:40","modification_date":"2025-03-24T09:15:01.494565+00:00","private_network_id":"69193ea4-2393-42d9-a93a-382286d358fa","server_id":"274d8926-0928-492d-a362-45407011ef8e","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "1947" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:52 GMT + - Mon, 24 Mar 2025 09:15:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1918,10 +1934,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e90d4be0-45ea-4e76-a495-f077b3791dcd + - adf96e93-6d1d-4e56-ac78-ccf3a40d23ad status: 200 OK code: 200 - duration: 27.491916ms + duration: 159.555133ms - id: 39 request: proto: HTTP/1.1 @@ -1937,8 +1953,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-gw/v1/zones/fr-par-1/gateway-networks/1a02d3c9-a1dc-45c0-900f-9e1aab19708b + - 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/instance/v1/zones/fr-par-1/servers/274d8926-0928-492d-a362-45407011ef8e/private_nics/34e7c0bb-10ba-48c3-9fea-4308a1371ad9 method: GET response: proto: HTTP/2.0 @@ -1946,20 +1962,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 966 + content_length: 473 uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:35.215256Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:24.754760Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"a6fc5829-8455-417f-846d-11f9515a87ac","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:24.754760Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","id":"1a02d3c9-a1dc-45c0-900f-9e1aab19708b","ipam_config":null,"mac_address":"02:00:00:16:53:CB","private_network_id":"d9ff0ea2-b13a-4150-b418-77d33e4b75bb","status":"ready","updated_at":"2025-01-27T09:16:45.526912Z","zone":"fr-par-1"}' + body: '{"private_nic":{"creation_date":"2025-03-24T09:15:01.287650+00:00","id":"34e7c0bb-10ba-48c3-9fea-4308a1371ad9","ipam_ip_ids":["5887264b-33c8-4628-ad18-21584a211188","970c64cd-555b-4fc6-9d27-86cd82ac1bda"],"mac_address":"02:00:00:1a:60:40","modification_date":"2025-03-24T09:15:01.494565+00:00","private_network_id":"69193ea4-2393-42d9-a93a-382286d358fa","server_id":"274d8926-0928-492d-a362-45407011ef8e","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "966" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:52 GMT + - Mon, 24 Mar 2025 09:15:18 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1967,10 +1983,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aff4a6d5-66be-485e-a67b-90b41ffacb60 + - b8d0f6a3-698c-484b-96cf-ddd3137a1e8d status: 200 OK code: 200 - duration: 47.06625ms + duration: 126.861789ms - id: 40 request: proto: HTTP/1.1 @@ -1986,8 +2002,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-gw/v1/zones/fr-par-1/pat-rules/8b1d86e7-74d0-4660-aa66-913aa5c8ab63 + - 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/instance/v1/zones/fr-par-1/servers/274d8926-0928-492d-a362-45407011ef8e/private_nics/34e7c0bb-10ba-48c3-9fea-4308a1371ad9 method: GET response: proto: HTTP/2.0 @@ -1995,20 +2011,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 281 + content_length: 473 uncompressed: false - body: '{"created_at":"2025-01-27T09:16:50.907721Z","gateway_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","id":"8b1d86e7-74d0-4660-aa66-913aa5c8ab63","private_ip":"192.168.1.1","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-01-27T09:16:50.907721Z","zone":"fr-par-1"}' + body: '{"private_nic":{"creation_date":"2025-03-24T09:15:01.287650+00:00","id":"34e7c0bb-10ba-48c3-9fea-4308a1371ad9","ipam_ip_ids":["5887264b-33c8-4628-ad18-21584a211188","970c64cd-555b-4fc6-9d27-86cd82ac1bda"],"mac_address":"02:00:00:1a:60:40","modification_date":"2025-03-24T09:15:01.494565+00:00","private_network_id":"69193ea4-2393-42d9-a93a-382286d358fa","server_id":"274d8926-0928-492d-a362-45407011ef8e","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "281" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:52 GMT + - Mon, 24 Mar 2025 09:15:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2016,10 +2032,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 244c8627-3adb-4807-9539-ed38134b1eae + - f181a699-b093-4d97-921b-a7cb22d97629 status: 200 OK code: 200 - duration: 25.077417ms + duration: 120.606462ms - id: 41 request: proto: HTTP/1.1 @@ -2035,8 +2051,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-gw/v1/zones/fr-par-1/pat-rules/8b1d86e7-74d0-4660-aa66-913aa5c8ab63 + - 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/instance/v1/zones/fr-par-1/servers/274d8926-0928-492d-a362-45407011ef8e/private_nics/34e7c0bb-10ba-48c3-9fea-4308a1371ad9 method: GET response: proto: HTTP/2.0 @@ -2044,20 +2060,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 281 + content_length: 473 uncompressed: false - body: '{"created_at":"2025-01-27T09:16:50.907721Z","gateway_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","id":"8b1d86e7-74d0-4660-aa66-913aa5c8ab63","private_ip":"192.168.1.1","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-01-27T09:16:50.907721Z","zone":"fr-par-1"}' + body: '{"private_nic":{"creation_date":"2025-03-24T09:15:01.287650+00:00","id":"34e7c0bb-10ba-48c3-9fea-4308a1371ad9","ipam_ip_ids":["5887264b-33c8-4628-ad18-21584a211188","970c64cd-555b-4fc6-9d27-86cd82ac1bda"],"mac_address":"02:00:00:1a:60:40","modification_date":"2025-03-24T09:15:01.494565+00:00","private_network_id":"69193ea4-2393-42d9-a93a-382286d358fa","server_id":"274d8926-0928-492d-a362-45407011ef8e","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "281" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:52 GMT + - Mon, 24 Mar 2025 09:15:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2065,10 +2081,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3c0e0cd8-867f-43a3-be20-9b177ce0a0ae + - 5dc92661-8068-43c7-8e34-67e52eeeec24 status: 200 OK code: 200 - duration: 26.495666ms + duration: 682.139208ms - id: 42 request: proto: HTTP/1.1 @@ -2084,8 +2100,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-gw/v1/zones/fr-par-1/pat-rules/8b1d86e7-74d0-4660-aa66-913aa5c8ab63 + - 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/instance/v1/zones/fr-par-1/servers/274d8926-0928-492d-a362-45407011ef8e/private_nics/34e7c0bb-10ba-48c3-9fea-4308a1371ad9 method: GET response: proto: HTTP/2.0 @@ -2093,20 +2109,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 281 + content_length: 475 uncompressed: false - body: '{"created_at":"2025-01-27T09:16:50.907721Z","gateway_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","id":"8b1d86e7-74d0-4660-aa66-913aa5c8ab63","private_ip":"192.168.1.1","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-01-27T09:16:50.907721Z","zone":"fr-par-1"}' + body: '{"private_nic":{"creation_date":"2025-03-24T09:15:01.287650+00:00","id":"34e7c0bb-10ba-48c3-9fea-4308a1371ad9","ipam_ip_ids":["5887264b-33c8-4628-ad18-21584a211188","970c64cd-555b-4fc6-9d27-86cd82ac1bda"],"mac_address":"02:00:00:1a:60:40","modification_date":"2025-03-24T09:15:33.968063+00:00","private_network_id":"69193ea4-2393-42d9-a93a-382286d358fa","server_id":"274d8926-0928-492d-a362-45407011ef8e","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "281" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:52 GMT + - Mon, 24 Mar 2025 09:15:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2114,10 +2130,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b1633144-fab4-4d8c-8949-95b4147b073d + - 3f07fe69-5f0f-424d-bc08-a90d77f0186e status: 200 OK code: 200 - duration: 23.097584ms + duration: 207.213709ms - id: 43 request: proto: HTTP/1.1 @@ -2133,8 +2149,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-gw/v1/zones/fr-par-1/pat-rules/8b1d86e7-74d0-4660-aa66-913aa5c8ab63 + - 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/instance/v1/zones/fr-par-1/servers/274d8926-0928-492d-a362-45407011ef8e/private_nics/34e7c0bb-10ba-48c3-9fea-4308a1371ad9 method: GET response: proto: HTTP/2.0 @@ -2142,20 +2158,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 281 + content_length: 475 uncompressed: false - body: '{"created_at":"2025-01-27T09:16:50.907721Z","gateway_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","id":"8b1d86e7-74d0-4660-aa66-913aa5c8ab63","private_ip":"192.168.1.1","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-01-27T09:16:50.907721Z","zone":"fr-par-1"}' + body: '{"private_nic":{"creation_date":"2025-03-24T09:15:01.287650+00:00","id":"34e7c0bb-10ba-48c3-9fea-4308a1371ad9","ipam_ip_ids":["5887264b-33c8-4628-ad18-21584a211188","970c64cd-555b-4fc6-9d27-86cd82ac1bda"],"mac_address":"02:00:00:1a:60:40","modification_date":"2025-03-24T09:15:33.968063+00:00","private_network_id":"69193ea4-2393-42d9-a93a-382286d358fa","server_id":"274d8926-0928-492d-a362-45407011ef8e","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "281" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:52 GMT + - Mon, 24 Mar 2025 09:15:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2163,10 +2179,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b234e53-619c-4037-b424-9cc52c504da8 + - c2c10283-8ba5-46f0-a141-9e79c0485fd2 status: 200 OK code: 200 - duration: 19.841792ms + duration: 108.913127ms - id: 44 request: proto: HTTP/1.1 @@ -2182,8 +2198,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-gw/v1/zones/fr-par-1/pat-rules/8b1d86e7-74d0-4660-aa66-913aa5c8ab63 + - 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/instance/v1/zones/fr-par-1/servers/274d8926-0928-492d-a362-45407011ef8e method: GET response: proto: HTTP/2.0 @@ -2191,20 +2207,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 281 + content_length: 2287 uncompressed: false - body: '{"created_at":"2025-01-27T09:16:50.907721Z","gateway_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","id":"8b1d86e7-74d0-4660-aa66-913aa5c8ab63","private_ip":"192.168.1.1","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-01-27T09:16:50.907721Z","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-03-24T09:14:48.584179+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"274d8926-0928-492d-a362-45407011ef8e","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":"19","hypervisor_id":"601","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:9e:91:17","maintenances":[],"modification_date":"2025-03-24T09:14:59.203612+00:00","name":"Scaleway Instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-03-24T09:15:01.287650+00:00","id":"34e7c0bb-10ba-48c3-9fea-4308a1371ad9","ipam_ip_ids":["5887264b-33c8-4628-ad18-21584a211188","970c64cd-555b-4fc6-9d27-86cd82ac1bda"],"mac_address":"02:00:00:1a:60:40","modification_date":"2025-03-24T09:15:33.968063+00:00","private_network_id":"69193ea4-2393-42d9-a93a-382286d358fa","server_id":"274d8926-0928-492d-a362-45407011ef8e","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":"97cc3c6c-f528-4192-a733-1b98c17c3e1d","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d8370fbe-8fc3-4df4-940e-d7d90733b043","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "281" + - "2287" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:52 GMT + - Mon, 24 Mar 2025 09:15:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2212,10 +2228,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 82c6a142-64fe-495a-bbdc-e0d20dc3eb97 + - 8aee9976-f44a-4bd2-9afc-9b25481ed802 status: 200 OK code: 200 - duration: 20.370458ms + duration: 672.910212ms - id: 45 request: proto: HTTP/1.1 @@ -2231,8 +2247,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-gw/v1/zones/fr-par-1/pat-rules/8b1d86e7-74d0-4660-aa66-913aa5c8ab63 + - 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/instance/v1/zones/fr-par-1/volumes/d8370fbe-8fc3-4df4-940e-d7d90733b043 method: GET response: proto: HTTP/2.0 @@ -2240,20 +2256,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 281 + content_length: 143 uncompressed: false - body: '{"created_at":"2025-01-27T09:16:50.907721Z","gateway_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","id":"8b1d86e7-74d0-4660-aa66-913aa5c8ab63","private_ip":"192.168.1.1","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-01-27T09:16:50.907721Z","zone":"fr-par-1"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d8370fbe-8fc3-4df4-940e-d7d90733b043","type":"not_found"}' headers: Content-Length: - - "281" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:53 GMT + - Mon, 24 Mar 2025 09:15:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2261,10 +2277,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c0439ab3-9178-4b39-87fa-9b01214ea5ec - status: 200 OK - code: 200 - duration: 24.024583ms + - 9802dccc-b55e-464c-b21a-d0a5a07a2b4f + status: 404 Not Found + code: 404 + duration: 79.887426ms - id: 46 request: proto: HTTP/1.1 @@ -2280,8 +2296,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-gw/v1/zones/fr-par-1/gateways/13ea9766-660b-40e7-94e7-7d90ceed7df3 + - 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/block/v1alpha1/zones/fr-par-1/volumes/d8370fbe-8fc3-4df4-940e-d7d90733b043 method: GET response: proto: HTTP/2.0 @@ -2289,20 +2305,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1947 + content_length: 673 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:25.454431Z","gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:35.215256Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:24.754760Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"a6fc5829-8455-417f-846d-11f9515a87ac","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:24.754760Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","id":"1a02d3c9-a1dc-45c0-900f-9e1aab19708b","ipam_config":null,"mac_address":"02:00:00:16:53:CB","private_network_id":"d9ff0ea2-b13a-4150-b418-77d33e4b75bb","status":"ready","updated_at":"2025-01-27T09:16:45.526912Z","zone":"fr-par-1"}],"id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","ip":{"address":"51.15.238.232","created_at":"2025-01-27T09:16:25.430263Z","gateway_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","id":"53688cb0-70fa-4c94-93c0-ec1771e4020a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"232-238-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:25.430263Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"tf-pn-cranky-margulis","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:45.668171Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-24T09:14:48.715806Z","id":"d8370fbe-8fc3-4df4-940e-d7d90733b043","last_detached_at":null,"name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"6ba10234-492c-443d-9f5d-2bea203f4fb2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-03-24T09:14:48.715806Z","id":"51596ed5-8e0b-4ce7-a94a-5471be823e69","product_resource_id":"274d8926-0928-492d-a362-45407011ef8e","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-03-24T09:14:48.715806Z","zone":"fr-par-1"}' headers: Content-Length: - - "1947" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:53 GMT + - Mon, 24 Mar 2025 09:15:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2310,10 +2326,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 301fcdbb-86b0-4f4e-a49c-ae692cc5b9ef + - 040a69de-f6f8-48dc-a08c-d5894bfe5220 status: 200 OK code: 200 - duration: 26.674042ms + duration: 113.531155ms - id: 47 request: proto: HTTP/1.1 @@ -2329,27 +2345,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/pat-rules/8b1d86e7-74d0-4660-aa66-913aa5c8ab63 - method: DELETE + - 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/instance/v1/zones/fr-par-1/servers/274d8926-0928-492d-a362-45407011ef8e/user_data + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 17 uncompressed: false - body: "" + body: '{"user_data":[]}' headers: + Content-Length: + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:53 GMT + - Mon, 24 Mar 2025 09:15:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2357,10 +2375,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 806b5272-c628-4135-bee0-e000d472ce2d - status: 204 No Content - code: 204 - duration: 35.590958ms + - d8a7612d-b498-40bb-8890-2e8f9c693393 + status: 200 OK + code: 200 + duration: 231.340594ms - id: 48 request: proto: HTTP/1.1 @@ -2376,8 +2394,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-gw/v1/zones/fr-par-1/gateways/13ea9766-660b-40e7-94e7-7d90ceed7df3 + - 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/instance/v1/zones/fr-par-1/servers/274d8926-0928-492d-a362-45407011ef8e/private_nics method: GET response: proto: HTTP/2.0 @@ -2385,20 +2403,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1947 + content_length: 478 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:25.454431Z","gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:35.215256Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:24.754760Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"a6fc5829-8455-417f-846d-11f9515a87ac","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:24.754760Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","id":"1a02d3c9-a1dc-45c0-900f-9e1aab19708b","ipam_config":null,"mac_address":"02:00:00:16:53:CB","private_network_id":"d9ff0ea2-b13a-4150-b418-77d33e4b75bb","status":"ready","updated_at":"2025-01-27T09:16:45.526912Z","zone":"fr-par-1"}],"id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","ip":{"address":"51.15.238.232","created_at":"2025-01-27T09:16:25.430263Z","gateway_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","id":"53688cb0-70fa-4c94-93c0-ec1771e4020a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"232-238-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:25.430263Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"tf-pn-cranky-margulis","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:45.668171Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"private_nics":[{"creation_date":"2025-03-24T09:15:01.287650+00:00","id":"34e7c0bb-10ba-48c3-9fea-4308a1371ad9","ipam_ip_ids":["5887264b-33c8-4628-ad18-21584a211188","970c64cd-555b-4fc6-9d27-86cd82ac1bda"],"mac_address":"02:00:00:1a:60:40","modification_date":"2025-03-24T09:15:33.968063+00:00","private_network_id":"69193ea4-2393-42d9-a93a-382286d358fa","server_id":"274d8926-0928-492d-a362-45407011ef8e","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "1947" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:53 GMT + - Mon, 24 Mar 2025 09:15:35 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2406,10 +2426,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a7eed654-d559-483f-b59e-fca8faa01e2d + - 95c544fb-c2be-4f81-acb7-7fe75a340bce + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 31.570625ms + duration: 122.075028ms - id: 49 request: proto: HTTP/1.1 @@ -2425,8 +2447,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-gw/v1/zones/fr-par-1/gateway-networks/1a02d3c9-a1dc-45c0-900f-9e1aab19708b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A1a%3A60%3A40&order_by=created_at_desc&page=1&resource_type=unknown_type method: GET response: proto: HTTP/2.0 @@ -2434,20 +2456,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 966 + content_length: 516 uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:35.215256Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:24.754760Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"a6fc5829-8455-417f-846d-11f9515a87ac","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:24.754760Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","id":"1a02d3c9-a1dc-45c0-900f-9e1aab19708b","ipam_config":null,"mac_address":"02:00:00:16:53:CB","private_network_id":"d9ff0ea2-b13a-4150-b418-77d33e4b75bb","status":"ready","updated_at":"2025-01-27T09:16:45.526912Z","zone":"fr-par-1"}' + body: '{"ips":[{"address":"172.16.32.3/22","created_at":"2025-03-24T09:15:01.813229Z","id":"5887264b-33c8-4628-ad18-21584a211188","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"34e7c0bb-10ba-48c3-9fea-4308a1371ad9","mac_address":"02:00:00:1A:60:40","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b08dc41c-e47b-4eef-8dfa-6f666591e0a4"},"tags":[],"updated_at":"2025-03-24T09:15:01.813229Z","zone":null}],"total_count":1}' headers: Content-Length: - - "966" + - "516" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:53 GMT + - Mon, 24 Mar 2025 09:15:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2455,10 +2477,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 907e3a75-0797-4908-b23a-975169cc067f + - a8f70df1-abc2-4979-83e6-b3e9ea41cb8b status: 200 OK code: 200 - duration: 49.088959ms + duration: 111.52934ms - id: 50 request: proto: HTTP/1.1 @@ -2474,27 +2496,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/1a02d3c9-a1dc-45c0-900f-9e1aab19708b?cleanup_dhcp=true - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/94b9c605-ece6-4961-8811-b8935b60d127 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 1332 uncompressed: false - body: "" + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T09:14:39.935413Z","gateway_networks":[{"created_at":"2025-03-24T09:14:48.404958Z","gateway_id":"94b9c605-ece6-4961-8811-b8935b60d127","id":"f94ba587-1e22-40c7-82a9-fe0f199f2bc8","ipam_ip_id":"90a807c5-5ee6-46cf-b167-ba9ae98d205d","mac_address":"02:00:00:13:F4:61","masquerade_enabled":true,"private_network_id":"69193ea4-2393-42d9-a93a-382286d358fa","push_default_route":true,"status":"ready","updated_at":"2025-03-24T09:14:59.124065Z","zone":"fr-par-1"}],"id":"94b9c605-ece6-4961-8811-b8935b60d127","ipv4":{"address":"163.172.152.109","created_at":"2025-03-24T09:14:39.922063Z","gateway_id":"94b9c605-ece6-4961-8811-b8935b60d127","id":"09e11863-a8b3-45b2-9861-0c00ae21852c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"109-152-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T09:14:39.922063Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-pensive-greider","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-03-24T09:14:59.352819Z","version":"0.7.3","zone":"fr-par-1"}' headers: + Content-Length: + - "1332" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:53 GMT + - Mon, 24 Mar 2025 09:15:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2502,10 +2526,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 999d5698-7416-4bf3-9ec6-1e4299f48b3e - status: 204 No Content - code: 204 - duration: 67.692917ms + - fefc2e8f-2647-4499-b058-e1378668c222 + status: 200 OK + code: 200 + duration: 75.983567ms - id: 51 request: proto: HTTP/1.1 @@ -2521,8 +2545,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-gw/v1/zones/fr-par-1/gateway-networks/1a02d3c9-a1dc-45c0-900f-9e1aab19708b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/94b9c605-ece6-4961-8811-b8935b60d127 method: GET response: proto: HTTP/2.0 @@ -2530,20 +2554,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 970 + content_length: 1332 uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:35.215256Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:24.754760Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"a6fc5829-8455-417f-846d-11f9515a87ac","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:24.754760Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","id":"1a02d3c9-a1dc-45c0-900f-9e1aab19708b","ipam_config":null,"mac_address":"02:00:00:16:53:CB","private_network_id":"d9ff0ea2-b13a-4150-b418-77d33e4b75bb","status":"detaching","updated_at":"2025-01-27T09:16:53.353338Z","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T09:14:39.935413Z","gateway_networks":[{"created_at":"2025-03-24T09:14:48.404958Z","gateway_id":"94b9c605-ece6-4961-8811-b8935b60d127","id":"f94ba587-1e22-40c7-82a9-fe0f199f2bc8","ipam_ip_id":"90a807c5-5ee6-46cf-b167-ba9ae98d205d","mac_address":"02:00:00:13:F4:61","masquerade_enabled":true,"private_network_id":"69193ea4-2393-42d9-a93a-382286d358fa","push_default_route":true,"status":"ready","updated_at":"2025-03-24T09:14:59.124065Z","zone":"fr-par-1"}],"id":"94b9c605-ece6-4961-8811-b8935b60d127","ipv4":{"address":"163.172.152.109","created_at":"2025-03-24T09:14:39.922063Z","gateway_id":"94b9c605-ece6-4961-8811-b8935b60d127","id":"09e11863-a8b3-45b2-9861-0c00ae21852c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"109-152-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T09:14:39.922063Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-pensive-greider","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-03-24T09:14:59.352819Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "970" + - "1332" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:53 GMT + - Mon, 24 Mar 2025 09:15:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2551,48 +2575,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a788c0b2-fca1-4749-b389-1e27e57e1904 + - 5fa6a43c-12ac-4188-b095-d633e845da8e status: 200 OK code: 200 - duration: 48.57775ms + duration: 74.545973ms - id: 52 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 133 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"gateway_id":"94b9c605-ece6-4961-8811-b8935b60d127","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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/1a02d3c9-a1dc-45c0-900f-9e1aab19708b - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 136 + content_length: 281 uncompressed: false - body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"1a02d3c9-a1dc-45c0-900f-9e1aab19708b","type":"not_found"}' + body: '{"created_at":"2025-03-24T09:15:36.077221Z","gateway_id":"94b9c605-ece6-4961-8811-b8935b60d127","id":"978f337d-8779-47c7-9e96-38b84bd83fe9","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-03-24T09:15:36.077221Z","zone":"fr-par-1"}' headers: Content-Length: - - "136" + - "281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:58 GMT + - Mon, 24 Mar 2025 09:15:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2600,10 +2626,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c097be61-00a8-43af-9aff-44196fbeab21 - status: 404 Not Found - code: 404 - duration: 379.117541ms + - 02030ccc-cc20-4074-b85d-773cbda4c833 + status: 200 OK + code: 200 + duration: 129.763898ms - id: 53 request: proto: HTTP/1.1 @@ -2619,8 +2645,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-gw/v1/zones/fr-par-1/gateways/13ea9766-660b-40e7-94e7-7d90ceed7df3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/94b9c605-ece6-4961-8811-b8935b60d127 method: GET response: proto: HTTP/2.0 @@ -2628,20 +2654,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 981 + content_length: 1332 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:25.454431Z","gateway_networks":[],"id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","ip":{"address":"51.15.238.232","created_at":"2025-01-27T09:16:25.430263Z","gateway_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","id":"53688cb0-70fa-4c94-93c0-ec1771e4020a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"232-238-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:25.430263Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"tf-pn-cranky-margulis","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:45.668171Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T09:14:39.935413Z","gateway_networks":[{"created_at":"2025-03-24T09:14:48.404958Z","gateway_id":"94b9c605-ece6-4961-8811-b8935b60d127","id":"f94ba587-1e22-40c7-82a9-fe0f199f2bc8","ipam_ip_id":"90a807c5-5ee6-46cf-b167-ba9ae98d205d","mac_address":"02:00:00:13:F4:61","masquerade_enabled":true,"private_network_id":"69193ea4-2393-42d9-a93a-382286d358fa","push_default_route":true,"status":"ready","updated_at":"2025-03-24T09:14:59.124065Z","zone":"fr-par-1"}],"id":"94b9c605-ece6-4961-8811-b8935b60d127","ipv4":{"address":"163.172.152.109","created_at":"2025-03-24T09:14:39.922063Z","gateway_id":"94b9c605-ece6-4961-8811-b8935b60d127","id":"09e11863-a8b3-45b2-9861-0c00ae21852c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"109-152-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T09:14:39.922063Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-pensive-greider","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-03-24T09:14:59.352819Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "981" + - "1332" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:58 GMT + - Mon, 24 Mar 2025 09:15:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2649,10 +2675,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7bd88fdc-efc1-4df6-86b4-6b3fa332b594 + - a622ca98-18d0-4307-b76f-d4e0b5a81413 status: 200 OK code: 200 - duration: 26.133958ms + duration: 77.721319ms - id: 54 request: proto: HTTP/1.1 @@ -2668,29 +2694,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/a6fc5829-8455-417f-846d-11f9515a87ac - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/978f337d-8779-47c7-9e96-38b84bd83fe9 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 125 + content_length: 281 uncompressed: false - body: '{"message":"resource is not found","resource":"dhcp","resource_id":"a6fc5829-8455-417f-846d-11f9515a87ac","type":"not_found"}' + body: '{"created_at":"2025-03-24T09:15:36.077221Z","gateway_id":"94b9c605-ece6-4961-8811-b8935b60d127","id":"978f337d-8779-47c7-9e96-38b84bd83fe9","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-03-24T09:15:36.077221Z","zone":"fr-par-1"}' headers: Content-Length: - - "125" + - "281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:58 GMT + - Mon, 24 Mar 2025 09:15:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2698,10 +2724,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 638c0744-c672-491d-9710-562e1eabcc25 - status: 404 Not Found - code: 404 - duration: 23.39925ms + - bd8c0e11-2108-4fd9-a38e-879422d9fe3b + status: 200 OK + code: 200 + duration: 76.342803ms - id: 55 request: proto: HTTP/1.1 @@ -2717,8 +2743,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-gw/v1/zones/fr-par-1/gateways/13ea9766-660b-40e7-94e7-7d90ceed7df3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/978f337d-8779-47c7-9e96-38b84bd83fe9 method: GET response: proto: HTTP/2.0 @@ -2726,20 +2752,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 981 + content_length: 281 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:25.454431Z","gateway_networks":[],"id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","ip":{"address":"51.15.238.232","created_at":"2025-01-27T09:16:25.430263Z","gateway_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","id":"53688cb0-70fa-4c94-93c0-ec1771e4020a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"232-238-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:25.430263Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"tf-pn-cranky-margulis","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:45.668171Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-24T09:15:36.077221Z","gateway_id":"94b9c605-ece6-4961-8811-b8935b60d127","id":"978f337d-8779-47c7-9e96-38b84bd83fe9","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-03-24T09:15:36.077221Z","zone":"fr-par-1"}' headers: Content-Length: - - "981" + - "281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:58 GMT + - Mon, 24 Mar 2025 09:15:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2747,10 +2773,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e6894fb9-2b27-45a0-86cd-17744620dd80 + - 52866bec-fb71-4441-9a92-53ea757e7783 status: 200 OK code: 200 - duration: 25.083083ms + duration: 71.952087ms - id: 56 request: proto: HTTP/1.1 @@ -2766,27 +2792,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/13ea9766-660b-40e7-94e7-7d90ceed7df3?cleanup_dhcp=false - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/978f337d-8779-47c7-9e96-38b84bd83fe9 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 281 uncompressed: false - body: "" + body: '{"created_at":"2025-03-24T09:15:36.077221Z","gateway_id":"94b9c605-ece6-4961-8811-b8935b60d127","id":"978f337d-8779-47c7-9e96-38b84bd83fe9","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-03-24T09:15:36.077221Z","zone":"fr-par-1"}' headers: + Content-Length: + - "281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:58 GMT + - Mon, 24 Mar 2025 09:15:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2794,10 +2822,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b9d49f17-88ff-468f-969a-2c041eb2e770 - status: 204 No Content - code: 204 - duration: 46.129084ms + - b4451f23-850f-4ff0-afb4-24333648a8cb + status: 200 OK + code: 200 + duration: 72.25945ms - id: 57 request: proto: HTTP/1.1 @@ -2813,8 +2841,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-gw/v1/zones/fr-par-1/gateways/13ea9766-660b-40e7-94e7-7d90ceed7df3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/978f337d-8779-47c7-9e96-38b84bd83fe9 method: GET response: proto: HTTP/2.0 @@ -2822,20 +2850,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 128 + content_length: 281 uncompressed: false - body: '{"message":"resource is not found","resource":"gateway","resource_id":"13ea9766-660b-40e7-94e7-7d90ceed7df3","type":"not_found"}' + body: '{"created_at":"2025-03-24T09:15:36.077221Z","gateway_id":"94b9c605-ece6-4961-8811-b8935b60d127","id":"978f337d-8779-47c7-9e96-38b84bd83fe9","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-03-24T09:15:36.077221Z","zone":"fr-par-1"}' headers: Content-Length: - - "128" + - "281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:58 GMT + - Mon, 24 Mar 2025 09:15:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2843,10 +2871,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 598e20d9-f090-4435-823f-17e55c1e0f18 - status: 404 Not Found - code: 404 - duration: 24.234791ms + - 3109d4e9-0706-4902-90f7-54e3ef811a43 + status: 200 OK + code: 200 + duration: 86.226267ms - id: 58 request: proto: HTTP/1.1 @@ -2862,8 +2890,2362 @@ interactions: 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/d9ff0ea2-b13a-4150-b418-77d33e4b75bb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A1a%3A60%3A40&order_by=created_at_desc&page=1&resource_type=unknown_type + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 516 + uncompressed: false + body: '{"ips":[{"address":"172.16.32.3/22","created_at":"2025-03-24T09:15:01.813229Z","id":"5887264b-33c8-4628-ad18-21584a211188","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"34e7c0bb-10ba-48c3-9fea-4308a1371ad9","mac_address":"02:00:00:1A:60:40","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b08dc41c-e47b-4eef-8dfa-6f666591e0a4"},"tags":[],"updated_at":"2025-03-24T09:15:01.813229Z","zone":null}],"total_count":1}' + headers: + Content-Length: + - "516" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 24 Mar 2025 09:15:36 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: + - 1b58d020-b9c9-4a72-bb73-f437138af0cc + status: 200 OK + code: 200 + duration: 94.844266ms + - 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/978f337d-8779-47c7-9e96-38b84bd83fe9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 281 + uncompressed: false + body: '{"created_at":"2025-03-24T09:15:36.077221Z","gateway_id":"94b9c605-ece6-4961-8811-b8935b60d127","id":"978f337d-8779-47c7-9e96-38b84bd83fe9","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-03-24T09:15:36.077221Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "281" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 24 Mar 2025 09:15:37 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: + - e7ddbac1-bc17-4f88-9fef-c068cc2784af + status: 200 OK + code: 200 + duration: 66.706553ms + - 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/978f337d-8779-47c7-9e96-38b84bd83fe9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 281 + uncompressed: false + body: '{"created_at":"2025-03-24T09:15:36.077221Z","gateway_id":"94b9c605-ece6-4961-8811-b8935b60d127","id":"978f337d-8779-47c7-9e96-38b84bd83fe9","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-03-24T09:15:36.077221Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "281" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 24 Mar 2025 09:15:37 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: + - 79f50918-5858-4dde-a676-61f4d6e9c8e2 + status: 200 OK + code: 200 + duration: 66.744561ms + - 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/94b9c605-ece6-4961-8811-b8935b60d127 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1332 + uncompressed: false + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T09:14:39.935413Z","gateway_networks":[{"created_at":"2025-03-24T09:14:48.404958Z","gateway_id":"94b9c605-ece6-4961-8811-b8935b60d127","id":"f94ba587-1e22-40c7-82a9-fe0f199f2bc8","ipam_ip_id":"90a807c5-5ee6-46cf-b167-ba9ae98d205d","mac_address":"02:00:00:13:F4:61","masquerade_enabled":true,"private_network_id":"69193ea4-2393-42d9-a93a-382286d358fa","push_default_route":true,"status":"ready","updated_at":"2025-03-24T09:14:59.124065Z","zone":"fr-par-1"}],"id":"94b9c605-ece6-4961-8811-b8935b60d127","ipv4":{"address":"163.172.152.109","created_at":"2025-03-24T09:14:39.922063Z","gateway_id":"94b9c605-ece6-4961-8811-b8935b60d127","id":"09e11863-a8b3-45b2-9861-0c00ae21852c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"109-152-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T09:14:39.922063Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-pensive-greider","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-03-24T09:14:59.352819Z","version":"0.7.3","zone":"fr-par-1"}' + headers: + Content-Length: + - "1332" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 24 Mar 2025 09:15:37 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: + - 6850e6da-c641-4f12-9968-fc76d4f44b96 + status: 200 OK + code: 200 + duration: 73.856533ms + - 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/69193ea4-2393-42d9-a93a-382286d358fa + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1019 + uncompressed: false + body: '{"created_at":"2025-03-24T09:14:39.168179Z","dhcp_enabled":true,"id":"69193ea4-2393-42d9-a93a-382286d358fa","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-03-24T09:14:39.168179Z","id":"b08dc41c-e47b-4eef-8dfa-6f666591e0a4","private_network_id":"69193ea4-2393-42d9-a93a-382286d358fa","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-03-24T09:14:39.168179Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-03-24T09:14:39.168179Z","id":"c0834a45-47f6-4d06-90e2-1868e6df9b22","private_network_id":"69193ea4-2393-42d9-a93a-382286d358fa","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:f905::/64","updated_at":"2025-03-24T09:14:39.168179Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-03-24T09:14:55.262050Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + headers: + Content-Length: + - "1019" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 24 Mar 2025 09:15:37 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: + - b8ef26cc-ec5f-499d-a4bd-b4fbee1e79f9 + status: 200 OK + code: 200 + duration: 80.192794ms + - 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/70331283-1308-4a96-8e20-4061b235979e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 352 + uncompressed: false + body: '{"created_at":"2025-03-24T09:14:39.160125Z","id":"70331283-1308-4a96-8e20-4061b235979e","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-03-24T09:14:39.160125Z"}' + headers: + Content-Length: + - "352" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 24 Mar 2025 09:15:37 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: + - be66b51f-eb07-4ba1-91cb-75cabc2ee593 + status: 200 OK + code: 200 + duration: 89.608294ms + - 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/f94ba587-1e22-40c7-82a9-fe0f199f2bc8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 416 + uncompressed: false + body: '{"created_at":"2025-03-24T09:14:48.404958Z","gateway_id":"94b9c605-ece6-4961-8811-b8935b60d127","id":"f94ba587-1e22-40c7-82a9-fe0f199f2bc8","ipam_ip_id":"90a807c5-5ee6-46cf-b167-ba9ae98d205d","mac_address":"02:00:00:13:F4:61","masquerade_enabled":true,"private_network_id":"69193ea4-2393-42d9-a93a-382286d358fa","push_default_route":true,"status":"ready","updated_at":"2025-03-24T09:14:59.124065Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "416" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 24 Mar 2025 09:15:37 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: + - f8f74819-55c1-4569-aad3-cb5961da64ee + status: 200 OK + code: 200 + duration: 94.763568ms + - 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274d8926-0928-492d-a362-45407011ef8e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2287 + 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-03-24T09:14:48.584179+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"274d8926-0928-492d-a362-45407011ef8e","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":"19","hypervisor_id":"601","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:9e:91:17","maintenances":[],"modification_date":"2025-03-24T09:14:59.203612+00:00","name":"Scaleway Instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-03-24T09:15:01.287650+00:00","id":"34e7c0bb-10ba-48c3-9fea-4308a1371ad9","ipam_ip_ids":["5887264b-33c8-4628-ad18-21584a211188","970c64cd-555b-4fc6-9d27-86cd82ac1bda"],"mac_address":"02:00:00:1a:60:40","modification_date":"2025-03-24T09:15:33.968063+00:00","private_network_id":"69193ea4-2393-42d9-a93a-382286d358fa","server_id":"274d8926-0928-492d-a362-45407011ef8e","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":"97cc3c6c-f528-4192-a733-1b98c17c3e1d","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d8370fbe-8fc3-4df4-940e-d7d90733b043","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2287" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 24 Mar 2025 09:15:37 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: + - b3f76c3c-99f7-463b-99ae-6b2901ace122 + status: 200 OK + code: 200 + duration: 199.829491ms + - 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d8370fbe-8fc3-4df4-940e-d7d90733b043 + 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":"d8370fbe-8fc3-4df4-940e-d7d90733b043","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 24 Mar 2025 09:15:37 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: + - 7dcb3943-faf8-4bfd-a3e6-a62e10e9e76d + status: 404 Not Found + code: 404 + duration: 92.907532ms + - 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d8370fbe-8fc3-4df4-940e-d7d90733b043 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 673 + uncompressed: false + body: '{"created_at":"2025-03-24T09:14:48.715806Z","id":"d8370fbe-8fc3-4df4-940e-d7d90733b043","last_detached_at":null,"name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"6ba10234-492c-443d-9f5d-2bea203f4fb2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-03-24T09:14:48.715806Z","id":"51596ed5-8e0b-4ce7-a94a-5471be823e69","product_resource_id":"274d8926-0928-492d-a362-45407011ef8e","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-03-24T09:14:48.715806Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 24 Mar 2025 09:15:37 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: + - d2d5c0e2-5960-4733-a94e-bbfac275d90b + status: 200 OK + code: 200 + duration: 89.872572ms + - 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274d8926-0928-492d-a362-45407011ef8e/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 17 + uncompressed: false + body: '{"user_data":[]}' + headers: + Content-Length: + - "17" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 24 Mar 2025 09:15:38 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: + - 3ca30240-0186-4911-84e4-608f3f27fc5a + status: 200 OK + code: 200 + duration: 135.451453ms + - 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274d8926-0928-492d-a362-45407011ef8e/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 478 + uncompressed: false + body: '{"private_nics":[{"creation_date":"2025-03-24T09:15:01.287650+00:00","id":"34e7c0bb-10ba-48c3-9fea-4308a1371ad9","ipam_ip_ids":["5887264b-33c8-4628-ad18-21584a211188","970c64cd-555b-4fc6-9d27-86cd82ac1bda"],"mac_address":"02:00:00:1a:60:40","modification_date":"2025-03-24T09:15:33.968063+00:00","private_network_id":"69193ea4-2393-42d9-a93a-382286d358fa","server_id":"274d8926-0928-492d-a362-45407011ef8e","state":"available","tags":[],"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "478" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 24 Mar 2025 09:15:38 GMT + Link: + - ; rel="last" + 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: + - 1f481820-8c8f-4ed7-b131-01594a0b7853 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 134.047496ms + - 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.0; darwin; 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%3A1a%3A60%3A40&order_by=created_at_desc&page=1&resource_type=unknown_type + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 516 + uncompressed: false + body: '{"ips":[{"address":"172.16.32.3/22","created_at":"2025-03-24T09:15:01.813229Z","id":"5887264b-33c8-4628-ad18-21584a211188","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"34e7c0bb-10ba-48c3-9fea-4308a1371ad9","mac_address":"02:00:00:1A:60:40","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b08dc41c-e47b-4eef-8dfa-6f666591e0a4"},"tags":[],"updated_at":"2025-03-24T09:15:01.813229Z","zone":null}],"total_count":1}' + headers: + Content-Length: + - "516" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 24 Mar 2025 09:15:38 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: + - 51da278b-c8de-4a6e-bccc-1e0fb370d80d + status: 200 OK + code: 200 + duration: 106.781854ms + - 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/978f337d-8779-47c7-9e96-38b84bd83fe9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 281 + uncompressed: false + body: '{"created_at":"2025-03-24T09:15:36.077221Z","gateway_id":"94b9c605-ece6-4961-8811-b8935b60d127","id":"978f337d-8779-47c7-9e96-38b84bd83fe9","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-03-24T09:15:36.077221Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "281" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 24 Mar 2025 09:15:38 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: + - ec071ac9-0f51-4bac-9897-cbf91d6c5b6f + status: 200 OK + code: 200 + duration: 77.831105ms + - 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/978f337d-8779-47c7-9e96-38b84bd83fe9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 281 + uncompressed: false + body: '{"created_at":"2025-03-24T09:15:36.077221Z","gateway_id":"94b9c605-ece6-4961-8811-b8935b60d127","id":"978f337d-8779-47c7-9e96-38b84bd83fe9","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-03-24T09:15:36.077221Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "281" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 24 Mar 2025 09:15:38 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: + - f0385916-eaef-4512-ad62-1b7a0a7a119f + status: 200 OK + code: 200 + duration: 68.829496ms + - 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/978f337d-8779-47c7-9e96-38b84bd83fe9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 281 + uncompressed: false + body: '{"created_at":"2025-03-24T09:15:36.077221Z","gateway_id":"94b9c605-ece6-4961-8811-b8935b60d127","id":"978f337d-8779-47c7-9e96-38b84bd83fe9","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-03-24T09:15:36.077221Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "281" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 24 Mar 2025 09:15:38 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: + - 9f095d9b-734a-4bcf-b014-a6c4f13828a4 + status: 200 OK + code: 200 + duration: 73.929941ms + - 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.0; darwin; 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%3A1a%3A60%3A40&order_by=created_at_desc&page=1&resource_type=unknown_type + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 516 + uncompressed: false + body: '{"ips":[{"address":"172.16.32.3/22","created_at":"2025-03-24T09:15:01.813229Z","id":"5887264b-33c8-4628-ad18-21584a211188","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"34e7c0bb-10ba-48c3-9fea-4308a1371ad9","mac_address":"02:00:00:1A:60:40","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b08dc41c-e47b-4eef-8dfa-6f666591e0a4"},"tags":[],"updated_at":"2025-03-24T09:15:01.813229Z","zone":null}],"total_count":1}' + headers: + Content-Length: + - "516" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 24 Mar 2025 09:15:38 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: + - 02370baa-62c2-49c6-9052-f806b4a43fb2 + status: 200 OK + code: 200 + duration: 96.136566ms + - 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/978f337d-8779-47c7-9e96-38b84bd83fe9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 281 + uncompressed: false + body: '{"created_at":"2025-03-24T09:15:36.077221Z","gateway_id":"94b9c605-ece6-4961-8811-b8935b60d127","id":"978f337d-8779-47c7-9e96-38b84bd83fe9","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-03-24T09:15:36.077221Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "281" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 24 Mar 2025 09:15:38 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: + - 519150f7-2fb2-4330-ab35-7ff91a27508b + status: 200 OK + code: 200 + duration: 71.054102ms + - 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/978f337d-8779-47c7-9e96-38b84bd83fe9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 281 + uncompressed: false + body: '{"created_at":"2025-03-24T09:15:36.077221Z","gateway_id":"94b9c605-ece6-4961-8811-b8935b60d127","id":"978f337d-8779-47c7-9e96-38b84bd83fe9","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-03-24T09:15:36.077221Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "281" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 24 Mar 2025 09:15:39 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: + - 65a4fdb8-da83-44f7-9700-41cf20f6e3c9 + status: 200 OK + code: 200 + duration: 67.654468ms + - id: 77 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/978f337d-8779-47c7-9e96-38b84bd83fe9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 281 + uncompressed: false + body: '{"created_at":"2025-03-24T09:15:36.077221Z","gateway_id":"94b9c605-ece6-4961-8811-b8935b60d127","id":"978f337d-8779-47c7-9e96-38b84bd83fe9","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-03-24T09:15:36.077221Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "281" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 24 Mar 2025 09:15:39 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: + - 48feba12-87f1-4585-9b20-ca1420b860d5 + status: 200 OK + code: 200 + duration: 78.429397ms + - id: 78 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/70331283-1308-4a96-8e20-4061b235979e + 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, 24 Mar 2025 09:15:39 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: + - 70d119b6-68f9-4841-956d-f1ef1d42440d + status: 204 No Content + code: 204 + duration: 146.525533ms + - id: 79 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/94b9c605-ece6-4961-8811-b8935b60d127 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1332 + uncompressed: false + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T09:14:39.935413Z","gateway_networks":[{"created_at":"2025-03-24T09:14:48.404958Z","gateway_id":"94b9c605-ece6-4961-8811-b8935b60d127","id":"f94ba587-1e22-40c7-82a9-fe0f199f2bc8","ipam_ip_id":"90a807c5-5ee6-46cf-b167-ba9ae98d205d","mac_address":"02:00:00:13:F4:61","masquerade_enabled":true,"private_network_id":"69193ea4-2393-42d9-a93a-382286d358fa","push_default_route":true,"status":"ready","updated_at":"2025-03-24T09:14:59.124065Z","zone":"fr-par-1"}],"id":"94b9c605-ece6-4961-8811-b8935b60d127","ipv4":{"address":"163.172.152.109","created_at":"2025-03-24T09:14:39.922063Z","gateway_id":"94b9c605-ece6-4961-8811-b8935b60d127","id":"09e11863-a8b3-45b2-9861-0c00ae21852c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"109-152-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T09:14:39.922063Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-pensive-greider","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-03-24T09:14:59.352819Z","version":"0.7.3","zone":"fr-par-1"}' + headers: + Content-Length: + - "1332" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 24 Mar 2025 09:15:39 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: + - b3d929f3-a855-4c9c-96af-22cd33649939 + status: 200 OK + code: 200 + duration: 81.261964ms + - id: 80 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/978f337d-8779-47c7-9e96-38b84bd83fe9 + 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, 24 Mar 2025 09:15:39 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: + - 4f16a7a6-a7cb-4440-8db5-c66600c5af45 + status: 204 No Content + code: 204 + duration: 112.575213ms + - id: 81 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/94b9c605-ece6-4961-8811-b8935b60d127 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1332 + uncompressed: false + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T09:14:39.935413Z","gateway_networks":[{"created_at":"2025-03-24T09:14:48.404958Z","gateway_id":"94b9c605-ece6-4961-8811-b8935b60d127","id":"f94ba587-1e22-40c7-82a9-fe0f199f2bc8","ipam_ip_id":"90a807c5-5ee6-46cf-b167-ba9ae98d205d","mac_address":"02:00:00:13:F4:61","masquerade_enabled":true,"private_network_id":"69193ea4-2393-42d9-a93a-382286d358fa","push_default_route":true,"status":"ready","updated_at":"2025-03-24T09:14:59.124065Z","zone":"fr-par-1"}],"id":"94b9c605-ece6-4961-8811-b8935b60d127","ipv4":{"address":"163.172.152.109","created_at":"2025-03-24T09:14:39.922063Z","gateway_id":"94b9c605-ece6-4961-8811-b8935b60d127","id":"09e11863-a8b3-45b2-9861-0c00ae21852c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"109-152-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T09:14:39.922063Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-pensive-greider","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-03-24T09:14:59.352819Z","version":"0.7.3","zone":"fr-par-1"}' + headers: + Content-Length: + - "1332" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 24 Mar 2025 09:15:39 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: + - ada5114f-c387-43d8-befe-232687992e53 + status: 200 OK + code: 200 + duration: 78.878644ms + - id: 82 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/f94ba587-1e22-40c7-82a9-fe0f199f2bc8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 416 + uncompressed: false + body: '{"created_at":"2025-03-24T09:14:48.404958Z","gateway_id":"94b9c605-ece6-4961-8811-b8935b60d127","id":"f94ba587-1e22-40c7-82a9-fe0f199f2bc8","ipam_ip_id":"90a807c5-5ee6-46cf-b167-ba9ae98d205d","mac_address":"02:00:00:13:F4:61","masquerade_enabled":true,"private_network_id":"69193ea4-2393-42d9-a93a-382286d358fa","push_default_route":true,"status":"ready","updated_at":"2025-03-24T09:14:59.124065Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "416" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 24 Mar 2025 09:15:40 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: + - 6799d91a-07d5-49c0-8a96-3b6ff45ae1fa + status: 200 OK + code: 200 + duration: 91.143846ms + - 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/f94ba587-1e22-40c7-82a9-fe0f199f2bc8 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 420 + uncompressed: false + body: '{"created_at":"2025-03-24T09:14:48.404958Z","gateway_id":"94b9c605-ece6-4961-8811-b8935b60d127","id":"f94ba587-1e22-40c7-82a9-fe0f199f2bc8","ipam_ip_id":"90a807c5-5ee6-46cf-b167-ba9ae98d205d","mac_address":"02:00:00:13:F4:61","masquerade_enabled":true,"private_network_id":"69193ea4-2393-42d9-a93a-382286d358fa","push_default_route":true,"status":"detaching","updated_at":"2025-03-24T09:15:40.113255Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "420" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 24 Mar 2025 09:15:40 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: + - 12c869b2-0456-4c09-827b-68c775668fd2 + status: 200 OK + code: 200 + duration: 137.363939ms + - id: 84 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274d8926-0928-492d-a362-45407011ef8e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2287 + 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-03-24T09:14:48.584179+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"274d8926-0928-492d-a362-45407011ef8e","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":"19","hypervisor_id":"601","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:9e:91:17","maintenances":[],"modification_date":"2025-03-24T09:14:59.203612+00:00","name":"Scaleway Instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-03-24T09:15:01.287650+00:00","id":"34e7c0bb-10ba-48c3-9fea-4308a1371ad9","ipam_ip_ids":["5887264b-33c8-4628-ad18-21584a211188","970c64cd-555b-4fc6-9d27-86cd82ac1bda"],"mac_address":"02:00:00:1a:60:40","modification_date":"2025-03-24T09:15:33.968063+00:00","private_network_id":"69193ea4-2393-42d9-a93a-382286d358fa","server_id":"274d8926-0928-492d-a362-45407011ef8e","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":"97cc3c6c-f528-4192-a733-1b98c17c3e1d","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d8370fbe-8fc3-4df4-940e-d7d90733b043","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2287" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 24 Mar 2025 09:15:40 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: + - ff895227-9f16-4a7e-b828-d5eeb92bd049 + status: 200 OK + code: 200 + duration: 255.779892ms + - id: 85 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/f94ba587-1e22-40c7-82a9-fe0f199f2bc8 + 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-03-24T09:14:48.404958Z","gateway_id":"94b9c605-ece6-4961-8811-b8935b60d127","id":"f94ba587-1e22-40c7-82a9-fe0f199f2bc8","ipam_ip_id":"90a807c5-5ee6-46cf-b167-ba9ae98d205d","mac_address":"02:00:00:13:F4:61","masquerade_enabled":true,"private_network_id":"69193ea4-2393-42d9-a93a-382286d358fa","push_default_route":true,"status":"detaching","updated_at":"2025-03-24T09:15:40.113255Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "420" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 24 Mar 2025 09:15:40 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: + - 8e3750d6-b1b7-40bf-8fed-12105e0e876d + status: 200 OK + code: 200 + duration: 95.506256ms + - id: 86 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d8370fbe-8fc3-4df4-940e-d7d90733b043 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 673 + uncompressed: false + body: '{"created_at":"2025-03-24T09:14:48.715806Z","id":"d8370fbe-8fc3-4df4-940e-d7d90733b043","last_detached_at":null,"name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"6ba10234-492c-443d-9f5d-2bea203f4fb2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-03-24T09:14:48.715806Z","id":"51596ed5-8e0b-4ce7-a94a-5471be823e69","product_resource_id":"274d8926-0928-492d-a362-45407011ef8e","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-03-24T09:14:48.715806Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 24 Mar 2025 09:15:40 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: + - 95bd88a7-a825-4320-85d3-3989447425e9 + status: 200 OK + code: 200 + duration: 89.266512ms + - id: 87 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 21 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"action":"poweroff"}' + 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/instance/v1/zones/fr-par-1/servers/274d8926-0928-492d-a362-45407011ef8e/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 352 + uncompressed: false + body: '{"task":{"description":"server_poweroff","href_from":"/servers/274d8926-0928-492d-a362-45407011ef8e/action","href_result":"/servers/274d8926-0928-492d-a362-45407011ef8e","id":"2b97d3ae-1bf8-48a2-823b-2a456e1aa9e4","progress":0,"started_at":"2025-03-24T09:15:40.780232+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + headers: + Content-Length: + - "352" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 24 Mar 2025 09:15:40 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/2b97d3ae-1bf8-48a2-823b-2a456e1aa9e4 + 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: + - 19fecf25-3eca-473a-9a97-71003a73681b + status: 202 Accepted + code: 202 + duration: 649.036527ms + - id: 88 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274d8926-0928-492d-a362-45407011ef8e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2247 + 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-03-24T09:14:48.584179+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"274d8926-0928-492d-a362-45407011ef8e","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":"19","hypervisor_id":"601","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:9e:91:17","maintenances":[],"modification_date":"2025-03-24T09:15:40.321162+00:00","name":"Scaleway Instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-03-24T09:15:01.287650+00:00","id":"34e7c0bb-10ba-48c3-9fea-4308a1371ad9","ipam_ip_ids":["5887264b-33c8-4628-ad18-21584a211188","970c64cd-555b-4fc6-9d27-86cd82ac1bda"],"mac_address":"02:00:00:1a:60:40","modification_date":"2025-03-24T09:15:33.968063+00:00","private_network_id":"69193ea4-2393-42d9-a93a-382286d358fa","server_id":"274d8926-0928-492d-a362-45407011ef8e","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":"97cc3c6c-f528-4192-a733-1b98c17c3e1d","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d8370fbe-8fc3-4df4-940e-d7d90733b043","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2247" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 24 Mar 2025 09:15:41 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: + - 516dbdc0-2d65-44f8-9809-b3da04939c6c + status: 200 OK + code: 200 + duration: 252.445585ms + - 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/f94ba587-1e22-40c7-82a9-fe0f199f2bc8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 136 + uncompressed: false + body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"f94ba587-1e22-40c7-82a9-fe0f199f2bc8","type":"not_found"}' + headers: + Content-Length: + - "136" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 24 Mar 2025 09:15:45 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: + - ca740296-7fb7-4dba-955b-04b1de44a6e9 + status: 404 Not Found + code: 404 + duration: 95.163113ms + - id: 90 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/94b9c605-ece6-4961-8811-b8935b60d127 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + 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-03-24T09:14:39.935413Z","gateway_networks":[],"id":"94b9c605-ece6-4961-8811-b8935b60d127","ipv4":{"address":"163.172.152.109","created_at":"2025-03-24T09:14:39.922063Z","gateway_id":"94b9c605-ece6-4961-8811-b8935b60d127","id":"09e11863-a8b3-45b2-9861-0c00ae21852c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"109-152-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T09:14:39.922063Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-pensive-greider","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-03-24T09:14:59.352819Z","version":"0.7.3","zone":"fr-par-1"}' + headers: + Content-Length: + - "916" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 24 Mar 2025 09:15:45 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: + - 0815e4a3-0444-49cc-8da5-48c52ad571c0 + status: 200 OK + code: 200 + duration: 73.5299ms + - id: 91 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + 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/vpc-gw/v2/zones/fr-par-1/gateways/94b9c605-ece6-4961-8811-b8935b60d127?delete_ip=false + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 917 + uncompressed: false + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-24T09:14:39.935413Z","gateway_networks":[],"id":"94b9c605-ece6-4961-8811-b8935b60d127","ipv4":{"address":"163.172.152.109","created_at":"2025-03-24T09:14:39.922063Z","gateway_id":"94b9c605-ece6-4961-8811-b8935b60d127","id":"09e11863-a8b3-45b2-9861-0c00ae21852c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"109-152-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-24T09:14:39.922063Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-pensive-greider","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-03-24T09:15:45.525843Z","version":"0.7.3","zone":"fr-par-1"}' + headers: + Content-Length: + - "917" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 24 Mar 2025 09:15:45 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: + - a307d022-b083-4772-b076-21536343ca54 + status: 200 OK + code: 200 + duration: 124.300361ms + - id: 92 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + 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/vpc-gw/v2/zones/fr-par-1/gateways/94b9c605-ece6-4961-8811-b8935b60d127 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 128 + uncompressed: false + body: '{"message":"resource is not found","resource":"gateway","resource_id":"94b9c605-ece6-4961-8811-b8935b60d127","type":"not_found"}' + headers: + Content-Length: + - "128" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 24 Mar 2025 09:15:45 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: + - ff9174d9-5f62-47f9-8c08-fcc9bdc959f3 + status: 404 Not Found + code: 404 + duration: 74.114392ms + - 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274d8926-0928-492d-a362-45407011ef8e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2247 + 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-03-24T09:14:48.584179+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"274d8926-0928-492d-a362-45407011ef8e","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":"19","hypervisor_id":"601","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:9e:91:17","maintenances":[],"modification_date":"2025-03-24T09:15:40.321162+00:00","name":"Scaleway Instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-03-24T09:15:01.287650+00:00","id":"34e7c0bb-10ba-48c3-9fea-4308a1371ad9","ipam_ip_ids":["5887264b-33c8-4628-ad18-21584a211188","970c64cd-555b-4fc6-9d27-86cd82ac1bda"],"mac_address":"02:00:00:1a:60:40","modification_date":"2025-03-24T09:15:33.968063+00:00","private_network_id":"69193ea4-2393-42d9-a93a-382286d358fa","server_id":"274d8926-0928-492d-a362-45407011ef8e","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":"97cc3c6c-f528-4192-a733-1b98c17c3e1d","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d8370fbe-8fc3-4df4-940e-d7d90733b043","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2247" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 24 Mar 2025 09:15:46 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: + - 32e8ab6a-1bd2-42fe-9318-4a7e0da5e5ea + status: 200 OK + code: 200 + duration: 314.969734ms + - 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274d8926-0928-492d-a362-45407011ef8e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2247 + 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-03-24T09:14:48.584179+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"274d8926-0928-492d-a362-45407011ef8e","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":"19","hypervisor_id":"601","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:9e:91:17","maintenances":[],"modification_date":"2025-03-24T09:15:40.321162+00:00","name":"Scaleway Instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-03-24T09:15:01.287650+00:00","id":"34e7c0bb-10ba-48c3-9fea-4308a1371ad9","ipam_ip_ids":["5887264b-33c8-4628-ad18-21584a211188","970c64cd-555b-4fc6-9d27-86cd82ac1bda"],"mac_address":"02:00:00:1a:60:40","modification_date":"2025-03-24T09:15:33.968063+00:00","private_network_id":"69193ea4-2393-42d9-a93a-382286d358fa","server_id":"274d8926-0928-492d-a362-45407011ef8e","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":"97cc3c6c-f528-4192-a733-1b98c17c3e1d","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d8370fbe-8fc3-4df4-940e-d7d90733b043","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2247" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 24 Mar 2025 09:15:51 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: + - 12120ac2-555b-4b12-88b0-56343439684b + status: 200 OK + code: 200 + duration: 290.403769ms + - 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274d8926-0928-492d-a362-45407011ef8e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2132 + uncompressed: false + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-03-24T09:14:48.584179+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"274d8926-0928-492d-a362-45407011ef8e","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:9e:91:17","maintenances":[],"modification_date":"2025-03-24T09:15:56.308765+00:00","name":"Scaleway Instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-03-24T09:15:01.287650+00:00","id":"34e7c0bb-10ba-48c3-9fea-4308a1371ad9","ipam_ip_ids":["5887264b-33c8-4628-ad18-21584a211188","970c64cd-555b-4fc6-9d27-86cd82ac1bda"],"mac_address":"02:00:00:1a:60:40","modification_date":"2025-03-24T09:15:33.968063+00:00","private_network_id":"69193ea4-2393-42d9-a93a-382286d358fa","server_id":"274d8926-0928-492d-a362-45407011ef8e","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":"97cc3c6c-f528-4192-a733-1b98c17c3e1d","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"d8370fbe-8fc3-4df4-940e-d7d90733b043","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2132" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 24 Mar 2025 09:15:56 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: + - 31e129c2-3a8a-42a5-8fed-a68db97ba66d + status: 200 OK + code: 200 + duration: 197.218432ms + - id: 96 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + 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/instance/v1/zones/fr-par-1/servers/274d8926-0928-492d-a362-45407011ef8e/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 478 + uncompressed: false + body: '{"private_nics":[{"creation_date":"2025-03-24T09:15:01.287650+00:00","id":"34e7c0bb-10ba-48c3-9fea-4308a1371ad9","ipam_ip_ids":["5887264b-33c8-4628-ad18-21584a211188","970c64cd-555b-4fc6-9d27-86cd82ac1bda"],"mac_address":"02:00:00:1a:60:40","modification_date":"2025-03-24T09:15:33.968063+00:00","private_network_id":"69193ea4-2393-42d9-a93a-382286d358fa","server_id":"274d8926-0928-492d-a362-45407011ef8e","state":"available","tags":[],"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "478" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 24 Mar 2025 09:15:57 GMT + Link: + - ; rel="last" + 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: + - e218755a-8a31-454a-a16f-d917c647a003 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 124.727641ms + - 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274d8926-0928-492d-a362-45407011ef8e/private_nics/34e7c0bb-10ba-48c3-9fea-4308a1371ad9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 475 + uncompressed: false + body: '{"private_nic":{"creation_date":"2025-03-24T09:15:01.287650+00:00","id":"34e7c0bb-10ba-48c3-9fea-4308a1371ad9","ipam_ip_ids":["5887264b-33c8-4628-ad18-21584a211188","970c64cd-555b-4fc6-9d27-86cd82ac1bda"],"mac_address":"02:00:00:1a:60:40","modification_date":"2025-03-24T09:15:33.968063+00:00","private_network_id":"69193ea4-2393-42d9-a93a-382286d358fa","server_id":"274d8926-0928-492d-a362-45407011ef8e","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, 24 Mar 2025 09:15:57 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: + - a0350731-f3d1-4a1a-b1f3-490dd4b387c4 + status: 200 OK + code: 200 + duration: 110.216495ms + - id: 98 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + 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/instance/v1/zones/fr-par-1/servers/274d8926-0928-492d-a362-45407011ef8e/private_nics/34e7c0bb-10ba-48c3-9fea-4308a1371ad9 + 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, 24 Mar 2025 09:15:57 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: + - 672e7b14-eee4-4b53-b7fd-65a8a296dd36 + status: 204 No Content + code: 204 + duration: 347.929379ms + - id: 99 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + 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/instance/v1/zones/fr-par-1/servers/274d8926-0928-492d-a362-45407011ef8e/private_nics/34e7c0bb-10ba-48c3-9fea-4308a1371ad9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 148 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"34e7c0bb-10ba-48c3-9fea-4308a1371ad9","type":"not_found"}' + headers: + Content-Length: + - "148" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 24 Mar 2025 09:15:57 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: + - 61448bb9-2793-46ce-a1cc-bdfec2aaca34 + status: 404 Not Found + code: 404 + duration: 118.833733ms + - id: 100 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + 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/instance/v1/zones/fr-par-1/servers/274d8926-0928-492d-a362-45407011ef8e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1674 + uncompressed: false + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-03-24T09:14:48.584179+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"274d8926-0928-492d-a362-45407011ef8e","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:9e:91:17","maintenances":[],"modification_date":"2025-03-24T09:15:56.308765+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":"97cc3c6c-f528-4192-a733-1b98c17c3e1d","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"d8370fbe-8fc3-4df4-940e-d7d90733b043","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1674" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 24 Mar 2025 09:15:57 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: + - 8e44690b-9e37-499c-a3d7-f130c82f95a8 + status: 200 OK + code: 200 + duration: 175.379238ms + - 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274d8926-0928-492d-a362-45407011ef8e + 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, 24 Mar 2025 09:15:58 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: + - e039e499-155d-4990-8f7c-55126f192110 + status: 204 No Content + code: 204 + duration: 296.380439ms + - id: 102 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + 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/instance/v1/zones/fr-par-1/servers/274d8926-0928-492d-a362-45407011ef8e + 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_server","resource_id":"274d8926-0928-492d-a362-45407011ef8e","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 24 Mar 2025 09:15:58 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: + - 023b0bbf-3119-40cb-bf85-67bbcc269fba + status: 404 Not Found + code: 404 + duration: 115.214988ms + - id: 103 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + 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/instance/v1/zones/fr-par-1/volumes/d8370fbe-8fc3-4df4-940e-d7d90733b043 + 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":"d8370fbe-8fc3-4df4-940e-d7d90733b043","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 24 Mar 2025 09:15:58 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: + - 4cedff0e-404f-4378-85ab-e366b8ee73fa + status: 404 Not Found + code: 404 + duration: 91.784498ms + - 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d8370fbe-8fc3-4df4-940e-d7d90733b043 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 471 + uncompressed: false + body: '{"created_at":"2025-03-24T09:14:48.715806Z","id":"d8370fbe-8fc3-4df4-940e-d7d90733b043","last_detached_at":"2025-03-24T09:15:58.225771Z","name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"6ba10234-492c-443d-9f5d-2bea203f4fb2","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-03-24T09:15:58.225771Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "471" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 24 Mar 2025 09:15:58 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: + - 3756db7b-559b-4d72-aba9-b71f0c5f4487 + status: 200 OK + code: 200 + duration: 98.100933ms + - 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d8370fbe-8fc3-4df4-940e-d7d90733b043 + 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, 24 Mar 2025 09:15:58 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: + - 12cd3de2-2d32-4ef0-861b-a85393a86e71 + status: 204 No Content + code: 204 + duration: 133.688915ms + - 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/69193ea4-2393-42d9-a93a-382286d358fa method: DELETE response: proto: HTTP/2.0 @@ -2880,9 +5262,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:59 GMT + - Mon, 24 Mar 2025 09:15:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2890,7 +5272,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fd089366-094c-4a92-842b-5cb9cb5fc7af + - 5421619e-13a3-4389-912b-44e6c1260ed4 status: 204 No Content code: 204 - duration: 1.151727875s + duration: 1.102362247s diff --git a/internal/services/vpcgw/testdata/vpc-gateway-network-basic.cassette.yaml b/internal/services/vpcgw/testdata/vpc-gateway-network-basic.cassette.yaml deleted file mode 100644 index 10fa55d884..0000000000 --- a/internal/services/vpcgw/testdata/vpc-gateway-network-basic.cassette.yaml +++ /dev/null @@ -1,2749 +0,0 @@ ---- -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":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"192.168.1.0/24"}' - 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-gw/v1/zones/fr-par-1/dhcps - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 568 - uncompressed: false - body: '{"address":"192.168.1.1","created_at":"2025-01-27T09:16:01.070660Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"15c8ce11-9fb0-4002-be99-9ce0cf65ca15","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:01.070660Z","valid_lifetime":"3600s","zone":"fr-par-1"}' - headers: - Content-Length: - - "568" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:01 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: - - 204cc929-25ed-47ea-a988-ea623bdbbc19 - status: 200 OK - code: 200 - duration: 60.695084ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/15c8ce11-9fb0-4002-be99-9ce0cf65ca15 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 568 - uncompressed: false - body: '{"address":"192.168.1.1","created_at":"2025-01-27T09:16:01.070660Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"15c8ce11-9fb0-4002-be99-9ce0cf65ca15","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:01.070660Z","valid_lifetime":"3600s","zone":"fr-par-1"}' - headers: - Content-Length: - - "568" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:01 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: - - f9b7ff64-dc1d-40d0-8fb2-a2d6d94bdfdb - status: 200 OK - code: 200 - duration: 22.783417ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 103 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"pn_test_network","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - 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: 1019 - uncompressed: false - body: '{"created_at":"2025-01-27T09:16:01.142668Z","dhcp_enabled":true,"id":"636f4c99-adec-4e47-b358-1eca3392a943","name":"pn_test_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-27T09:16:01.142668Z","id":"1d4b6819-5787-4e33-a836-f2c816c16f72","private_network_id":"636f4c99-adec-4e47-b358-1eca3392a943","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.32.0/22","updated_at":"2025-01-27T09:16:01.142668Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-01-27T09:16:01.142668Z","id":"71396945-f4a7-4c17-80e9-90fcd39d5b41","private_network_id":"636f4c99-adec-4e47-b358-1eca3392a943","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:15f0::/64","updated_at":"2025-01-27T09:16:01.142668Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-01-27T09:16:01.142668Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' - headers: - Content-Length: - - "1019" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:01 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: - - 5411948c-c8da-4930-b912-b09d2121889c - status: 200 OK - code: 200 - duration: 678.504834ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/636f4c99-adec-4e47-b358-1eca3392a943 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1019 - uncompressed: false - body: '{"created_at":"2025-01-27T09:16:01.142668Z","dhcp_enabled":true,"id":"636f4c99-adec-4e47-b358-1eca3392a943","name":"pn_test_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-27T09:16:01.142668Z","id":"1d4b6819-5787-4e33-a836-f2c816c16f72","private_network_id":"636f4c99-adec-4e47-b358-1eca3392a943","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.32.0/22","updated_at":"2025-01-27T09:16:01.142668Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-01-27T09:16:01.142668Z","id":"71396945-f4a7-4c17-80e9-90fcd39d5b41","private_network_id":"636f4c99-adec-4e47-b358-1eca3392a943","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:15f0::/64","updated_at":"2025-01-27T09:16:01.142668Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-01-27T09:16:01.142668Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' - headers: - Content-Length: - - "1019" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:01 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: - - 2e48bea1-bea2-4cc8-888b-ff59369b7e92 - status: 200 OK - code: 200 - duration: 30.785458ms - - 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":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 358 - uncompressed: false - body: '{"address":"51.15.205.149","created_at":"2025-01-27T09:16:01.872269Z","gateway_id":null,"id":"4846847f-9ee3-4c93-a028-edec3ae80fc9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"149-205-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.872269Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "358" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:01 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: - - 10a1bafb-52b4-4150-9645-6cf4db782dfb - status: 200 OK - code: 200 - duration: 876.051584ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips/4846847f-9ee3-4c93-a028-edec3ae80fc9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 358 - uncompressed: false - body: '{"address":"51.15.205.149","created_at":"2025-01-27T09:16:01.872269Z","gateway_id":null,"id":"4846847f-9ee3-4c93-a028-edec3ae80fc9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"149-205-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.872269Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "358" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:01 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: - - 6147f53e-6e35-40a7-a339-2820739ee721 - status: 200 OK - code: 200 - duration: 25.649916ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips/4846847f-9ee3-4c93-a028-edec3ae80fc9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 358 - uncompressed: false - body: '{"address":"51.15.205.149","created_at":"2025-01-27T09:16:01.872269Z","gateway_id":null,"id":"4846847f-9ee3-4c93-a028-edec3ae80fc9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"149-205-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.872269Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "358" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:03 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: - - 9e944081-81a8-466b-a169-fee2305389e9 - status: 200 OK - code: 200 - duration: 22.7385ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/15c8ce11-9fb0-4002-be99-9ce0cf65ca15 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 568 - uncompressed: false - body: '{"address":"192.168.1.1","created_at":"2025-01-27T09:16:01.070660Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"15c8ce11-9fb0-4002-be99-9ce0cf65ca15","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:01.070660Z","valid_lifetime":"3600s","zone":"fr-par-1"}' - headers: - Content-Length: - - "568" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:03 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: - - 7d578f3f-7332-426d-a5dc-aff2a7c69d11 - status: 200 OK - code: 200 - duration: 23.557875ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/636f4c99-adec-4e47-b358-1eca3392a943 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1019 - uncompressed: false - body: '{"created_at":"2025-01-27T09:16:01.142668Z","dhcp_enabled":true,"id":"636f4c99-adec-4e47-b358-1eca3392a943","name":"pn_test_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-27T09:16:01.142668Z","id":"1d4b6819-5787-4e33-a836-f2c816c16f72","private_network_id":"636f4c99-adec-4e47-b358-1eca3392a943","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.32.0/22","updated_at":"2025-01-27T09:16:01.142668Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-01-27T09:16:01.142668Z","id":"71396945-f4a7-4c17-80e9-90fcd39d5b41","private_network_id":"636f4c99-adec-4e47-b358-1eca3392a943","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:15f0::/64","updated_at":"2025-01-27T09:16:01.142668Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-01-27T09:16:01.142668Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' - headers: - Content-Length: - - "1019" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:03 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: - - f1f7cc38-d172-435c-8129-1321aabd9813 - status: 200 OK - code: 200 - duration: 26.951583ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/15c8ce11-9fb0-4002-be99-9ce0cf65ca15 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 568 - uncompressed: false - body: '{"address":"192.168.1.1","created_at":"2025-01-27T09:16:01.070660Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"15c8ce11-9fb0-4002-be99-9ce0cf65ca15","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:01.070660Z","valid_lifetime":"3600s","zone":"fr-par-1"}' - headers: - Content-Length: - - "568" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:04 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: - - 870c362d-e5bd-4084-8888-bbe1d54b751a - status: 200 OK - code: 200 - duration: 25.831709ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips/4846847f-9ee3-4c93-a028-edec3ae80fc9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 358 - uncompressed: false - body: '{"address":"51.15.205.149","created_at":"2025-01-27T09:16:01.872269Z","gateway_id":null,"id":"4846847f-9ee3-4c93-a028-edec3ae80fc9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"149-205-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.872269Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "358" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:04 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: - - ac221d14-c82b-4fe6-a586-bc54bf9ba471 - status: 200 OK - code: 200 - duration: 31.849833ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/636f4c99-adec-4e47-b358-1eca3392a943 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1019 - uncompressed: false - body: '{"created_at":"2025-01-27T09:16:01.142668Z","dhcp_enabled":true,"id":"636f4c99-adec-4e47-b358-1eca3392a943","name":"pn_test_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-27T09:16:01.142668Z","id":"1d4b6819-5787-4e33-a836-f2c816c16f72","private_network_id":"636f4c99-adec-4e47-b358-1eca3392a943","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.32.0/22","updated_at":"2025-01-27T09:16:01.142668Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-01-27T09:16:01.142668Z","id":"71396945-f4a7-4c17-80e9-90fcd39d5b41","private_network_id":"636f4c99-adec-4e47-b358-1eca3392a943","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:15f0::/64","updated_at":"2025-01-27T09:16:01.142668Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-01-27T09:16:01.142668Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' - headers: - Content-Length: - - "1019" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:04 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: - - 67eeb4b4-3bde-4786-a630-c77e61a1020c - status: 200 OK - code: 200 - duration: 32.992625ms - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 213 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"foobar","tags":[],"type":"VPC-GW-S","upstream_dns_servers":[],"ip_id":"4846847f-9ee3-4c93-a028-edec3ae80fc9","enable_smtp":false,"enable_bastion":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-gw/v1/zones/fr-par-1/gateways - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 968 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:05.499158Z","gateway_networks":[],"id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","ip":{"address":"51.15.205.149","created_at":"2025-01-27T09:16:01.872269Z","gateway_id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","id":"4846847f-9ee3-4c93-a028-edec3ae80fc9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"149-205-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.872269Z","zone":"fr-par-1"},"ip_mobility_enabled":false,"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:05.499158Z","upstream_dns_servers":[],"version":null,"zone":"fr-par-1"}' - headers: - Content-Length: - - "968" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:05 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: - - bc5a5ca2-448d-4a77-891a-ebf15cbb19d2 - status: 200 OK - code: 200 - duration: 74.308083ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/c2fe134c-0133-455f-9b80-f2ab4023aee8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 970 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:05.499158Z","gateway_networks":[],"id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","ip":{"address":"51.15.205.149","created_at":"2025-01-27T09:16:01.872269Z","gateway_id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","id":"4846847f-9ee3-4c93-a028-edec3ae80fc9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"149-205-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.872269Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:05.540852Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' - headers: - Content-Length: - - "970" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:05 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: - - 89e87f02-4f42-4abf-b24a-9f9f804b0b31 - status: 200 OK - code: 200 - duration: 24.990292ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/c2fe134c-0133-455f-9b80-f2ab4023aee8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 967 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:05.499158Z","gateway_networks":[],"id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","ip":{"address":"51.15.205.149","created_at":"2025-01-27T09:16:01.872269Z","gateway_id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","id":"4846847f-9ee3-4c93-a028-edec3ae80fc9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"149-205-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.872269Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:10.240590Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' - headers: - Content-Length: - - "967" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:10 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: - - ee804730-6a6f-4119-8232-3489d072fe4a - status: 200 OK - code: 200 - duration: 24.286625ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/c2fe134c-0133-455f-9b80-f2ab4023aee8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 967 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:05.499158Z","gateway_networks":[],"id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","ip":{"address":"51.15.205.149","created_at":"2025-01-27T09:16:01.872269Z","gateway_id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","id":"4846847f-9ee3-4c93-a028-edec3ae80fc9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"149-205-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.872269Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:10.240590Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' - headers: - Content-Length: - - "967" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:10 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: - - 212c3509-65ec-4ae8-95b1-6b243809d831 - status: 200 OK - code: 200 - duration: 26.567541ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/c2fe134c-0133-455f-9b80-f2ab4023aee8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 967 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:05.499158Z","gateway_networks":[],"id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","ip":{"address":"51.15.205.149","created_at":"2025-01-27T09:16:01.872269Z","gateway_id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","id":"4846847f-9ee3-4c93-a028-edec3ae80fc9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"149-205-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.872269Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:10.240590Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' - headers: - Content-Length: - - "967" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:10 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: - - 977d5d34-da9d-4077-9127-45666f9d1891 - status: 200 OK - code: 200 - duration: 27.594041ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 206 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"gateway_id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","private_network_id":"636f4c99-adec-4e47-b358-1eca3392a943","enable_masquerade":true,"enable_dhcp":true,"dhcp_id":"15c8ce11-9fb0-4002-be99-9ce0cf65ca15"}' - 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-gw/v1/zones/fr-par-1/gateway-networks - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 953 - uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:12.741670Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:01.070660Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"15c8ce11-9fb0-4002-be99-9ce0cf65ca15","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:01.070660Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","id":"e4743489-de29-4059-a3e5-9d170f545f18","ipam_config":null,"mac_address":null,"private_network_id":"636f4c99-adec-4e47-b358-1eca3392a943","status":"created","updated_at":"2025-01-27T09:16:12.741670Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "953" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16: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: - - b742f577-96d8-4a6a-a6ad-51a84f9375af - status: 200 OK - code: 200 - duration: 2.231574083s - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/c2fe134c-0133-455f-9b80-f2ab4023aee8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1923 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:05.499158Z","gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:12.741670Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:01.070660Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"15c8ce11-9fb0-4002-be99-9ce0cf65ca15","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:01.070660Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","id":"e4743489-de29-4059-a3e5-9d170f545f18","ipam_config":null,"mac_address":null,"private_network_id":"636f4c99-adec-4e47-b358-1eca3392a943","status":"created","updated_at":"2025-01-27T09:16:12.741670Z","zone":"fr-par-1"}],"id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","ip":{"address":"51.15.205.149","created_at":"2025-01-27T09:16:01.872269Z","gateway_id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","id":"4846847f-9ee3-4c93-a028-edec3ae80fc9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"149-205-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.872269Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:12.886385Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' - headers: - Content-Length: - - "1923" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16: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: - - 930d79a1-a5c4-4671-95f4-86a1e384996d - status: 200 OK - code: 200 - duration: 24.776916ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/c2fe134c-0133-455f-9b80-f2ab4023aee8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1923 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:05.499158Z","gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:12.741670Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:01.070660Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"15c8ce11-9fb0-4002-be99-9ce0cf65ca15","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:01.070660Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","id":"e4743489-de29-4059-a3e5-9d170f545f18","ipam_config":null,"mac_address":null,"private_network_id":"636f4c99-adec-4e47-b358-1eca3392a943","status":"created","updated_at":"2025-01-27T09:16:12.741670Z","zone":"fr-par-1"}],"id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","ip":{"address":"51.15.205.149","created_at":"2025-01-27T09:16:01.872269Z","gateway_id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","id":"4846847f-9ee3-4c93-a028-edec3ae80fc9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"149-205-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.872269Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:12.886385Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' - headers: - Content-Length: - - "1923" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:17 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: - - 2dec472c-4d31-4cdf-a6ec-fba3feb24269 - status: 200 OK - code: 200 - duration: 26.66025ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/c2fe134c-0133-455f-9b80-f2ab4023aee8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1942 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:05.499158Z","gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:12.741670Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:01.070660Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"15c8ce11-9fb0-4002-be99-9ce0cf65ca15","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:01.070660Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","id":"e4743489-de29-4059-a3e5-9d170f545f18","ipam_config":null,"mac_address":"02:00:00:1A:67:44","private_network_id":"636f4c99-adec-4e47-b358-1eca3392a943","status":"configuring","updated_at":"2025-01-27T09:16:18.591310Z","zone":"fr-par-1"}],"id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","ip":{"address":"51.15.205.149","created_at":"2025-01-27T09:16:01.872269Z","gateway_id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","id":"4846847f-9ee3-4c93-a028-edec3ae80fc9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"149-205-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.872269Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:12.886385Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' - headers: - Content-Length: - - "1942" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:22 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: - - d7d5eadf-0763-4a0d-948b-4afcf77ab741 - status: 200 OK - code: 200 - duration: 32.112333ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/c2fe134c-0133-455f-9b80-f2ab4023aee8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1932 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:05.499158Z","gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:12.741670Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:01.070660Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"15c8ce11-9fb0-4002-be99-9ce0cf65ca15","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:01.070660Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","id":"e4743489-de29-4059-a3e5-9d170f545f18","ipam_config":null,"mac_address":"02:00:00:1A:67:44","private_network_id":"636f4c99-adec-4e47-b358-1eca3392a943","status":"ready","updated_at":"2025-01-27T09:16:23.152497Z","zone":"fr-par-1"}],"id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","ip":{"address":"51.15.205.149","created_at":"2025-01-27T09:16:01.872269Z","gateway_id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","id":"4846847f-9ee3-4c93-a028-edec3ae80fc9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"149-205-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.872269Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:23.349496Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' - headers: - Content-Length: - - "1932" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:28 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: - - c2e8667e-9a26-4f4b-b71e-e3f370ff0906 - status: 200 OK - code: 200 - duration: 116.706291ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/e4743489-de29-4059-a3e5-9d170f545f18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 966 - uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:12.741670Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:01.070660Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"15c8ce11-9fb0-4002-be99-9ce0cf65ca15","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:01.070660Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","id":"e4743489-de29-4059-a3e5-9d170f545f18","ipam_config":null,"mac_address":"02:00:00:1A:67:44","private_network_id":"636f4c99-adec-4e47-b358-1eca3392a943","status":"ready","updated_at":"2025-01-27T09:16:23.152497Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "966" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:28 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: - - c56008e4-cde8-4ea2-a6ff-a04b14055ac7 - status: 200 OK - code: 200 - duration: 50.044917ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/e4743489-de29-4059-a3e5-9d170f545f18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 966 - uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:12.741670Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:01.070660Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"15c8ce11-9fb0-4002-be99-9ce0cf65ca15","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:01.070660Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","id":"e4743489-de29-4059-a3e5-9d170f545f18","ipam_config":null,"mac_address":"02:00:00:1A:67:44","private_network_id":"636f4c99-adec-4e47-b358-1eca3392a943","status":"ready","updated_at":"2025-01-27T09:16:23.152497Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "966" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:28 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: - - db5241a9-100a-423b-8e82-c957b827105b - status: 200 OK - code: 200 - duration: 39.63375ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/c2fe134c-0133-455f-9b80-f2ab4023aee8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1932 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:05.499158Z","gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:12.741670Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:01.070660Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"15c8ce11-9fb0-4002-be99-9ce0cf65ca15","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:01.070660Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","id":"e4743489-de29-4059-a3e5-9d170f545f18","ipam_config":null,"mac_address":"02:00:00:1A:67:44","private_network_id":"636f4c99-adec-4e47-b358-1eca3392a943","status":"ready","updated_at":"2025-01-27T09:16:23.152497Z","zone":"fr-par-1"}],"id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","ip":{"address":"51.15.205.149","created_at":"2025-01-27T09:16:01.872269Z","gateway_id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","id":"4846847f-9ee3-4c93-a028-edec3ae80fc9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"149-205-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.872269Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:23.349496Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' - headers: - Content-Length: - - "1932" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:28 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: - - 4ee7c974-38e3-4a61-92ba-3712c824befa - status: 200 OK - code: 200 - duration: 26.500542ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/e4743489-de29-4059-a3e5-9d170f545f18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 966 - uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:12.741670Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:01.070660Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"15c8ce11-9fb0-4002-be99-9ce0cf65ca15","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:01.070660Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","id":"e4743489-de29-4059-a3e5-9d170f545f18","ipam_config":null,"mac_address":"02:00:00:1A:67:44","private_network_id":"636f4c99-adec-4e47-b358-1eca3392a943","status":"ready","updated_at":"2025-01-27T09:16:23.152497Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "966" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:28 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: - - 2aa4d1b8-8f47-4611-8bc2-174ac9237da6 - status: 200 OK - code: 200 - duration: 83.737375ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/e4743489-de29-4059-a3e5-9d170f545f18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 966 - uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:12.741670Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:01.070660Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"15c8ce11-9fb0-4002-be99-9ce0cf65ca15","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:01.070660Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","id":"e4743489-de29-4059-a3e5-9d170f545f18","ipam_config":null,"mac_address":"02:00:00:1A:67:44","private_network_id":"636f4c99-adec-4e47-b358-1eca3392a943","status":"ready","updated_at":"2025-01-27T09:16:23.152497Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "966" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:28 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: - - b8036860-3811-4f10-a1df-a3c128e4964d - status: 200 OK - code: 200 - duration: 49.874208ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips/4846847f-9ee3-4c93-a028-edec3ae80fc9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 392 - uncompressed: false - body: '{"address":"51.15.205.149","created_at":"2025-01-27T09:16:01.872269Z","gateway_id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","id":"4846847f-9ee3-4c93-a028-edec3ae80fc9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"149-205-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.872269Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "392" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:29 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6bc79ba3-b33a-4d4f-ab84-8a85d6d8ee65 - status: 200 OK - code: 200 - duration: 55.02875ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/15c8ce11-9fb0-4002-be99-9ce0cf65ca15 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 568 - uncompressed: false - body: '{"address":"192.168.1.1","created_at":"2025-01-27T09:16:01.070660Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"15c8ce11-9fb0-4002-be99-9ce0cf65ca15","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:01.070660Z","valid_lifetime":"3600s","zone":"fr-par-1"}' - headers: - Content-Length: - - "568" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:29 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a2d03595-a51d-4fe4-8ef4-a583b36fdf5c - status: 200 OK - code: 200 - duration: 50.773083ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/636f4c99-adec-4e47-b358-1eca3392a943 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1019 - uncompressed: false - body: '{"created_at":"2025-01-27T09:16:01.142668Z","dhcp_enabled":true,"id":"636f4c99-adec-4e47-b358-1eca3392a943","name":"pn_test_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-27T09:16:01.142668Z","id":"1d4b6819-5787-4e33-a836-f2c816c16f72","private_network_id":"636f4c99-adec-4e47-b358-1eca3392a943","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:10.963859Z","vpc_id":"3a299bea-546c-4b3f-9902-b6c2d03859d7"},{"created_at":"2025-01-27T09:16:01.142668Z","id":"71396945-f4a7-4c17-80e9-90fcd39d5b41","private_network_id":"636f4c99-adec-4e47-b358-1eca3392a943","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:15f0::/64","updated_at":"2025-01-27T09:16:10.969659Z","vpc_id":"3a299bea-546c-4b3f-9902-b6c2d03859d7"}],"tags":[],"updated_at":"2025-01-27T09:16:19.386112Z","vpc_id":"3a299bea-546c-4b3f-9902-b6c2d03859d7"}' - headers: - Content-Length: - - "1019" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:29 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c575d2fe-e76d-4ba1-8762-f83a91cd7020 - status: 200 OK - code: 200 - duration: 47.845458ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/c2fe134c-0133-455f-9b80-f2ab4023aee8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1932 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:05.499158Z","gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:12.741670Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:01.070660Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"15c8ce11-9fb0-4002-be99-9ce0cf65ca15","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:01.070660Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","id":"e4743489-de29-4059-a3e5-9d170f545f18","ipam_config":null,"mac_address":"02:00:00:1A:67:44","private_network_id":"636f4c99-adec-4e47-b358-1eca3392a943","status":"ready","updated_at":"2025-01-27T09:16:23.152497Z","zone":"fr-par-1"}],"id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","ip":{"address":"51.15.205.149","created_at":"2025-01-27T09:16:01.872269Z","gateway_id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","id":"4846847f-9ee3-4c93-a028-edec3ae80fc9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"149-205-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.872269Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:23.349496Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' - headers: - Content-Length: - - "1932" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:29 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 832bd822-9c40-41fd-a871-77c22de1819c - status: 200 OK - code: 200 - duration: 26.962125ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/e4743489-de29-4059-a3e5-9d170f545f18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 966 - uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:12.741670Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:01.070660Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"15c8ce11-9fb0-4002-be99-9ce0cf65ca15","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:01.070660Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","id":"e4743489-de29-4059-a3e5-9d170f545f18","ipam_config":null,"mac_address":"02:00:00:1A:67:44","private_network_id":"636f4c99-adec-4e47-b358-1eca3392a943","status":"ready","updated_at":"2025-01-27T09:16:23.152497Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "966" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:29 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7f2f8ded-8ab1-47a6-aa24-1f8b25cbdeb9 - status: 200 OK - code: 200 - duration: 50.07225ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/c2fe134c-0133-455f-9b80-f2ab4023aee8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1932 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:05.499158Z","gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:12.741670Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:01.070660Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"15c8ce11-9fb0-4002-be99-9ce0cf65ca15","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:01.070660Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","id":"e4743489-de29-4059-a3e5-9d170f545f18","ipam_config":null,"mac_address":"02:00:00:1A:67:44","private_network_id":"636f4c99-adec-4e47-b358-1eca3392a943","status":"ready","updated_at":"2025-01-27T09:16:23.152497Z","zone":"fr-par-1"}],"id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","ip":{"address":"51.15.205.149","created_at":"2025-01-27T09:16:01.872269Z","gateway_id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","id":"4846847f-9ee3-4c93-a028-edec3ae80fc9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"149-205-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.872269Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:23.349496Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' - headers: - Content-Length: - - "1932" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:29 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 762c4bdf-d259-4d1c-8394-fde6127bb7d5 - status: 200 OK - code: 200 - duration: 26.815708ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/e4743489-de29-4059-a3e5-9d170f545f18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 966 - uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:12.741670Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:01.070660Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"15c8ce11-9fb0-4002-be99-9ce0cf65ca15","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:01.070660Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","id":"e4743489-de29-4059-a3e5-9d170f545f18","ipam_config":null,"mac_address":"02:00:00:1A:67:44","private_network_id":"636f4c99-adec-4e47-b358-1eca3392a943","status":"ready","updated_at":"2025-01-27T09:16:23.152497Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "966" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:29 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 55ea0a34-9f3c-4d9c-a515-9f888428d0dc - status: 200 OK - code: 200 - duration: 49.016792ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips/4846847f-9ee3-4c93-a028-edec3ae80fc9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 392 - uncompressed: false - body: '{"address":"51.15.205.149","created_at":"2025-01-27T09:16:01.872269Z","gateway_id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","id":"4846847f-9ee3-4c93-a028-edec3ae80fc9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"149-205-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.872269Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "392" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16: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: - - 6fa45ed9-9f1b-4452-bad6-31108f4a9566 - status: 200 OK - code: 200 - duration: 24.281584ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/15c8ce11-9fb0-4002-be99-9ce0cf65ca15 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 568 - uncompressed: false - body: '{"address":"192.168.1.1","created_at":"2025-01-27T09:16:01.070660Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"15c8ce11-9fb0-4002-be99-9ce0cf65ca15","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:01.070660Z","valid_lifetime":"3600s","zone":"fr-par-1"}' - headers: - Content-Length: - - "568" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16: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: - - cfe910f4-6a6f-4909-a2f2-f21059228cc4 - status: 200 OK - code: 200 - duration: 24.660125ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/636f4c99-adec-4e47-b358-1eca3392a943 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1019 - uncompressed: false - body: '{"created_at":"2025-01-27T09:16:01.142668Z","dhcp_enabled":true,"id":"636f4c99-adec-4e47-b358-1eca3392a943","name":"pn_test_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-27T09:16:01.142668Z","id":"1d4b6819-5787-4e33-a836-f2c816c16f72","private_network_id":"636f4c99-adec-4e47-b358-1eca3392a943","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:10.963859Z","vpc_id":"3a299bea-546c-4b3f-9902-b6c2d03859d7"},{"created_at":"2025-01-27T09:16:01.142668Z","id":"71396945-f4a7-4c17-80e9-90fcd39d5b41","private_network_id":"636f4c99-adec-4e47-b358-1eca3392a943","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:15f0::/64","updated_at":"2025-01-27T09:16:10.969659Z","vpc_id":"3a299bea-546c-4b3f-9902-b6c2d03859d7"}],"tags":[],"updated_at":"2025-01-27T09:16:19.386112Z","vpc_id":"3a299bea-546c-4b3f-9902-b6c2d03859d7"}' - headers: - Content-Length: - - "1019" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16: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: - - 4f00c8ee-591f-41a9-955c-036411978332 - status: 200 OK - code: 200 - duration: 28.768167ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/e4743489-de29-4059-a3e5-9d170f545f18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 966 - uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:12.741670Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:01.070660Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"15c8ce11-9fb0-4002-be99-9ce0cf65ca15","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:01.070660Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","id":"e4743489-de29-4059-a3e5-9d170f545f18","ipam_config":null,"mac_address":"02:00:00:1A:67:44","private_network_id":"636f4c99-adec-4e47-b358-1eca3392a943","status":"ready","updated_at":"2025-01-27T09:16:23.152497Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "966" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16: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: - - b3ef440b-ea15-4527-bcd8-a49cc9e5b08a - status: 200 OK - code: 200 - duration: 44.790333ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/c2fe134c-0133-455f-9b80-f2ab4023aee8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1932 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:05.499158Z","gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:12.741670Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:01.070660Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"15c8ce11-9fb0-4002-be99-9ce0cf65ca15","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:01.070660Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","id":"e4743489-de29-4059-a3e5-9d170f545f18","ipam_config":null,"mac_address":"02:00:00:1A:67:44","private_network_id":"636f4c99-adec-4e47-b358-1eca3392a943","status":"ready","updated_at":"2025-01-27T09:16:23.152497Z","zone":"fr-par-1"}],"id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","ip":{"address":"51.15.205.149","created_at":"2025-01-27T09:16:01.872269Z","gateway_id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","id":"4846847f-9ee3-4c93-a028-edec3ae80fc9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"149-205-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.872269Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:23.349496Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' - headers: - Content-Length: - - "1932" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16: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: - - 43013eca-81f4-4c95-ae9f-698d90b510a5 - status: 200 OK - code: 200 - duration: 29.626333ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/c2fe134c-0133-455f-9b80-f2ab4023aee8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1932 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:05.499158Z","gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:12.741670Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:01.070660Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"15c8ce11-9fb0-4002-be99-9ce0cf65ca15","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:01.070660Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","id":"e4743489-de29-4059-a3e5-9d170f545f18","ipam_config":null,"mac_address":"02:00:00:1A:67:44","private_network_id":"636f4c99-adec-4e47-b358-1eca3392a943","status":"ready","updated_at":"2025-01-27T09:16:23.152497Z","zone":"fr-par-1"}],"id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","ip":{"address":"51.15.205.149","created_at":"2025-01-27T09:16:01.872269Z","gateway_id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","id":"4846847f-9ee3-4c93-a028-edec3ae80fc9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"149-205-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.872269Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:23.349496Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' - headers: - Content-Length: - - "1932" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16: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: - - a55d6cf2-c2b0-4252-8e5e-bebd72a8bd33 - status: 200 OK - code: 200 - duration: 32.094708ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/e4743489-de29-4059-a3e5-9d170f545f18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 966 - uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:12.741670Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:01.070660Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"15c8ce11-9fb0-4002-be99-9ce0cf65ca15","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:01.070660Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","id":"e4743489-de29-4059-a3e5-9d170f545f18","ipam_config":null,"mac_address":"02:00:00:1A:67:44","private_network_id":"636f4c99-adec-4e47-b358-1eca3392a943","status":"ready","updated_at":"2025-01-27T09:16:23.152497Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "966" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16: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: - - a79b24f8-34d2-464e-b83d-58b8172a2ec0 - status: 200 OK - code: 200 - duration: 43.7285ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/e4743489-de29-4059-a3e5-9d170f545f18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 966 - uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:12.741670Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:01.070660Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"15c8ce11-9fb0-4002-be99-9ce0cf65ca15","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:01.070660Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","id":"e4743489-de29-4059-a3e5-9d170f545f18","ipam_config":null,"mac_address":"02:00:00:1A:67:44","private_network_id":"636f4c99-adec-4e47-b358-1eca3392a943","status":"ready","updated_at":"2025-01-27T09:16:23.152497Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "966" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:31 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: - - c319910b-5b77-4be2-9f83-e18df2a564a9 - status: 200 OK - code: 200 - duration: 44.861917ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/e4743489-de29-4059-a3e5-9d170f545f18?cleanup_dhcp=true - 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, 27 Jan 2025 09:16:31 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: - - 5e0092a7-09ea-4b0b-b281-db393bcee926 - status: 204 No Content - code: 204 - duration: 68.706792ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/e4743489-de29-4059-a3e5-9d170f545f18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 970 - uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:12.741670Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:01.070660Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"15c8ce11-9fb0-4002-be99-9ce0cf65ca15","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:01.070660Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","id":"e4743489-de29-4059-a3e5-9d170f545f18","ipam_config":null,"mac_address":"02:00:00:1A:67:44","private_network_id":"636f4c99-adec-4e47-b358-1eca3392a943","status":"detaching","updated_at":"2025-01-27T09:16:31.610297Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "970" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:31 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: - - 346d6776-ebc8-4bd7-8805-dc2b35d76dda - status: 200 OK - code: 200 - duration: 46.826584ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/e4743489-de29-4059-a3e5-9d170f545f18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 136 - uncompressed: false - body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"e4743489-de29-4059-a3e5-9d170f545f18","type":"not_found"}' - headers: - Content-Length: - - "136" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:36 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8ca312ae-1924-4a84-a1ac-20cb4d65d2af - status: 404 Not Found - code: 404 - duration: 25.279542ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/c2fe134c-0133-455f-9b80-f2ab4023aee8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 966 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:05.499158Z","gateway_networks":[],"id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","ip":{"address":"51.15.205.149","created_at":"2025-01-27T09:16:01.872269Z","gateway_id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","id":"4846847f-9ee3-4c93-a028-edec3ae80fc9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"149-205-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.872269Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:23.349496Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' - headers: - Content-Length: - - "966" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:36 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 06781e50-23ff-4173-ab01-8244a1a6a7db - status: 200 OK - code: 200 - duration: 27.092458ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/15c8ce11-9fb0-4002-be99-9ce0cf65ca15 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 125 - uncompressed: false - body: '{"message":"resource is not found","resource":"dhcp","resource_id":"15c8ce11-9fb0-4002-be99-9ce0cf65ca15","type":"not_found"}' - headers: - Content-Length: - - "125" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:36 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d40d02f3-0ebe-4e24-89b5-46a3a85b24b9 - status: 404 Not Found - code: 404 - duration: 25.027083ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips/4846847f-9ee3-4c93-a028-edec3ae80fc9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 392 - uncompressed: false - body: '{"address":"51.15.205.149","created_at":"2025-01-27T09:16:01.872269Z","gateway_id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","id":"4846847f-9ee3-4c93-a028-edec3ae80fc9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"149-205-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.872269Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "392" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16: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: - - d702cdea-74c9-4537-849a-9e10b8ffe2c6 - status: 200 OK - code: 200 - duration: 22.526041ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/636f4c99-adec-4e47-b358-1eca3392a943 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1019 - uncompressed: false - body: '{"created_at":"2025-01-27T09:16:01.142668Z","dhcp_enabled":true,"id":"636f4c99-adec-4e47-b358-1eca3392a943","name":"pn_test_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-27T09:16:01.142668Z","id":"1d4b6819-5787-4e33-a836-f2c816c16f72","private_network_id":"636f4c99-adec-4e47-b358-1eca3392a943","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:10.963859Z","vpc_id":"3a299bea-546c-4b3f-9902-b6c2d03859d7"},{"created_at":"2025-01-27T09:16:01.142668Z","id":"71396945-f4a7-4c17-80e9-90fcd39d5b41","private_network_id":"636f4c99-adec-4e47-b358-1eca3392a943","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:15f0::/64","updated_at":"2025-01-27T09:16:10.969659Z","vpc_id":"3a299bea-546c-4b3f-9902-b6c2d03859d7"}],"tags":[],"updated_at":"2025-01-27T09:16:31.679499Z","vpc_id":"3a299bea-546c-4b3f-9902-b6c2d03859d7"}' - headers: - Content-Length: - - "1019" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16: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: - - 342f47aa-bcb4-46bb-a68e-47506d0f2d7c - status: 200 OK - code: 200 - duration: 25.710834ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/c2fe134c-0133-455f-9b80-f2ab4023aee8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 966 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:05.499158Z","gateway_networks":[],"id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","ip":{"address":"51.15.205.149","created_at":"2025-01-27T09:16:01.872269Z","gateway_id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","id":"4846847f-9ee3-4c93-a028-edec3ae80fc9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"149-205-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.872269Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:23.349496Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' - headers: - Content-Length: - - "966" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16: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: - - 9e2eeae9-1a03-4d93-ad10-01df764aca83 - status: 200 OK - code: 200 - duration: 28.545542ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/c2fe134c-0133-455f-9b80-f2ab4023aee8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 966 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:05.499158Z","gateway_networks":[],"id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","ip":{"address":"51.15.205.149","created_at":"2025-01-27T09:16:01.872269Z","gateway_id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","id":"4846847f-9ee3-4c93-a028-edec3ae80fc9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"149-205-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.872269Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:23.349496Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' - headers: - Content-Length: - - "966" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16: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: - - ebbab469-437f-4b99-ab69-f8c67dde24ec - status: 200 OK - code: 200 - duration: 31.018334ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/c2fe134c-0133-455f-9b80-f2ab4023aee8?cleanup_dhcp=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: - - Mon, 27 Jan 2025 09:16: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: - - b283655a-de14-4a81-9e05-2d668d8cb265 - status: 204 No Content - code: 204 - duration: 50.298292ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/c2fe134c-0133-455f-9b80-f2ab4023aee8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 967 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:05.499158Z","gateway_networks":[],"id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","ip":{"address":"51.15.205.149","created_at":"2025-01-27T09:16:01.872269Z","gateway_id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","id":"4846847f-9ee3-4c93-a028-edec3ae80fc9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"149-205-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.872269Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"deleting","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:39.059301Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' - headers: - Content-Length: - - "967" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16: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: - - 9d19583f-8428-42df-aba1-eb5a7a6bfcdb - status: 200 OK - code: 200 - duration: 28.27025ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/636f4c99-adec-4e47-b358-1eca3392a943 - 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, 27 Jan 2025 09:16:40 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: - - c51aaee5-8d8b-42a2-8fe1-efb04ac62545 - status: 204 No Content - code: 204 - duration: 1.276233667s - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/c2fe134c-0133-455f-9b80-f2ab4023aee8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 128 - uncompressed: false - body: '{"message":"resource is not found","resource":"gateway","resource_id":"c2fe134c-0133-455f-9b80-f2ab4023aee8","type":"not_found"}' - headers: - Content-Length: - - "128" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:44 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d031053c-fd1f-49a1-9648-a14e2174bbe1 - status: 404 Not Found - code: 404 - duration: 413.972667ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips/4846847f-9ee3-4c93-a028-edec3ae80fc9 - 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, 27 Jan 2025 09:16:45 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: - - a6eb7157-c4cd-4f6d-ab22-1c8e5c705fe2 - status: 204 No Content - code: 204 - duration: 671.535ms 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 db63a4aca9..696a185138 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":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"enable_routing":false}' + body: '{"name":"my vpc","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"enable_routing":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs method: POST response: @@ -29,7 +29,7 @@ interactions: trailer: {} content_length: 352 uncompressed: false - body: '{"created_at":"2025-01-27T09:16:33.881090Z","id":"a614824d-f3c0-4289-a77c-04960986c3ec","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-27T09:16:33.881090Z"}' + body: '{"created_at":"2025-03-21T14:32:45.956921Z","id":"1688de78-bb56-41a5-a65a-10213e2db026","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-03-21T14:32:45.956921Z"}' headers: Content-Length: - "352" @@ -38,9 +38,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:33 GMT + - Fri, 21 Mar 2025 14:32:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7b48b86e-460a-4cb9-a512-cbff2e8552de + - 2c1ced7a-3d95-41e6-baab-ccf1a7722efe status: 200 OK code: 200 - duration: 75.687042ms + duration: 122.419461ms - id: 1 request: proto: HTTP/1.1 @@ -67,8 +67,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/a614824d-f3c0-4289-a77c-04960986c3ec + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/1688de78-bb56-41a5-a65a-10213e2db026 method: GET response: proto: HTTP/2.0 @@ -78,7 +78,7 @@ interactions: trailer: {} content_length: 352 uncompressed: false - body: '{"created_at":"2025-01-27T09:16:33.881090Z","id":"a614824d-f3c0-4289-a77c-04960986c3ec","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-27T09:16:33.881090Z"}' + body: '{"created_at":"2025-03-21T14:32:45.956921Z","id":"1688de78-bb56-41a5-a65a-10213e2db026","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-03-21T14:32:45.956921Z"}' headers: Content-Length: - "352" @@ -87,9 +87,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:33 GMT + - Fri, 21 Mar 2025 14:32:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 20613694-1496-472f-8d29-f07cdb55ac2b + - b673b88e-4b47-454a-8288-b9a336620af8 status: 200 OK code: 200 - duration: 69.281708ms + duration: 51.995252ms - id: 2 request: proto: HTTP/1.1 @@ -112,13 +112,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"pn_test_network","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":["172.16.64.0/22"],"vpc_id":"a614824d-f3c0-4289-a77c-04960986c3ec"}' + body: '{"name":"pn_test_network","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":["172.16.64.0/22"],"vpc_id":"1688de78-bb56-41a5-a65a-10213e2db026"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: @@ -129,7 +129,7 @@ interactions: trailer: {} content_length: 1019 uncompressed: false - body: '{"created_at":"2025-01-27T09:16:34.030324Z","dhcp_enabled":true,"id":"3a41e5bb-a7bd-4996-855c-0d284ee89412","name":"pn_test_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-27T09:16:34.030324Z","id":"c4682603-eb71-45d7-a55f-25c5ebf7144a","private_network_id":"3a41e5bb-a7bd-4996-855c-0d284ee89412","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.64.0/22","updated_at":"2025-01-27T09:16:34.030324Z","vpc_id":"a614824d-f3c0-4289-a77c-04960986c3ec"},{"created_at":"2025-01-27T09:16:34.030324Z","id":"07b6f3ad-464b-493e-9f99-875cdade5dbb","private_network_id":"3a41e5bb-a7bd-4996-855c-0d284ee89412","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:90b2::/64","updated_at":"2025-01-27T09:16:34.030324Z","vpc_id":"a614824d-f3c0-4289-a77c-04960986c3ec"}],"tags":[],"updated_at":"2025-01-27T09:16:34.030324Z","vpc_id":"a614824d-f3c0-4289-a77c-04960986c3ec"}' + body: '{"created_at":"2025-03-21T14:32:46.098162Z","dhcp_enabled":true,"id":"2651d313-2c8b-443c-9498-e36462e9fbab","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-03-21T14:32:46.098162Z","id":"50311006-f8b7-4f31-9a07-72c0c7abe589","private_network_id":"2651d313-2c8b-443c-9498-e36462e9fbab","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.64.0/22","updated_at":"2025-03-21T14:32:46.098162Z","vpc_id":"1688de78-bb56-41a5-a65a-10213e2db026"},{"created_at":"2025-03-21T14:32:46.098162Z","id":"e59b822c-64e2-4158-a1bd-6dbeebbfe8cb","private_network_id":"2651d313-2c8b-443c-9498-e36462e9fbab","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:8d37::/64","updated_at":"2025-03-21T14:32:46.098162Z","vpc_id":"1688de78-bb56-41a5-a65a-10213e2db026"}],"tags":[],"updated_at":"2025-03-21T14:32:46.098162Z","vpc_id":"1688de78-bb56-41a5-a65a-10213e2db026"}' headers: Content-Length: - "1019" @@ -138,9 +138,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:34 GMT + - Fri, 21 Mar 2025 14:32:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -148,48 +148,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 67a35940-1f7b-4d9c-8057-444b7054d276 + - 4556225e-968e-4551-990d-d4e51f2bc949 status: 200 OK code: 200 - duration: 470.859375ms + duration: 669.406271ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 140 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/3a41e5bb-a7bd-4996-855c-0d284ee89412 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-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: 1019 + content_length: 886 uncompressed: false - body: '{"created_at":"2025-01-27T09:16:34.030324Z","dhcp_enabled":true,"id":"3a41e5bb-a7bd-4996-855c-0d284ee89412","name":"pn_test_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-27T09:16:34.030324Z","id":"c4682603-eb71-45d7-a55f-25c5ebf7144a","private_network_id":"3a41e5bb-a7bd-4996-855c-0d284ee89412","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.64.0/22","updated_at":"2025-01-27T09:16:34.030324Z","vpc_id":"a614824d-f3c0-4289-a77c-04960986c3ec"},{"created_at":"2025-01-27T09:16:34.030324Z","id":"07b6f3ad-464b-493e-9f99-875cdade5dbb","private_network_id":"3a41e5bb-a7bd-4996-855c-0d284ee89412","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:90b2::/64","updated_at":"2025-01-27T09:16:34.030324Z","vpc_id":"a614824d-f3c0-4289-a77c-04960986c3ec"}],"tags":[],"updated_at":"2025-01-27T09:16:34.030324Z","vpc_id":"a614824d-f3c0-4289-a77c-04960986c3ec"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:32:46.673584Z","gateway_networks":[],"id":"da217888-a3e2-48a1-8baa-299d55412c4c","ipv4":{"address":"163.172.156.222","created_at":"2025-03-21T14:32:46.652577Z","gateway_id":"da217888-a3e2-48a1-8baa-299d55412c4c","id":"03fa65fc-80c9-4316-9e28-74a47d29e742","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"222-156-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:32:46.652577Z","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-03-21T14:32:46.673584Z","zone":"fr-par-1"}' headers: Content-Length: - - "1019" + - "886" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:34 GMT + - Fri, 21 Mar 2025 14:32:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,50 +199,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6493d20e-319b-46a7-bd45-0b129cd9e3ea + - de63a016-5112-450e-98d3-2db4fa7de3ef status: 200 OK code: 200 - duration: 25.520166ms + duration: 873.376701ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 166 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"foobar","tags":[],"type":"VPC-GW-S","upstream_dns_servers":[],"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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/da217888-a3e2-48a1-8baa-299d55412c4c + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 966 + content_length: 904 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:34.636857Z","gateway_networks":[],"id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","ip":{"address":"51.15.250.58","created_at":"2025-01-27T09:16:34.617828Z","gateway_id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","id":"957c6ee5-045a-4e71-a101-fd9a0dcf722f","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"58-250-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:34.617828Z","zone":"fr-par-1"},"ip_mobility_enabled":false,"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:34.636857Z","upstream_dns_servers":[],"version":null,"zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:32:46.673584Z","gateway_networks":[],"id":"da217888-a3e2-48a1-8baa-299d55412c4c","ipv4":{"address":"163.172.156.222","created_at":"2025-03-21T14:32:46.652577Z","gateway_id":"da217888-a3e2-48a1-8baa-299d55412c4c","id":"03fa65fc-80c9-4316-9e28-74a47d29e742","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"222-156-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:32:46.652577Z","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-03-21T14:32:46.719306Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "966" + - "904" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:34 GMT + - Fri, 21 Mar 2025 14:32:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -248,10 +248,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b2e4e865-2e42-4d9e-90bb-b9c3b3828bf4 + - 47298014-297b-4387-b192-4053d71e3718 status: 200 OK code: 200 - duration: 833.925375ms + duration: 31.120001ms - id: 5 request: proto: HTTP/1.1 @@ -267,8 +267,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/5f2040c6-9037-4c64-90f8-3f0c892f98e3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2651d313-2c8b-443c-9498-e36462e9fbab method: GET response: proto: HTTP/2.0 @@ -276,20 +276,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 966 + content_length: 1019 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:34.636857Z","gateway_networks":[],"id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","ip":{"address":"51.15.250.58","created_at":"2025-01-27T09:16:34.617828Z","gateway_id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","id":"957c6ee5-045a-4e71-a101-fd9a0dcf722f","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"58-250-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:34.617828Z","zone":"fr-par-1"},"ip_mobility_enabled":false,"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:34.636857Z","upstream_dns_servers":[],"version":null,"zone":"fr-par-1"}' + body: '{"created_at":"2025-03-21T14:32:46.098162Z","dhcp_enabled":true,"id":"2651d313-2c8b-443c-9498-e36462e9fbab","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-03-21T14:32:46.098162Z","id":"50311006-f8b7-4f31-9a07-72c0c7abe589","private_network_id":"2651d313-2c8b-443c-9498-e36462e9fbab","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.64.0/22","updated_at":"2025-03-21T14:32:46.098162Z","vpc_id":"1688de78-bb56-41a5-a65a-10213e2db026"},{"created_at":"2025-03-21T14:32:46.098162Z","id":"e59b822c-64e2-4158-a1bd-6dbeebbfe8cb","private_network_id":"2651d313-2c8b-443c-9498-e36462e9fbab","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:8d37::/64","updated_at":"2025-03-21T14:32:46.098162Z","vpc_id":"1688de78-bb56-41a5-a65a-10213e2db026"}],"tags":[],"updated_at":"2025-03-21T14:32:46.098162Z","vpc_id":"1688de78-bb56-41a5-a65a-10213e2db026"}' headers: Content-Length: - - "966" + - "1019" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:34 GMT + - Fri, 21 Mar 2025 14:32:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -297,10 +297,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 72d46755-9767-4d83-a204-a566f4ef3699 + - 00f80810-4d68-4853-a55c-1fde16d08a28 status: 200 OK code: 200 - duration: 23.814542ms + duration: 52.820404ms - id: 6 request: proto: HTTP/1.1 @@ -316,8 +316,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/5f2040c6-9037-4c64-90f8-3f0c892f98e3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/da217888-a3e2-48a1-8baa-299d55412c4c method: GET response: proto: HTTP/2.0 @@ -325,20 +325,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 965 + content_length: 901 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:34.636857Z","gateway_networks":[],"id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","ip":{"address":"51.15.250.58","created_at":"2025-01-27T09:16:34.617828Z","gateway_id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","id":"957c6ee5-045a-4e71-a101-fd9a0dcf722f","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"58-250-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:34.617828Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:39.431206Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:32:46.673584Z","gateway_networks":[],"id":"da217888-a3e2-48a1-8baa-299d55412c4c","ipv4":{"address":"163.172.156.222","created_at":"2025-03-21T14:32:46.652577Z","gateway_id":"da217888-a3e2-48a1-8baa-299d55412c4c","id":"03fa65fc-80c9-4316-9e28-74a47d29e742","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"222-156-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:32:46.652577Z","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-03-21T14:32:51.590449Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "965" + - "901" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:39 GMT + - Fri, 21 Mar 2025 14:32:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -346,10 +346,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 86ca4258-fd37-4ec1-8b1c-d26bb8fe2280 + - c1debb8f-d6b9-46ba-a3fd-e6a4a6434a5a status: 200 OK code: 200 - duration: 26.039042ms + duration: 26.656405ms - id: 7 request: proto: HTTP/1.1 @@ -365,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-gw/v1/zones/fr-par-1/gateways/5f2040c6-9037-4c64-90f8-3f0c892f98e3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/da217888-a3e2-48a1-8baa-299d55412c4c method: GET response: proto: HTTP/2.0 @@ -374,20 +374,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 965 + content_length: 901 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:34.636857Z","gateway_networks":[],"id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","ip":{"address":"51.15.250.58","created_at":"2025-01-27T09:16:34.617828Z","gateway_id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","id":"957c6ee5-045a-4e71-a101-fd9a0dcf722f","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"58-250-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:34.617828Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:39.431206Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:32:46.673584Z","gateway_networks":[],"id":"da217888-a3e2-48a1-8baa-299d55412c4c","ipv4":{"address":"163.172.156.222","created_at":"2025-03-21T14:32:46.652577Z","gateway_id":"da217888-a3e2-48a1-8baa-299d55412c4c","id":"03fa65fc-80c9-4316-9e28-74a47d29e742","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"222-156-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:32:46.652577Z","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-03-21T14:32:51.590449Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "965" + - "901" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:39 GMT + - Fri, 21 Mar 2025 14:32:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -395,10 +395,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d85d40d9-6df2-49e4-b7ad-f3552945418b + - c872ff75-0b27-4b15-af04-f23a3c563914 status: 200 OK code: 200 - duration: 25.964917ms + duration: 27.170222ms - id: 8 request: proto: HTTP/1.1 @@ -414,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-gw/v1/zones/fr-par-1/gateways/5f2040c6-9037-4c64-90f8-3f0c892f98e3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/da217888-a3e2-48a1-8baa-299d55412c4c method: GET response: proto: HTTP/2.0 @@ -423,20 +423,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 965 + content_length: 901 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:34.636857Z","gateway_networks":[],"id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","ip":{"address":"51.15.250.58","created_at":"2025-01-27T09:16:34.617828Z","gateway_id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","id":"957c6ee5-045a-4e71-a101-fd9a0dcf722f","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"58-250-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:34.617828Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:39.431206Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:32:46.673584Z","gateway_networks":[],"id":"da217888-a3e2-48a1-8baa-299d55412c4c","ipv4":{"address":"163.172.156.222","created_at":"2025-03-21T14:32:46.652577Z","gateway_id":"da217888-a3e2-48a1-8baa-299d55412c4c","id":"03fa65fc-80c9-4316-9e28-74a47d29e742","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"222-156-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:32:46.652577Z","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-03-21T14:32:51.590449Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "965" + - "901" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:39 GMT + - Fri, 21 Mar 2025 14:32:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -444,29 +444,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 69d7fec6-8cf9-4896-956b-52132f679ff6 + - 8192987e-84cd-4240-a1db-168b1d9e3f68 status: 200 OK code: 200 - duration: 27.689209ms + duration: 30.202319ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 217 + content_length: 164 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"gateway_id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","private_network_id":"3a41e5bb-a7bd-4996-855c-0d284ee89412","enable_masquerade":true,"enable_dhcp":true,"ipam_config":{"push_default_route":true,"ipam_ip_id":null}}' + body: '{"gateway_id":"da217888-a3e2-48a1-8baa-299d55412c4c","private_network_id":"2651d313-2c8b-443c-9498-e36462e9fbab","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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks method: POST response: proto: HTTP/2.0 @@ -474,20 +474,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 476 + content_length: 384 uncompressed: false - body: '{"address":"172.16.64.2/22","created_at":"2025-01-27T09:16:40.201148Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","id":"ba9d9f6b-41a7-4414-97b2-fda03388cf13","ipam_config":{"ipam_ip_id":"e79a44aa-e3f7-42e8-b800-91e734614d35","push_default_route":true},"mac_address":null,"private_network_id":"3a41e5bb-a7bd-4996-855c-0d284ee89412","status":"created","updated_at":"2025-01-27T09:16:40.201148Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-21T14:32:52.403510Z","gateway_id":"da217888-a3e2-48a1-8baa-299d55412c4c","id":"8be0649e-5f8e-46c0-8567-e62244eb5986","ipam_ip_id":"ed5cf43f-0d5d-4fb3-ba1a-849fa9df61de","masquerade_enabled":true,"private_network_id":"2651d313-2c8b-443c-9498-e36462e9fbab","push_default_route":true,"status":"created","updated_at":"2025-03-21T14:32:52.403510Z","zone":"fr-par-1"}' headers: Content-Length: - - "476" + - "384" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:40 GMT + - Fri, 21 Mar 2025 14:32:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -495,10 +495,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2ad8d6b7-c175-445d-8193-4ed8433de902 + - a3e3c7d8-b796-404d-b3ed-5e234174e8ab status: 200 OK code: 200 - duration: 508.22825ms + duration: 820.847159ms - id: 10 request: proto: HTTP/1.1 @@ -514,8 +514,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/5f2040c6-9037-4c64-90f8-3f0c892f98e3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/da217888-a3e2-48a1-8baa-299d55412c4c method: GET response: proto: HTTP/2.0 @@ -523,20 +523,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1445 + content_length: 1289 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:34.636857Z","gateway_networks":[{"address":"172.16.64.2/22","created_at":"2025-01-27T09:16:40.201148Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","id":"ba9d9f6b-41a7-4414-97b2-fda03388cf13","ipam_config":{"ipam_ip_id":"e79a44aa-e3f7-42e8-b800-91e734614d35","push_default_route":true},"mac_address":null,"private_network_id":"3a41e5bb-a7bd-4996-855c-0d284ee89412","status":"created","updated_at":"2025-01-27T09:16:40.201148Z","zone":"fr-par-1"}],"id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","ip":{"address":"51.15.250.58","created_at":"2025-01-27T09:16:34.617828Z","gateway_id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","id":"957c6ee5-045a-4e71-a101-fd9a0dcf722f","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"58-250-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:34.617828Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:40.287526Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:32:46.673584Z","gateway_networks":[{"created_at":"2025-03-21T14:32:52.403510Z","gateway_id":"da217888-a3e2-48a1-8baa-299d55412c4c","id":"8be0649e-5f8e-46c0-8567-e62244eb5986","ipam_ip_id":"ed5cf43f-0d5d-4fb3-ba1a-849fa9df61de","masquerade_enabled":true,"private_network_id":"2651d313-2c8b-443c-9498-e36462e9fbab","push_default_route":true,"status":"created","updated_at":"2025-03-21T14:32:52.403510Z","zone":"fr-par-1"}],"id":"da217888-a3e2-48a1-8baa-299d55412c4c","ipv4":{"address":"163.172.156.222","created_at":"2025-03-21T14:32:46.652577Z","gateway_id":"da217888-a3e2-48a1-8baa-299d55412c4c","id":"03fa65fc-80c9-4316-9e28-74a47d29e742","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"222-156-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:32:46.652577Z","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-03-21T14:32:52.506356Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "1445" + - "1289" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:40 GMT + - Fri, 21 Mar 2025 14:32:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -544,10 +544,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - abe23c8d-d981-42ec-8644-17e295452cc3 + - b3189080-2086-49f0-a11b-9f1a36b015da status: 200 OK code: 200 - duration: 31.210291ms + duration: 30.870823ms - id: 11 request: proto: HTTP/1.1 @@ -563,8 +563,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/5f2040c6-9037-4c64-90f8-3f0c892f98e3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/da217888-a3e2-48a1-8baa-299d55412c4c method: GET response: proto: HTTP/2.0 @@ -572,20 +572,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1445 + content_length: 1289 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:34.636857Z","gateway_networks":[{"address":"172.16.64.2/22","created_at":"2025-01-27T09:16:40.201148Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","id":"ba9d9f6b-41a7-4414-97b2-fda03388cf13","ipam_config":{"ipam_ip_id":"e79a44aa-e3f7-42e8-b800-91e734614d35","push_default_route":true},"mac_address":null,"private_network_id":"3a41e5bb-a7bd-4996-855c-0d284ee89412","status":"created","updated_at":"2025-01-27T09:16:40.201148Z","zone":"fr-par-1"}],"id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","ip":{"address":"51.15.250.58","created_at":"2025-01-27T09:16:34.617828Z","gateway_id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","id":"957c6ee5-045a-4e71-a101-fd9a0dcf722f","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"58-250-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:34.617828Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:40.287526Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:32:46.673584Z","gateway_networks":[{"created_at":"2025-03-21T14:32:52.403510Z","gateway_id":"da217888-a3e2-48a1-8baa-299d55412c4c","id":"8be0649e-5f8e-46c0-8567-e62244eb5986","ipam_ip_id":"ed5cf43f-0d5d-4fb3-ba1a-849fa9df61de","masquerade_enabled":true,"private_network_id":"2651d313-2c8b-443c-9498-e36462e9fbab","push_default_route":true,"status":"created","updated_at":"2025-03-21T14:32:52.403510Z","zone":"fr-par-1"}],"id":"da217888-a3e2-48a1-8baa-299d55412c4c","ipv4":{"address":"163.172.156.222","created_at":"2025-03-21T14:32:46.652577Z","gateway_id":"da217888-a3e2-48a1-8baa-299d55412c4c","id":"03fa65fc-80c9-4316-9e28-74a47d29e742","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"222-156-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:32:46.652577Z","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-03-21T14:32:52.506356Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "1445" + - "1289" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:45 GMT + - Fri, 21 Mar 2025 14:32:57 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -593,10 +593,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 57b7ebc3-471d-443b-be83-bbb87fa39950 + - 39fdfa87-535b-4114-b8a1-4e5c6ab98f5a status: 200 OK code: 200 - duration: 274.913042ms + duration: 26.362462ms - id: 12 request: proto: HTTP/1.1 @@ -612,8 +612,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/5f2040c6-9037-4c64-90f8-3f0c892f98e3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/da217888-a3e2-48a1-8baa-299d55412c4c method: GET response: proto: HTTP/2.0 @@ -621,20 +621,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1464 + content_length: 1327 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:34.636857Z","gateway_networks":[{"address":"172.16.64.2/22","created_at":"2025-01-27T09:16:40.201148Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","id":"ba9d9f6b-41a7-4414-97b2-fda03388cf13","ipam_config":{"ipam_ip_id":"e79a44aa-e3f7-42e8-b800-91e734614d35","push_default_route":true},"mac_address":"02:00:00:1E:22:5B","private_network_id":"3a41e5bb-a7bd-4996-855c-0d284ee89412","status":"configuring","updated_at":"2025-01-27T09:16:46.067008Z","zone":"fr-par-1"}],"id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","ip":{"address":"51.15.250.58","created_at":"2025-01-27T09:16:34.617828Z","gateway_id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","id":"957c6ee5-045a-4e71-a101-fd9a0dcf722f","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"58-250-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:34.617828Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:40.287526Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:32:46.673584Z","gateway_networks":[{"created_at":"2025-03-21T14:32:52.403510Z","gateway_id":"da217888-a3e2-48a1-8baa-299d55412c4c","id":"8be0649e-5f8e-46c0-8567-e62244eb5986","ipam_ip_id":"ed5cf43f-0d5d-4fb3-ba1a-849fa9df61de","mac_address":"02:00:00:12:50:3C","masquerade_enabled":true,"private_network_id":"2651d313-2c8b-443c-9498-e36462e9fbab","push_default_route":true,"status":"configuring","updated_at":"2025-03-21T14:32:57.997118Z","zone":"fr-par-1"}],"id":"da217888-a3e2-48a1-8baa-299d55412c4c","ipv4":{"address":"163.172.156.222","created_at":"2025-03-21T14:32:46.652577Z","gateway_id":"da217888-a3e2-48a1-8baa-299d55412c4c","id":"03fa65fc-80c9-4316-9e28-74a47d29e742","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"222-156-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:32:46.652577Z","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-03-21T14:32:52.506356Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "1464" + - "1327" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:50 GMT + - Fri, 21 Mar 2025 14:33:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -642,10 +642,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7cc92034-371d-4f1b-911e-3d69a2f32f7a + - 8aeaab0b-5f8c-4d66-99ba-4096ba8a49af status: 200 OK code: 200 - duration: 25.080334ms + duration: 29.873797ms - id: 13 request: proto: HTTP/1.1 @@ -661,8 +661,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/5f2040c6-9037-4c64-90f8-3f0c892f98e3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/da217888-a3e2-48a1-8baa-299d55412c4c method: GET response: proto: HTTP/2.0 @@ -670,20 +670,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1454 + content_length: 1317 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:34.636857Z","gateway_networks":[{"address":"172.16.64.2/22","created_at":"2025-01-27T09:16:40.201148Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","id":"ba9d9f6b-41a7-4414-97b2-fda03388cf13","ipam_config":{"ipam_ip_id":"e79a44aa-e3f7-42e8-b800-91e734614d35","push_default_route":true},"mac_address":"02:00:00:1E:22:5B","private_network_id":"3a41e5bb-a7bd-4996-855c-0d284ee89412","status":"ready","updated_at":"2025-01-27T09:16:50.693808Z","zone":"fr-par-1"}],"id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","ip":{"address":"51.15.250.58","created_at":"2025-01-27T09:16:34.617828Z","gateway_id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","id":"957c6ee5-045a-4e71-a101-fd9a0dcf722f","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"58-250-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:34.617828Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:50.887997Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:32:46.673584Z","gateway_networks":[{"created_at":"2025-03-21T14:32:52.403510Z","gateway_id":"da217888-a3e2-48a1-8baa-299d55412c4c","id":"8be0649e-5f8e-46c0-8567-e62244eb5986","ipam_ip_id":"ed5cf43f-0d5d-4fb3-ba1a-849fa9df61de","mac_address":"02:00:00:12:50:3C","masquerade_enabled":true,"private_network_id":"2651d313-2c8b-443c-9498-e36462e9fbab","push_default_route":true,"status":"ready","updated_at":"2025-03-21T14:33:03.428146Z","zone":"fr-par-1"}],"id":"da217888-a3e2-48a1-8baa-299d55412c4c","ipv4":{"address":"163.172.156.222","created_at":"2025-03-21T14:32:46.652577Z","gateway_id":"da217888-a3e2-48a1-8baa-299d55412c4c","id":"03fa65fc-80c9-4316-9e28-74a47d29e742","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"222-156-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:32:46.652577Z","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-03-21T14:33:03.617619Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "1454" + - "1317" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:55 GMT + - Fri, 21 Mar 2025 14:33:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -691,10 +691,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d61175a1-2ebd-46e8-b4e9-e43be3e07190 + - e8ebdc37-63c5-49d6-bd6e-79bc034a96c2 status: 200 OK code: 200 - duration: 24.843167ms + duration: 23.939021ms - id: 14 request: proto: HTTP/1.1 @@ -710,8 +710,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/ba9d9f6b-41a7-4414-97b2-fda03388cf13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/8be0649e-5f8e-46c0-8567-e62244eb5986 method: GET response: proto: HTTP/2.0 @@ -719,20 +719,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 489 + content_length: 416 uncompressed: false - body: '{"address":"172.16.64.2/22","created_at":"2025-01-27T09:16:40.201148Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","id":"ba9d9f6b-41a7-4414-97b2-fda03388cf13","ipam_config":{"ipam_ip_id":"e79a44aa-e3f7-42e8-b800-91e734614d35","push_default_route":true},"mac_address":"02:00:00:1E:22:5B","private_network_id":"3a41e5bb-a7bd-4996-855c-0d284ee89412","status":"ready","updated_at":"2025-01-27T09:16:50.693808Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-21T14:32:52.403510Z","gateway_id":"da217888-a3e2-48a1-8baa-299d55412c4c","id":"8be0649e-5f8e-46c0-8567-e62244eb5986","ipam_ip_id":"ed5cf43f-0d5d-4fb3-ba1a-849fa9df61de","mac_address":"02:00:00:12:50:3C","masquerade_enabled":true,"private_network_id":"2651d313-2c8b-443c-9498-e36462e9fbab","push_default_route":true,"status":"ready","updated_at":"2025-03-21T14:33:03.428146Z","zone":"fr-par-1"}' headers: Content-Length: - - "489" + - "416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:55 GMT + - Fri, 21 Mar 2025 14:33:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -740,10 +740,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9c20b0b5-96ad-490c-a70b-fa33731a4bcd + - db2e081b-fd93-4356-a0b6-b9429b291735 status: 200 OK code: 200 - duration: 47.17675ms + duration: 51.568842ms - id: 15 request: proto: HTTP/1.1 @@ -759,8 +759,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/ba9d9f6b-41a7-4414-97b2-fda03388cf13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/8be0649e-5f8e-46c0-8567-e62244eb5986 method: GET response: proto: HTTP/2.0 @@ -768,20 +768,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 489 + content_length: 416 uncompressed: false - body: '{"address":"172.16.64.2/22","created_at":"2025-01-27T09:16:40.201148Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","id":"ba9d9f6b-41a7-4414-97b2-fda03388cf13","ipam_config":{"ipam_ip_id":"e79a44aa-e3f7-42e8-b800-91e734614d35","push_default_route":true},"mac_address":"02:00:00:1E:22:5B","private_network_id":"3a41e5bb-a7bd-4996-855c-0d284ee89412","status":"ready","updated_at":"2025-01-27T09:16:50.693808Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-21T14:32:52.403510Z","gateway_id":"da217888-a3e2-48a1-8baa-299d55412c4c","id":"8be0649e-5f8e-46c0-8567-e62244eb5986","ipam_ip_id":"ed5cf43f-0d5d-4fb3-ba1a-849fa9df61de","mac_address":"02:00:00:12:50:3C","masquerade_enabled":true,"private_network_id":"2651d313-2c8b-443c-9498-e36462e9fbab","push_default_route":true,"status":"ready","updated_at":"2025-03-21T14:33:03.428146Z","zone":"fr-par-1"}' headers: Content-Length: - - "489" + - "416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:55 GMT + - Fri, 21 Mar 2025 14:33:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -789,10 +789,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 686eb60d-b836-4c0a-aea3-27b4e005b332 + - 8d7b9297-d861-4629-85e2-e6122f81ab6d status: 200 OK code: 200 - duration: 44.723542ms + duration: 36.91988ms - id: 16 request: proto: HTTP/1.1 @@ -808,8 +808,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/5f2040c6-9037-4c64-90f8-3f0c892f98e3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/8be0649e-5f8e-46c0-8567-e62244eb5986 method: GET response: proto: HTTP/2.0 @@ -817,20 +817,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1454 + content_length: 416 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:34.636857Z","gateway_networks":[{"address":"172.16.64.2/22","created_at":"2025-01-27T09:16:40.201148Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","id":"ba9d9f6b-41a7-4414-97b2-fda03388cf13","ipam_config":{"ipam_ip_id":"e79a44aa-e3f7-42e8-b800-91e734614d35","push_default_route":true},"mac_address":"02:00:00:1E:22:5B","private_network_id":"3a41e5bb-a7bd-4996-855c-0d284ee89412","status":"ready","updated_at":"2025-01-27T09:16:50.693808Z","zone":"fr-par-1"}],"id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","ip":{"address":"51.15.250.58","created_at":"2025-01-27T09:16:34.617828Z","gateway_id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","id":"957c6ee5-045a-4e71-a101-fd9a0dcf722f","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"58-250-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:34.617828Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:50.887997Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-21T14:32:52.403510Z","gateway_id":"da217888-a3e2-48a1-8baa-299d55412c4c","id":"8be0649e-5f8e-46c0-8567-e62244eb5986","ipam_ip_id":"ed5cf43f-0d5d-4fb3-ba1a-849fa9df61de","mac_address":"02:00:00:12:50:3C","masquerade_enabled":true,"private_network_id":"2651d313-2c8b-443c-9498-e36462e9fbab","push_default_route":true,"status":"ready","updated_at":"2025-03-21T14:33:03.428146Z","zone":"fr-par-1"}' headers: Content-Length: - - "1454" + - "416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:55 GMT + - Fri, 21 Mar 2025 14:33:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -838,10 +838,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b5ec818f-c528-44fa-b11f-13de6057cf2d + - 4697e090-e19a-449e-b45d-8e7817b29381 status: 200 OK code: 200 - duration: 27.105375ms + duration: 68.880779ms - id: 17 request: proto: HTTP/1.1 @@ -857,8 +857,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/ba9d9f6b-41a7-4414-97b2-fda03388cf13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/da217888-a3e2-48a1-8baa-299d55412c4c method: GET response: proto: HTTP/2.0 @@ -866,20 +866,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 489 + content_length: 1317 uncompressed: false - body: '{"address":"172.16.64.2/22","created_at":"2025-01-27T09:16:40.201148Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","id":"ba9d9f6b-41a7-4414-97b2-fda03388cf13","ipam_config":{"ipam_ip_id":"e79a44aa-e3f7-42e8-b800-91e734614d35","push_default_route":true},"mac_address":"02:00:00:1E:22:5B","private_network_id":"3a41e5bb-a7bd-4996-855c-0d284ee89412","status":"ready","updated_at":"2025-01-27T09:16:50.693808Z","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:32:46.673584Z","gateway_networks":[{"created_at":"2025-03-21T14:32:52.403510Z","gateway_id":"da217888-a3e2-48a1-8baa-299d55412c4c","id":"8be0649e-5f8e-46c0-8567-e62244eb5986","ipam_ip_id":"ed5cf43f-0d5d-4fb3-ba1a-849fa9df61de","mac_address":"02:00:00:12:50:3C","masquerade_enabled":true,"private_network_id":"2651d313-2c8b-443c-9498-e36462e9fbab","push_default_route":true,"status":"ready","updated_at":"2025-03-21T14:33:03.428146Z","zone":"fr-par-1"}],"id":"da217888-a3e2-48a1-8baa-299d55412c4c","ipv4":{"address":"163.172.156.222","created_at":"2025-03-21T14:32:46.652577Z","gateway_id":"da217888-a3e2-48a1-8baa-299d55412c4c","id":"03fa65fc-80c9-4316-9e28-74a47d29e742","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"222-156-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:32:46.652577Z","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-03-21T14:33:03.617619Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "489" + - "1317" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:55 GMT + - Fri, 21 Mar 2025 14:33:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -887,10 +887,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f98230f-633e-47a3-a232-8f69911530db + - 9bb6f7e4-8b88-4eb4-90c8-8c88bbe7bb0b status: 200 OK code: 200 - duration: 47.046459ms + duration: 25.58003ms - id: 18 request: proto: HTTP/1.1 @@ -906,57 +906,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/ba9d9f6b-41a7-4414-97b2-fda03388cf13 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 489 - uncompressed: false - body: '{"address":"172.16.64.2/22","created_at":"2025-01-27T09:16:40.201148Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","id":"ba9d9f6b-41a7-4414-97b2-fda03388cf13","ipam_config":{"ipam_ip_id":"e79a44aa-e3f7-42e8-b800-91e734614d35","push_default_route":true},"mac_address":"02:00:00:1E:22:5B","private_network_id":"3a41e5bb-a7bd-4996-855c-0d284ee89412","status":"ready","updated_at":"2025-01-27T09:16:50.693808Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "489" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:56 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2b0ac1f4-2bea-4281-9348-829d311d7472 - status: 200 OK - code: 200 - duration: 43.972042ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/a614824d-f3c0-4289-a77c-04960986c3ec + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/1688de78-bb56-41a5-a65a-10213e2db026 method: GET response: proto: HTTP/2.0 @@ -966,7 +917,7 @@ interactions: trailer: {} content_length: 352 uncompressed: false - body: '{"created_at":"2025-01-27T09:16:33.881090Z","id":"a614824d-f3c0-4289-a77c-04960986c3ec","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-27T09:16:33.881090Z"}' + body: '{"created_at":"2025-03-21T14:32:45.956921Z","id":"1688de78-bb56-41a5-a65a-10213e2db026","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-03-21T14:32:45.956921Z"}' headers: Content-Length: - "352" @@ -975,58 +926,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:56 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b5942109-694a-456f-b453-8cab5c37e8d4 - status: 200 OK - code: 200 - duration: 24.760792ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/5f2040c6-9037-4c64-90f8-3f0c892f98e3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1454 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:34.636857Z","gateway_networks":[{"address":"172.16.64.2/22","created_at":"2025-01-27T09:16:40.201148Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","id":"ba9d9f6b-41a7-4414-97b2-fda03388cf13","ipam_config":{"ipam_ip_id":"e79a44aa-e3f7-42e8-b800-91e734614d35","push_default_route":true},"mac_address":"02:00:00:1E:22:5B","private_network_id":"3a41e5bb-a7bd-4996-855c-0d284ee89412","status":"ready","updated_at":"2025-01-27T09:16:50.693808Z","zone":"fr-par-1"}],"id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","ip":{"address":"51.15.250.58","created_at":"2025-01-27T09:16:34.617828Z","gateway_id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","id":"957c6ee5-045a-4e71-a101-fd9a0dcf722f","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"58-250-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:34.617828Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:50.887997Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' - headers: - Content-Length: - - "1454" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:56 GMT + - Fri, 21 Mar 2025 14:33:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1034,11 +936,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 52e1d4e9-138b-4f38-81d5-b2477c0583a2 + - 3f11ae49-5030-40a3-9cc9-bd5fe54e74de status: 200 OK code: 200 - duration: 27.742791ms - - id: 21 + duration: 31.856342ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -1053,8 +955,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/3a41e5bb-a7bd-4996-855c-0d284ee89412 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2651d313-2c8b-443c-9498-e36462e9fbab method: GET response: proto: HTTP/2.0 @@ -1064,7 +966,7 @@ interactions: trailer: {} content_length: 1019 uncompressed: false - body: '{"created_at":"2025-01-27T09:16:34.030324Z","dhcp_enabled":true,"id":"3a41e5bb-a7bd-4996-855c-0d284ee89412","name":"pn_test_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-27T09:16:34.030324Z","id":"c4682603-eb71-45d7-a55f-25c5ebf7144a","private_network_id":"3a41e5bb-a7bd-4996-855c-0d284ee89412","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.64.0/22","updated_at":"2025-01-27T09:16:34.030324Z","vpc_id":"a614824d-f3c0-4289-a77c-04960986c3ec"},{"created_at":"2025-01-27T09:16:34.030324Z","id":"07b6f3ad-464b-493e-9f99-875cdade5dbb","private_network_id":"3a41e5bb-a7bd-4996-855c-0d284ee89412","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:90b2::/64","updated_at":"2025-01-27T09:16:34.030324Z","vpc_id":"a614824d-f3c0-4289-a77c-04960986c3ec"}],"tags":[],"updated_at":"2025-01-27T09:16:46.806779Z","vpc_id":"a614824d-f3c0-4289-a77c-04960986c3ec"}' + body: '{"created_at":"2025-03-21T14:32:46.098162Z","dhcp_enabled":true,"id":"2651d313-2c8b-443c-9498-e36462e9fbab","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-03-21T14:32:46.098162Z","id":"50311006-f8b7-4f31-9a07-72c0c7abe589","private_network_id":"2651d313-2c8b-443c-9498-e36462e9fbab","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.64.0/22","updated_at":"2025-03-21T14:32:46.098162Z","vpc_id":"1688de78-bb56-41a5-a65a-10213e2db026"},{"created_at":"2025-03-21T14:32:46.098162Z","id":"e59b822c-64e2-4158-a1bd-6dbeebbfe8cb","private_network_id":"2651d313-2c8b-443c-9498-e36462e9fbab","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:8d37::/64","updated_at":"2025-03-21T14:32:46.098162Z","vpc_id":"1688de78-bb56-41a5-a65a-10213e2db026"}],"tags":[],"updated_at":"2025-03-21T14:32:59.048032Z","vpc_id":"1688de78-bb56-41a5-a65a-10213e2db026"}' headers: Content-Length: - "1019" @@ -1073,58 +975,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:56 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 04bfb3a5-4001-44de-b610-dba3826ac7a7 - status: 200 OK - code: 200 - duration: 26.482333ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/ba9d9f6b-41a7-4414-97b2-fda03388cf13 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 489 - uncompressed: false - body: '{"address":"172.16.64.2/22","created_at":"2025-01-27T09:16:40.201148Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","id":"ba9d9f6b-41a7-4414-97b2-fda03388cf13","ipam_config":{"ipam_ip_id":"e79a44aa-e3f7-42e8-b800-91e734614d35","push_default_route":true},"mac_address":"02:00:00:1E:22:5B","private_network_id":"3a41e5bb-a7bd-4996-855c-0d284ee89412","status":"ready","updated_at":"2025-01-27T09:16:50.693808Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "489" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:56 GMT + - Fri, 21 Mar 2025 14:33:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1132,11 +985,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3bd50669-fe5b-4778-b960-678c9d03af6e + - aae483f7-c72c-44e8-aba4-6bc2d1854949 status: 200 OK code: 200 - duration: 41.983166ms - - id: 23 + duration: 34.166916ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -1151,8 +1004,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/5f2040c6-9037-4c64-90f8-3f0c892f98e3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/8be0649e-5f8e-46c0-8567-e62244eb5986 method: GET response: proto: HTTP/2.0 @@ -1160,20 +1013,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1454 + content_length: 416 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:34.636857Z","gateway_networks":[{"address":"172.16.64.2/22","created_at":"2025-01-27T09:16:40.201148Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","id":"ba9d9f6b-41a7-4414-97b2-fda03388cf13","ipam_config":{"ipam_ip_id":"e79a44aa-e3f7-42e8-b800-91e734614d35","push_default_route":true},"mac_address":"02:00:00:1E:22:5B","private_network_id":"3a41e5bb-a7bd-4996-855c-0d284ee89412","status":"ready","updated_at":"2025-01-27T09:16:50.693808Z","zone":"fr-par-1"}],"id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","ip":{"address":"51.15.250.58","created_at":"2025-01-27T09:16:34.617828Z","gateway_id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","id":"957c6ee5-045a-4e71-a101-fd9a0dcf722f","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"58-250-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:34.617828Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:50.887997Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-21T14:32:52.403510Z","gateway_id":"da217888-a3e2-48a1-8baa-299d55412c4c","id":"8be0649e-5f8e-46c0-8567-e62244eb5986","ipam_ip_id":"ed5cf43f-0d5d-4fb3-ba1a-849fa9df61de","mac_address":"02:00:00:12:50:3C","masquerade_enabled":true,"private_network_id":"2651d313-2c8b-443c-9498-e36462e9fbab","push_default_route":true,"status":"ready","updated_at":"2025-03-21T14:33:03.428146Z","zone":"fr-par-1"}' headers: Content-Length: - - "1454" + - "416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:56 GMT + - Fri, 21 Mar 2025 14:33:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1181,11 +1034,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 23ef4833-91fb-4c6c-a008-863d286ba84f + - 1841b336-42d5-447e-933b-ee05a37a5361 status: 200 OK code: 200 - duration: 26.135333ms - - id: 24 + duration: 43.95101ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -1200,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-gw/v1/zones/fr-par-1/gateway-networks/ba9d9f6b-41a7-4414-97b2-fda03388cf13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/da217888-a3e2-48a1-8baa-299d55412c4c method: GET response: proto: HTTP/2.0 @@ -1209,20 +1062,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 489 + content_length: 1317 uncompressed: false - body: '{"address":"172.16.64.2/22","created_at":"2025-01-27T09:16:40.201148Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","id":"ba9d9f6b-41a7-4414-97b2-fda03388cf13","ipam_config":{"ipam_ip_id":"e79a44aa-e3f7-42e8-b800-91e734614d35","push_default_route":true},"mac_address":"02:00:00:1E:22:5B","private_network_id":"3a41e5bb-a7bd-4996-855c-0d284ee89412","status":"ready","updated_at":"2025-01-27T09:16:50.693808Z","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:32:46.673584Z","gateway_networks":[{"created_at":"2025-03-21T14:32:52.403510Z","gateway_id":"da217888-a3e2-48a1-8baa-299d55412c4c","id":"8be0649e-5f8e-46c0-8567-e62244eb5986","ipam_ip_id":"ed5cf43f-0d5d-4fb3-ba1a-849fa9df61de","mac_address":"02:00:00:12:50:3C","masquerade_enabled":true,"private_network_id":"2651d313-2c8b-443c-9498-e36462e9fbab","push_default_route":true,"status":"ready","updated_at":"2025-03-21T14:33:03.428146Z","zone":"fr-par-1"}],"id":"da217888-a3e2-48a1-8baa-299d55412c4c","ipv4":{"address":"163.172.156.222","created_at":"2025-03-21T14:32:46.652577Z","gateway_id":"da217888-a3e2-48a1-8baa-299d55412c4c","id":"03fa65fc-80c9-4316-9e28-74a47d29e742","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"222-156-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:32:46.652577Z","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-03-21T14:33:03.617619Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "489" + - "1317" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:56 GMT + - Fri, 21 Mar 2025 14:33:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1230,11 +1083,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 461a30c5-a4f1-4631-9df7-31da7f3f8acc + - 6fedec70-5b47-4e0c-b9c0-303b70eb7330 status: 200 OK code: 200 - duration: 44.7885ms - - id: 25 + duration: 29.36384ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -1249,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/a614824d-f3c0-4289-a77c-04960986c3ec + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/1688de78-bb56-41a5-a65a-10213e2db026 method: GET response: proto: HTTP/2.0 @@ -1260,7 +1113,7 @@ interactions: trailer: {} content_length: 352 uncompressed: false - body: '{"created_at":"2025-01-27T09:16:33.881090Z","id":"a614824d-f3c0-4289-a77c-04960986c3ec","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-27T09:16:33.881090Z"}' + body: '{"created_at":"2025-03-21T14:32:45.956921Z","id":"1688de78-bb56-41a5-a65a-10213e2db026","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-03-21T14:32:45.956921Z"}' headers: Content-Length: - "352" @@ -1269,58 +1122,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:57 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 62bcc43f-45ec-43d6-bcd5-2212f3597e89 - status: 200 OK - code: 200 - duration: 27.572208ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/5f2040c6-9037-4c64-90f8-3f0c892f98e3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1454 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:34.636857Z","gateway_networks":[{"address":"172.16.64.2/22","created_at":"2025-01-27T09:16:40.201148Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","id":"ba9d9f6b-41a7-4414-97b2-fda03388cf13","ipam_config":{"ipam_ip_id":"e79a44aa-e3f7-42e8-b800-91e734614d35","push_default_route":true},"mac_address":"02:00:00:1E:22:5B","private_network_id":"3a41e5bb-a7bd-4996-855c-0d284ee89412","status":"ready","updated_at":"2025-01-27T09:16:50.693808Z","zone":"fr-par-1"}],"id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","ip":{"address":"51.15.250.58","created_at":"2025-01-27T09:16:34.617828Z","gateway_id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","id":"957c6ee5-045a-4e71-a101-fd9a0dcf722f","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"58-250-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:34.617828Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:50.887997Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' - headers: - Content-Length: - - "1454" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:57 GMT + - Fri, 21 Mar 2025 14:33:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1328,11 +1132,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c80b4505-8871-4124-973a-74e94d6f1dab + - 13a35490-0ae9-4252-8aa4-fbc662c0e2b4 status: 200 OK code: 200 - duration: 29.184167ms - - id: 27 + duration: 45.935737ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -1347,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/private-networks/3a41e5bb-a7bd-4996-855c-0d284ee89412 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2651d313-2c8b-443c-9498-e36462e9fbab method: GET response: proto: HTTP/2.0 @@ -1358,7 +1162,7 @@ interactions: trailer: {} content_length: 1019 uncompressed: false - body: '{"created_at":"2025-01-27T09:16:34.030324Z","dhcp_enabled":true,"id":"3a41e5bb-a7bd-4996-855c-0d284ee89412","name":"pn_test_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-27T09:16:34.030324Z","id":"c4682603-eb71-45d7-a55f-25c5ebf7144a","private_network_id":"3a41e5bb-a7bd-4996-855c-0d284ee89412","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.64.0/22","updated_at":"2025-01-27T09:16:34.030324Z","vpc_id":"a614824d-f3c0-4289-a77c-04960986c3ec"},{"created_at":"2025-01-27T09:16:34.030324Z","id":"07b6f3ad-464b-493e-9f99-875cdade5dbb","private_network_id":"3a41e5bb-a7bd-4996-855c-0d284ee89412","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:90b2::/64","updated_at":"2025-01-27T09:16:34.030324Z","vpc_id":"a614824d-f3c0-4289-a77c-04960986c3ec"}],"tags":[],"updated_at":"2025-01-27T09:16:46.806779Z","vpc_id":"a614824d-f3c0-4289-a77c-04960986c3ec"}' + body: '{"created_at":"2025-03-21T14:32:46.098162Z","dhcp_enabled":true,"id":"2651d313-2c8b-443c-9498-e36462e9fbab","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-03-21T14:32:46.098162Z","id":"50311006-f8b7-4f31-9a07-72c0c7abe589","private_network_id":"2651d313-2c8b-443c-9498-e36462e9fbab","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.64.0/22","updated_at":"2025-03-21T14:32:46.098162Z","vpc_id":"1688de78-bb56-41a5-a65a-10213e2db026"},{"created_at":"2025-03-21T14:32:46.098162Z","id":"e59b822c-64e2-4158-a1bd-6dbeebbfe8cb","private_network_id":"2651d313-2c8b-443c-9498-e36462e9fbab","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:8d37::/64","updated_at":"2025-03-21T14:32:46.098162Z","vpc_id":"1688de78-bb56-41a5-a65a-10213e2db026"}],"tags":[],"updated_at":"2025-03-21T14:32:59.048032Z","vpc_id":"1688de78-bb56-41a5-a65a-10213e2db026"}' headers: Content-Length: - "1019" @@ -1367,107 +1171,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:57 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - bb6e4fae-8609-4298-9e71-e9131e1e2543 - status: 200 OK - code: 200 - duration: 23.592667ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/ba9d9f6b-41a7-4414-97b2-fda03388cf13 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 489 - uncompressed: false - body: '{"address":"172.16.64.2/22","created_at":"2025-01-27T09:16:40.201148Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","id":"ba9d9f6b-41a7-4414-97b2-fda03388cf13","ipam_config":{"ipam_ip_id":"e79a44aa-e3f7-42e8-b800-91e734614d35","push_default_route":true},"mac_address":"02:00:00:1E:22:5B","private_network_id":"3a41e5bb-a7bd-4996-855c-0d284ee89412","status":"ready","updated_at":"2025-01-27T09:16:50.693808Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "489" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:57 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - bd02522f-c60f-4bd5-8809-c33082606248 - status: 200 OK - code: 200 - duration: 47.496208ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/5f2040c6-9037-4c64-90f8-3f0c892f98e3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1454 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:34.636857Z","gateway_networks":[{"address":"172.16.64.2/22","created_at":"2025-01-27T09:16:40.201148Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","id":"ba9d9f6b-41a7-4414-97b2-fda03388cf13","ipam_config":{"ipam_ip_id":"e79a44aa-e3f7-42e8-b800-91e734614d35","push_default_route":true},"mac_address":"02:00:00:1E:22:5B","private_network_id":"3a41e5bb-a7bd-4996-855c-0d284ee89412","status":"ready","updated_at":"2025-01-27T09:16:50.693808Z","zone":"fr-par-1"}],"id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","ip":{"address":"51.15.250.58","created_at":"2025-01-27T09:16:34.617828Z","gateway_id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","id":"957c6ee5-045a-4e71-a101-fd9a0dcf722f","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"58-250-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:34.617828Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:50.887997Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' - headers: - Content-Length: - - "1454" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:57 GMT + - Fri, 21 Mar 2025 14:33:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1475,11 +1181,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d2252888-5ed1-400d-881d-31e4cdd57718 + - 64ef0b6b-a313-427a-9f23-2992059d58eb status: 200 OK code: 200 - duration: 28.353542ms - - id: 30 + duration: 23.585895ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -1494,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-gw/v1/zones/fr-par-1/gateway-networks/ba9d9f6b-41a7-4414-97b2-fda03388cf13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/8be0649e-5f8e-46c0-8567-e62244eb5986 method: GET response: proto: HTTP/2.0 @@ -1503,20 +1209,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 489 + content_length: 416 uncompressed: false - body: '{"address":"172.16.64.2/22","created_at":"2025-01-27T09:16:40.201148Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","id":"ba9d9f6b-41a7-4414-97b2-fda03388cf13","ipam_config":{"ipam_ip_id":"e79a44aa-e3f7-42e8-b800-91e734614d35","push_default_route":true},"mac_address":"02:00:00:1E:22:5B","private_network_id":"3a41e5bb-a7bd-4996-855c-0d284ee89412","status":"ready","updated_at":"2025-01-27T09:16:50.693808Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-21T14:32:52.403510Z","gateway_id":"da217888-a3e2-48a1-8baa-299d55412c4c","id":"8be0649e-5f8e-46c0-8567-e62244eb5986","ipam_ip_id":"ed5cf43f-0d5d-4fb3-ba1a-849fa9df61de","mac_address":"02:00:00:12:50:3C","masquerade_enabled":true,"private_network_id":"2651d313-2c8b-443c-9498-e36462e9fbab","push_default_route":true,"status":"ready","updated_at":"2025-03-21T14:33:03.428146Z","zone":"fr-par-1"}' headers: Content-Length: - - "489" + - "416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:57 GMT + - Fri, 21 Mar 2025 14:33:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1524,11 +1230,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 84db26be-82cc-41e1-9102-f3c8405b851e + - 6f4d6010-b373-461f-bd8e-2dd06d35b6fe status: 200 OK code: 200 - duration: 39.437459ms - - id: 31 + duration: 43.834301ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -1539,13 +1245,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","source":{"private_network_id":"3a41e5bb-a7bd-4996-855c-0d284ee89412"},"is_ipv6":false,"address":"172.16.64.7","tags":[]}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","source":{"private_network_id":"2651d313-2c8b-443c-9498-e36462e9fbab"},"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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips method: POST response: @@ -1556,7 +1262,7 @@ interactions: trailer: {} content_length: 358 uncompressed: false - body: '{"address":"172.16.64.7/22","created_at":"2025-01-27T09:16:58.912797Z","id":"e1a63ac5-e9ab-4946-ae0b-7f7b4b93eba7","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"c4682603-eb71-45d7-a55f-25c5ebf7144a"},"tags":[],"updated_at":"2025-01-27T09:16:58.912797Z","zone":null}' + body: '{"address":"172.16.64.7/22","created_at":"2025-03-21T14:33:10.019610Z","id":"405123cd-d3bf-4407-8036-14afc0988e82","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"50311006-f8b7-4f31-9a07-72c0c7abe589"},"tags":[],"updated_at":"2025-03-21T14:33:10.019610Z","zone":null}' headers: Content-Length: - "358" @@ -1565,9 +1271,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:58 GMT + - Fri, 21 Mar 2025 14:33:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1575,11 +1281,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6c4c5463-5f97-4a9c-900e-bd39b5c5de93 + - 6ada09f2-c704-45d6-9382-bb50b7ab9cd7 status: 200 OK code: 200 - duration: 381.711209ms - - id: 32 + duration: 268.877393ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -1594,8 +1300,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/e1a63ac5-e9ab-4946-ae0b-7f7b4b93eba7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/405123cd-d3bf-4407-8036-14afc0988e82 method: GET response: proto: HTTP/2.0 @@ -1605,7 +1311,7 @@ interactions: trailer: {} content_length: 358 uncompressed: false - body: '{"address":"172.16.64.7/22","created_at":"2025-01-27T09:16:58.912797Z","id":"e1a63ac5-e9ab-4946-ae0b-7f7b4b93eba7","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"c4682603-eb71-45d7-a55f-25c5ebf7144a"},"tags":[],"updated_at":"2025-01-27T09:16:58.912797Z","zone":null}' + body: '{"address":"172.16.64.7/22","created_at":"2025-03-21T14:33:10.019610Z","id":"405123cd-d3bf-4407-8036-14afc0988e82","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"50311006-f8b7-4f31-9a07-72c0c7abe589"},"tags":[],"updated_at":"2025-03-21T14:33:10.019610Z","zone":null}' headers: Content-Length: - "358" @@ -1614,9 +1320,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:59 GMT + - Fri, 21 Mar 2025 14:33:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1624,11 +1330,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d601e94-ac4d-44e2-a4e3-88b8cd3b3369 + - 04087cde-c1d2-413b-b025-94722c101290 status: 200 OK code: 200 - duration: 65.538667ms - - id: 33 + duration: 44.454811ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -1643,8 +1349,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/3a41e5bb-a7bd-4996-855c-0d284ee89412 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2651d313-2c8b-443c-9498-e36462e9fbab method: GET response: proto: HTTP/2.0 @@ -1654,7 +1360,7 @@ interactions: trailer: {} content_length: 1019 uncompressed: false - body: '{"created_at":"2025-01-27T09:16:34.030324Z","dhcp_enabled":true,"id":"3a41e5bb-a7bd-4996-855c-0d284ee89412","name":"pn_test_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-27T09:16:34.030324Z","id":"c4682603-eb71-45d7-a55f-25c5ebf7144a","private_network_id":"3a41e5bb-a7bd-4996-855c-0d284ee89412","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.64.0/22","updated_at":"2025-01-27T09:16:34.030324Z","vpc_id":"a614824d-f3c0-4289-a77c-04960986c3ec"},{"created_at":"2025-01-27T09:16:34.030324Z","id":"07b6f3ad-464b-493e-9f99-875cdade5dbb","private_network_id":"3a41e5bb-a7bd-4996-855c-0d284ee89412","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:90b2::/64","updated_at":"2025-01-27T09:16:34.030324Z","vpc_id":"a614824d-f3c0-4289-a77c-04960986c3ec"}],"tags":[],"updated_at":"2025-01-27T09:16:46.806779Z","vpc_id":"a614824d-f3c0-4289-a77c-04960986c3ec"}' + body: '{"created_at":"2025-03-21T14:32:46.098162Z","dhcp_enabled":true,"id":"2651d313-2c8b-443c-9498-e36462e9fbab","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-03-21T14:32:46.098162Z","id":"50311006-f8b7-4f31-9a07-72c0c7abe589","private_network_id":"2651d313-2c8b-443c-9498-e36462e9fbab","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.64.0/22","updated_at":"2025-03-21T14:32:46.098162Z","vpc_id":"1688de78-bb56-41a5-a65a-10213e2db026"},{"created_at":"2025-03-21T14:32:46.098162Z","id":"e59b822c-64e2-4158-a1bd-6dbeebbfe8cb","private_network_id":"2651d313-2c8b-443c-9498-e36462e9fbab","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:8d37::/64","updated_at":"2025-03-21T14:32:46.098162Z","vpc_id":"1688de78-bb56-41a5-a65a-10213e2db026"}],"tags":[],"updated_at":"2025-03-21T14:32:59.048032Z","vpc_id":"1688de78-bb56-41a5-a65a-10213e2db026"}' headers: Content-Length: - "1019" @@ -1663,9 +1369,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:59 GMT + - Fri, 21 Mar 2025 14:33:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1673,11 +1379,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e9474106-0603-4874-a87f-7ada38aa92d8 + - ca92d3e4-903d-4870-9c02-b3ed390bf929 status: 200 OK code: 200 - duration: 25.14025ms - - id: 34 + duration: 38.687549ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -1692,8 +1398,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/ba9d9f6b-41a7-4414-97b2-fda03388cf13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/8be0649e-5f8e-46c0-8567-e62244eb5986 method: GET response: proto: HTTP/2.0 @@ -1701,20 +1407,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 489 + content_length: 416 uncompressed: false - body: '{"address":"172.16.64.2/22","created_at":"2025-01-27T09:16:40.201148Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","id":"ba9d9f6b-41a7-4414-97b2-fda03388cf13","ipam_config":{"ipam_ip_id":"e79a44aa-e3f7-42e8-b800-91e734614d35","push_default_route":true},"mac_address":"02:00:00:1E:22:5B","private_network_id":"3a41e5bb-a7bd-4996-855c-0d284ee89412","status":"ready","updated_at":"2025-01-27T09:16:50.693808Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-21T14:32:52.403510Z","gateway_id":"da217888-a3e2-48a1-8baa-299d55412c4c","id":"8be0649e-5f8e-46c0-8567-e62244eb5986","ipam_ip_id":"ed5cf43f-0d5d-4fb3-ba1a-849fa9df61de","mac_address":"02:00:00:12:50:3C","masquerade_enabled":true,"private_network_id":"2651d313-2c8b-443c-9498-e36462e9fbab","push_default_route":true,"status":"ready","updated_at":"2025-03-21T14:33:03.428146Z","zone":"fr-par-1"}' headers: Content-Length: - - "489" + - "416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:59 GMT + - Fri, 21 Mar 2025 14:33:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1722,29 +1428,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 13b82ce6-b8f0-4ba0-90ad-a7cae21d1240 + - 1518c9a2-ac4a-480c-98b0-fcdfd805d0ea status: 200 OK code: 200 - duration: 39.810459ms - - id: 35 + duration: 44.133524ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 95 + content_length: 79 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"ipam_config":{"push_default_route":true,"ipam_ip_id":"e1a63ac5-e9ab-4946-ae0b-7f7b4b93eba7"}}' + body: '{"push_default_route":true,"ipam_ip_id":"405123cd-d3bf-4407-8036-14afc0988e82"}' 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-gw/v1/zones/fr-par-1/gateway-networks/ba9d9f6b-41a7-4414-97b2-fda03388cf13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/8be0649e-5f8e-46c0-8567-e62244eb5986 method: PATCH response: proto: HTTP/2.0 @@ -1752,69 +1458,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 495 - uncompressed: false - body: '{"address":"172.16.64.7/22","created_at":"2025-01-27T09:16:40.201148Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","id":"ba9d9f6b-41a7-4414-97b2-fda03388cf13","ipam_config":{"ipam_ip_id":"e1a63ac5-e9ab-4946-ae0b-7f7b4b93eba7","push_default_route":true},"mac_address":"02:00:00:1E:22:5B","private_network_id":"3a41e5bb-a7bd-4996-855c-0d284ee89412","status":"configuring","updated_at":"2025-01-27T09:16:59.211414Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "495" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:16:59 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e768874a-13c5-4bf4-b087-01238fdf4b72 - status: 200 OK - code: 200 - duration: 202.366916ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/ba9d9f6b-41a7-4414-97b2-fda03388cf13 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 495 + content_length: 422 uncompressed: false - body: '{"address":"172.16.64.7/22","created_at":"2025-01-27T09:16:40.201148Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","id":"ba9d9f6b-41a7-4414-97b2-fda03388cf13","ipam_config":{"ipam_ip_id":"e1a63ac5-e9ab-4946-ae0b-7f7b4b93eba7","push_default_route":true},"mac_address":"02:00:00:1E:22:5B","private_network_id":"3a41e5bb-a7bd-4996-855c-0d284ee89412","status":"configuring","updated_at":"2025-01-27T09:16:59.211414Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-21T14:32:52.403510Z","gateway_id":"da217888-a3e2-48a1-8baa-299d55412c4c","id":"8be0649e-5f8e-46c0-8567-e62244eb5986","ipam_ip_id":"405123cd-d3bf-4407-8036-14afc0988e82","mac_address":"02:00:00:12:50:3C","masquerade_enabled":true,"private_network_id":"2651d313-2c8b-443c-9498-e36462e9fbab","push_default_route":true,"status":"configuring","updated_at":"2025-03-21T14:33:10.331597Z","zone":"fr-par-1"}' headers: Content-Length: - - "495" + - "422" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:59 GMT + - Fri, 21 Mar 2025 14:33:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1822,11 +1479,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 20cde4c1-4cf9-4f61-ad13-2040746b3cac + - ba0578c2-a48e-4d9d-bd40-817acfcc093d status: 200 OK code: 200 - duration: 45.581209ms - - id: 37 + duration: 356.043642ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -1841,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-gw/v1/zones/fr-par-1/gateway-networks/ba9d9f6b-41a7-4414-97b2-fda03388cf13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/8be0649e-5f8e-46c0-8567-e62244eb5986 method: GET response: proto: HTTP/2.0 @@ -1850,20 +1507,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 489 + content_length: 422 uncompressed: false - body: '{"address":"172.16.64.7/22","created_at":"2025-01-27T09:16:40.201148Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","id":"ba9d9f6b-41a7-4414-97b2-fda03388cf13","ipam_config":{"ipam_ip_id":"e1a63ac5-e9ab-4946-ae0b-7f7b4b93eba7","push_default_route":true},"mac_address":"02:00:00:1E:22:5B","private_network_id":"3a41e5bb-a7bd-4996-855c-0d284ee89412","status":"ready","updated_at":"2025-01-27T09:17:04.308005Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-21T14:32:52.403510Z","gateway_id":"da217888-a3e2-48a1-8baa-299d55412c4c","id":"8be0649e-5f8e-46c0-8567-e62244eb5986","ipam_ip_id":"405123cd-d3bf-4407-8036-14afc0988e82","mac_address":"02:00:00:12:50:3C","masquerade_enabled":true,"private_network_id":"2651d313-2c8b-443c-9498-e36462e9fbab","push_default_route":true,"status":"configuring","updated_at":"2025-03-21T14:33:10.331597Z","zone":"fr-par-1"}' headers: Content-Length: - - "489" + - "422" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:17:04 GMT + - Fri, 21 Mar 2025 14:33:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1871,11 +1528,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 94d37db8-2a8c-4f3b-87db-37e6f5def087 + - c3f5a574-6810-48bb-aea0-9ecbe6c69e46 status: 200 OK code: 200 - duration: 46.040792ms - - id: 38 + duration: 47.590418ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -1890,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-gw/v1/zones/fr-par-1/gateway-networks/ba9d9f6b-41a7-4414-97b2-fda03388cf13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/8be0649e-5f8e-46c0-8567-e62244eb5986 method: GET response: proto: HTTP/2.0 @@ -1899,20 +1556,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 489 + content_length: 416 uncompressed: false - body: '{"address":"172.16.64.7/22","created_at":"2025-01-27T09:16:40.201148Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","id":"ba9d9f6b-41a7-4414-97b2-fda03388cf13","ipam_config":{"ipam_ip_id":"e1a63ac5-e9ab-4946-ae0b-7f7b4b93eba7","push_default_route":true},"mac_address":"02:00:00:1E:22:5B","private_network_id":"3a41e5bb-a7bd-4996-855c-0d284ee89412","status":"ready","updated_at":"2025-01-27T09:17:04.308005Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-21T14:32:52.403510Z","gateway_id":"da217888-a3e2-48a1-8baa-299d55412c4c","id":"8be0649e-5f8e-46c0-8567-e62244eb5986","ipam_ip_id":"405123cd-d3bf-4407-8036-14afc0988e82","mac_address":"02:00:00:12:50:3C","masquerade_enabled":true,"private_network_id":"2651d313-2c8b-443c-9498-e36462e9fbab","push_default_route":true,"status":"ready","updated_at":"2025-03-21T14:33:15.163636Z","zone":"fr-par-1"}' headers: Content-Length: - - "489" + - "416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:17:04 GMT + - Fri, 21 Mar 2025 14:33:15 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1920,11 +1577,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 37a756b1-67ef-4ec2-bb1c-179219ec3ab0 + - d4b17628-cd46-4559-b4ca-e029c66207d2 status: 200 OK code: 200 - duration: 50.94025ms - - id: 39 + duration: 52.474073ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -1939,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-gw/v1/zones/fr-par-1/gateways/5f2040c6-9037-4c64-90f8-3f0c892f98e3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/8be0649e-5f8e-46c0-8567-e62244eb5986 method: GET response: proto: HTTP/2.0 @@ -1948,20 +1605,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1454 + content_length: 416 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:34.636857Z","gateway_networks":[{"address":"172.16.64.7/22","created_at":"2025-01-27T09:16:40.201148Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","id":"ba9d9f6b-41a7-4414-97b2-fda03388cf13","ipam_config":{"ipam_ip_id":"e1a63ac5-e9ab-4946-ae0b-7f7b4b93eba7","push_default_route":true},"mac_address":"02:00:00:1E:22:5B","private_network_id":"3a41e5bb-a7bd-4996-855c-0d284ee89412","status":"ready","updated_at":"2025-01-27T09:17:04.308005Z","zone":"fr-par-1"}],"id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","ip":{"address":"51.15.250.58","created_at":"2025-01-27T09:16:34.617828Z","gateway_id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","id":"957c6ee5-045a-4e71-a101-fd9a0dcf722f","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"58-250-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:34.617828Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:50.887997Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-21T14:32:52.403510Z","gateway_id":"da217888-a3e2-48a1-8baa-299d55412c4c","id":"8be0649e-5f8e-46c0-8567-e62244eb5986","ipam_ip_id":"405123cd-d3bf-4407-8036-14afc0988e82","mac_address":"02:00:00:12:50:3C","masquerade_enabled":true,"private_network_id":"2651d313-2c8b-443c-9498-e36462e9fbab","push_default_route":true,"status":"ready","updated_at":"2025-03-21T14:33:15.163636Z","zone":"fr-par-1"}' headers: Content-Length: - - "1454" + - "416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:17:04 GMT + - Fri, 21 Mar 2025 14:33:15 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1969,11 +1626,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 44c44af9-be91-4381-8445-4fea05283101 + - 52cc4f13-571e-4b2a-a590-9c4b503dab9e status: 200 OK code: 200 - duration: 26.276209ms - - id: 40 + duration: 43.600266ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -1988,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-gw/v1/zones/fr-par-1/gateway-networks/ba9d9f6b-41a7-4414-97b2-fda03388cf13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/8be0649e-5f8e-46c0-8567-e62244eb5986 method: GET response: proto: HTTP/2.0 @@ -1997,20 +1654,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 489 + content_length: 416 uncompressed: false - body: '{"address":"172.16.64.7/22","created_at":"2025-01-27T09:16:40.201148Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","id":"ba9d9f6b-41a7-4414-97b2-fda03388cf13","ipam_config":{"ipam_ip_id":"e1a63ac5-e9ab-4946-ae0b-7f7b4b93eba7","push_default_route":true},"mac_address":"02:00:00:1E:22:5B","private_network_id":"3a41e5bb-a7bd-4996-855c-0d284ee89412","status":"ready","updated_at":"2025-01-27T09:17:04.308005Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-21T14:32:52.403510Z","gateway_id":"da217888-a3e2-48a1-8baa-299d55412c4c","id":"8be0649e-5f8e-46c0-8567-e62244eb5986","ipam_ip_id":"405123cd-d3bf-4407-8036-14afc0988e82","mac_address":"02:00:00:12:50:3C","masquerade_enabled":true,"private_network_id":"2651d313-2c8b-443c-9498-e36462e9fbab","push_default_route":true,"status":"ready","updated_at":"2025-03-21T14:33:15.163636Z","zone":"fr-par-1"}' headers: Content-Length: - - "489" + - "416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:17:04 GMT + - Fri, 21 Mar 2025 14:33:15 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2018,11 +1675,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 54bdf42c-0f68-4a47-8ab5-7e25e288cab9 + - 84a45849-dd59-484a-b5c5-4096d3aae64c status: 200 OK code: 200 - duration: 46.28125ms - - id: 41 + duration: 39.606913ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -2037,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-gw/v1/zones/fr-par-1/gateway-networks/ba9d9f6b-41a7-4414-97b2-fda03388cf13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/8be0649e-5f8e-46c0-8567-e62244eb5986 method: GET response: proto: HTTP/2.0 @@ -2046,20 +1703,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 489 + content_length: 416 uncompressed: false - body: '{"address":"172.16.64.7/22","created_at":"2025-01-27T09:16:40.201148Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","id":"ba9d9f6b-41a7-4414-97b2-fda03388cf13","ipam_config":{"ipam_ip_id":"e1a63ac5-e9ab-4946-ae0b-7f7b4b93eba7","push_default_route":true},"mac_address":"02:00:00:1E:22:5B","private_network_id":"3a41e5bb-a7bd-4996-855c-0d284ee89412","status":"ready","updated_at":"2025-01-27T09:17:04.308005Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-21T14:32:52.403510Z","gateway_id":"da217888-a3e2-48a1-8baa-299d55412c4c","id":"8be0649e-5f8e-46c0-8567-e62244eb5986","ipam_ip_id":"405123cd-d3bf-4407-8036-14afc0988e82","mac_address":"02:00:00:12:50:3C","masquerade_enabled":true,"private_network_id":"2651d313-2c8b-443c-9498-e36462e9fbab","push_default_route":true,"status":"ready","updated_at":"2025-03-21T14:33:15.163636Z","zone":"fr-par-1"}' headers: Content-Length: - - "489" + - "416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:17:04 GMT + - Fri, 21 Mar 2025 14:33:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2067,11 +1724,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 97c952a4-d2c1-448c-bb7e-355421b93fd2 + - c092fe2f-394f-44e1-88bb-7d167fe6fddd status: 200 OK code: 200 - duration: 45.041959ms - - id: 42 + duration: 50.245987ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -2086,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-gw/v1/zones/fr-par-1/gateways/5f2040c6-9037-4c64-90f8-3f0c892f98e3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/1688de78-bb56-41a5-a65a-10213e2db026 method: GET response: proto: HTTP/2.0 @@ -2095,20 +1752,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1454 + content_length: 352 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:34.636857Z","gateway_networks":[{"address":"172.16.64.7/22","created_at":"2025-01-27T09:16:40.201148Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","id":"ba9d9f6b-41a7-4414-97b2-fda03388cf13","ipam_config":{"ipam_ip_id":"e1a63ac5-e9ab-4946-ae0b-7f7b4b93eba7","push_default_route":true},"mac_address":"02:00:00:1E:22:5B","private_network_id":"3a41e5bb-a7bd-4996-855c-0d284ee89412","status":"ready","updated_at":"2025-01-27T09:17:04.308005Z","zone":"fr-par-1"}],"id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","ip":{"address":"51.15.250.58","created_at":"2025-01-27T09:16:34.617828Z","gateway_id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","id":"957c6ee5-045a-4e71-a101-fd9a0dcf722f","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"58-250-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:34.617828Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:50.887997Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-21T14:32:45.956921Z","id":"1688de78-bb56-41a5-a65a-10213e2db026","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-03-21T14:32:45.956921Z"}' headers: Content-Length: - - "1454" + - "352" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:17:05 GMT + - Fri, 21 Mar 2025 14:33:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2116,11 +1773,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 25234aed-5779-45e5-ac70-94a85ea18322 + - a7743705-cf89-4147-aed1-20fa488cb304 status: 200 OK code: 200 - duration: 23.09575ms - - id: 43 + duration: 30.497589ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -2135,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/vpcs/a614824d-f3c0-4289-a77c-04960986c3ec + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/da217888-a3e2-48a1-8baa-299d55412c4c method: GET response: proto: HTTP/2.0 @@ -2144,20 +1801,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 352 + content_length: 1317 uncompressed: false - body: '{"created_at":"2025-01-27T09:16:33.881090Z","id":"a614824d-f3c0-4289-a77c-04960986c3ec","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-27T09:16:33.881090Z"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:32:46.673584Z","gateway_networks":[{"created_at":"2025-03-21T14:32:52.403510Z","gateway_id":"da217888-a3e2-48a1-8baa-299d55412c4c","id":"8be0649e-5f8e-46c0-8567-e62244eb5986","ipam_ip_id":"405123cd-d3bf-4407-8036-14afc0988e82","mac_address":"02:00:00:12:50:3C","masquerade_enabled":true,"private_network_id":"2651d313-2c8b-443c-9498-e36462e9fbab","push_default_route":true,"status":"ready","updated_at":"2025-03-21T14:33:15.163636Z","zone":"fr-par-1"}],"id":"da217888-a3e2-48a1-8baa-299d55412c4c","ipv4":{"address":"163.172.156.222","created_at":"2025-03-21T14:32:46.652577Z","gateway_id":"da217888-a3e2-48a1-8baa-299d55412c4c","id":"03fa65fc-80c9-4316-9e28-74a47d29e742","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"222-156-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:32:46.652577Z","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-03-21T14:33:03.617619Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "352" + - "1317" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:17:05 GMT + - Fri, 21 Mar 2025 14:33:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2165,11 +1822,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5822f74d-81dc-4ab3-858e-49e1b6082cbd + - 0693fddc-f1d8-475c-849a-7f6eb701f6c8 status: 200 OK code: 200 - duration: 69.111042ms - - id: 44 + duration: 31.16345ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -2184,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/3a41e5bb-a7bd-4996-855c-0d284ee89412 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2651d313-2c8b-443c-9498-e36462e9fbab method: GET response: proto: HTTP/2.0 @@ -2195,7 +1852,7 @@ interactions: trailer: {} content_length: 1019 uncompressed: false - body: '{"created_at":"2025-01-27T09:16:34.030324Z","dhcp_enabled":true,"id":"3a41e5bb-a7bd-4996-855c-0d284ee89412","name":"pn_test_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-27T09:16:34.030324Z","id":"c4682603-eb71-45d7-a55f-25c5ebf7144a","private_network_id":"3a41e5bb-a7bd-4996-855c-0d284ee89412","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.64.0/22","updated_at":"2025-01-27T09:16:34.030324Z","vpc_id":"a614824d-f3c0-4289-a77c-04960986c3ec"},{"created_at":"2025-01-27T09:16:34.030324Z","id":"07b6f3ad-464b-493e-9f99-875cdade5dbb","private_network_id":"3a41e5bb-a7bd-4996-855c-0d284ee89412","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:90b2::/64","updated_at":"2025-01-27T09:16:34.030324Z","vpc_id":"a614824d-f3c0-4289-a77c-04960986c3ec"}],"tags":[],"updated_at":"2025-01-27T09:17:00.161192Z","vpc_id":"a614824d-f3c0-4289-a77c-04960986c3ec"}' + body: '{"created_at":"2025-03-21T14:32:46.098162Z","dhcp_enabled":true,"id":"2651d313-2c8b-443c-9498-e36462e9fbab","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-03-21T14:32:46.098162Z","id":"50311006-f8b7-4f31-9a07-72c0c7abe589","private_network_id":"2651d313-2c8b-443c-9498-e36462e9fbab","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.64.0/22","updated_at":"2025-03-21T14:32:46.098162Z","vpc_id":"1688de78-bb56-41a5-a65a-10213e2db026"},{"created_at":"2025-03-21T14:32:46.098162Z","id":"e59b822c-64e2-4158-a1bd-6dbeebbfe8cb","private_network_id":"2651d313-2c8b-443c-9498-e36462e9fbab","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:8d37::/64","updated_at":"2025-03-21T14:32:46.098162Z","vpc_id":"1688de78-bb56-41a5-a65a-10213e2db026"}],"tags":[],"updated_at":"2025-03-21T14:33:11.225148Z","vpc_id":"1688de78-bb56-41a5-a65a-10213e2db026"}' headers: Content-Length: - "1019" @@ -2204,9 +1861,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:17:05 GMT + - Fri, 21 Mar 2025 14:33:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2214,11 +1871,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d7724dcf-539a-4584-97fa-67ceb36ef54a + - b44756d1-740c-4d49-a76f-f4a80c9bf0b2 status: 200 OK code: 200 - duration: 29.681209ms - - id: 45 + duration: 25.755213ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -2233,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/ipam/v1/regions/fr-par/ips/e1a63ac5-e9ab-4946-ae0b-7f7b4b93eba7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/405123cd-d3bf-4407-8036-14afc0988e82 method: GET response: proto: HTTP/2.0 @@ -2244,7 +1901,7 @@ interactions: trailer: {} content_length: 463 uncompressed: false - body: '{"address":"172.16.64.7/22","created_at":"2025-01-27T09:16:58.912797Z","id":"e1a63ac5-e9ab-4946-ae0b-7f7b4b93eba7","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"ba9d9f6b-41a7-4414-97b2-fda03388cf13","mac_address":null,"name":"foobar","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"c4682603-eb71-45d7-a55f-25c5ebf7144a"},"tags":[],"updated_at":"2025-01-27T09:16:59.307207Z","zone":null}' + body: '{"address":"172.16.64.7/22","created_at":"2025-03-21T14:33:10.019610Z","id":"405123cd-d3bf-4407-8036-14afc0988e82","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"8be0649e-5f8e-46c0-8567-e62244eb5986","mac_address":null,"name":"foobar","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"50311006-f8b7-4f31-9a07-72c0c7abe589"},"tags":[],"updated_at":"2025-03-21T14:33:10.491325Z","zone":null}' headers: Content-Length: - "463" @@ -2253,9 +1910,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:17:05 GMT + - Fri, 21 Mar 2025 14:33:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2263,11 +1920,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d4dc17f6-c84c-4899-8a43-16385c341864 + - 4b4ac66a-cb04-478d-b19e-a512789abd15 status: 200 OK code: 200 - duration: 30.911625ms - - id: 46 + duration: 62.223979ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -2282,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/3a41e5bb-a7bd-4996-855c-0d284ee89412 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2651d313-2c8b-443c-9498-e36462e9fbab method: GET response: proto: HTTP/2.0 @@ -2293,7 +1950,7 @@ interactions: trailer: {} content_length: 1019 uncompressed: false - body: '{"created_at":"2025-01-27T09:16:34.030324Z","dhcp_enabled":true,"id":"3a41e5bb-a7bd-4996-855c-0d284ee89412","name":"pn_test_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-27T09:16:34.030324Z","id":"c4682603-eb71-45d7-a55f-25c5ebf7144a","private_network_id":"3a41e5bb-a7bd-4996-855c-0d284ee89412","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.64.0/22","updated_at":"2025-01-27T09:16:34.030324Z","vpc_id":"a614824d-f3c0-4289-a77c-04960986c3ec"},{"created_at":"2025-01-27T09:16:34.030324Z","id":"07b6f3ad-464b-493e-9f99-875cdade5dbb","private_network_id":"3a41e5bb-a7bd-4996-855c-0d284ee89412","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:90b2::/64","updated_at":"2025-01-27T09:16:34.030324Z","vpc_id":"a614824d-f3c0-4289-a77c-04960986c3ec"}],"tags":[],"updated_at":"2025-01-27T09:17:00.161192Z","vpc_id":"a614824d-f3c0-4289-a77c-04960986c3ec"}' + body: '{"created_at":"2025-03-21T14:32:46.098162Z","dhcp_enabled":true,"id":"2651d313-2c8b-443c-9498-e36462e9fbab","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-03-21T14:32:46.098162Z","id":"50311006-f8b7-4f31-9a07-72c0c7abe589","private_network_id":"2651d313-2c8b-443c-9498-e36462e9fbab","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.64.0/22","updated_at":"2025-03-21T14:32:46.098162Z","vpc_id":"1688de78-bb56-41a5-a65a-10213e2db026"},{"created_at":"2025-03-21T14:32:46.098162Z","id":"e59b822c-64e2-4158-a1bd-6dbeebbfe8cb","private_network_id":"2651d313-2c8b-443c-9498-e36462e9fbab","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:8d37::/64","updated_at":"2025-03-21T14:32:46.098162Z","vpc_id":"1688de78-bb56-41a5-a65a-10213e2db026"}],"tags":[],"updated_at":"2025-03-21T14:33:11.225148Z","vpc_id":"1688de78-bb56-41a5-a65a-10213e2db026"}' headers: Content-Length: - "1019" @@ -2302,58 +1959,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:17:05 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: - - 53128125-2b6c-4c46-8a92-595818c5bd4a - status: 200 OK - code: 200 - duration: 26.26525ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/ba9d9f6b-41a7-4414-97b2-fda03388cf13 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 489 - uncompressed: false - body: '{"address":"172.16.64.7/22","created_at":"2025-01-27T09:16:40.201148Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","id":"ba9d9f6b-41a7-4414-97b2-fda03388cf13","ipam_config":{"ipam_ip_id":"e1a63ac5-e9ab-4946-ae0b-7f7b4b93eba7","push_default_route":true},"mac_address":"02:00:00:1E:22:5B","private_network_id":"3a41e5bb-a7bd-4996-855c-0d284ee89412","status":"ready","updated_at":"2025-01-27T09:17:04.308005Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "489" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:17:05 GMT + - Fri, 21 Mar 2025 14:33:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2361,11 +1969,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fed743f6-b1a9-4b62-adb5-b80cd9c26950 + - b2a400b6-834d-4c98-b27f-945edb4b0c6e status: 200 OK code: 200 - duration: 45.497375ms - - id: 48 + duration: 28.860922ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -2380,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-gw/v1/zones/fr-par-1/gateways/5f2040c6-9037-4c64-90f8-3f0c892f98e3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/8be0649e-5f8e-46c0-8567-e62244eb5986 method: GET response: proto: HTTP/2.0 @@ -2389,20 +1997,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1454 + content_length: 416 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:34.636857Z","gateway_networks":[{"address":"172.16.64.7/22","created_at":"2025-01-27T09:16:40.201148Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","id":"ba9d9f6b-41a7-4414-97b2-fda03388cf13","ipam_config":{"ipam_ip_id":"e1a63ac5-e9ab-4946-ae0b-7f7b4b93eba7","push_default_route":true},"mac_address":"02:00:00:1E:22:5B","private_network_id":"3a41e5bb-a7bd-4996-855c-0d284ee89412","status":"ready","updated_at":"2025-01-27T09:17:04.308005Z","zone":"fr-par-1"}],"id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","ip":{"address":"51.15.250.58","created_at":"2025-01-27T09:16:34.617828Z","gateway_id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","id":"957c6ee5-045a-4e71-a101-fd9a0dcf722f","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"58-250-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:34.617828Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:50.887997Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-21T14:32:52.403510Z","gateway_id":"da217888-a3e2-48a1-8baa-299d55412c4c","id":"8be0649e-5f8e-46c0-8567-e62244eb5986","ipam_ip_id":"405123cd-d3bf-4407-8036-14afc0988e82","mac_address":"02:00:00:12:50:3C","masquerade_enabled":true,"private_network_id":"2651d313-2c8b-443c-9498-e36462e9fbab","push_default_route":true,"status":"ready","updated_at":"2025-03-21T14:33:15.163636Z","zone":"fr-par-1"}' headers: Content-Length: - - "1454" + - "416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:17:05 GMT + - Fri, 21 Mar 2025 14:33:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2410,11 +2018,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 48ee0c65-be7b-4634-b19d-b3de6107d676 + - e0198439-1373-4150-8d7b-e9684ae5f46a status: 200 OK code: 200 - duration: 28.6675ms - - id: 49 + duration: 42.845872ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -2429,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-gw/v1/zones/fr-par-1/gateway-networks/ba9d9f6b-41a7-4414-97b2-fda03388cf13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/8be0649e-5f8e-46c0-8567-e62244eb5986 method: GET response: proto: HTTP/2.0 @@ -2438,20 +2046,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 489 + content_length: 416 uncompressed: false - body: '{"address":"172.16.64.7/22","created_at":"2025-01-27T09:16:40.201148Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","id":"ba9d9f6b-41a7-4414-97b2-fda03388cf13","ipam_config":{"ipam_ip_id":"e1a63ac5-e9ab-4946-ae0b-7f7b4b93eba7","push_default_route":true},"mac_address":"02:00:00:1E:22:5B","private_network_id":"3a41e5bb-a7bd-4996-855c-0d284ee89412","status":"ready","updated_at":"2025-01-27T09:17:04.308005Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-21T14:32:52.403510Z","gateway_id":"da217888-a3e2-48a1-8baa-299d55412c4c","id":"8be0649e-5f8e-46c0-8567-e62244eb5986","ipam_ip_id":"405123cd-d3bf-4407-8036-14afc0988e82","mac_address":"02:00:00:12:50:3C","masquerade_enabled":true,"private_network_id":"2651d313-2c8b-443c-9498-e36462e9fbab","push_default_route":true,"status":"ready","updated_at":"2025-03-21T14:33:15.163636Z","zone":"fr-par-1"}' headers: Content-Length: - - "489" + - "416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:17:05 GMT + - Fri, 21 Mar 2025 14:33:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2459,11 +2067,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 851946e1-c7fb-4580-a225-74caf4f1b18a + - 823d8f11-5eed-47b9-94c0-3b195b6f7c2a status: 200 OK code: 200 - duration: 40.407042ms - - id: 50 + duration: 54.660561ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -2478,29 +2086,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/ba9d9f6b-41a7-4414-97b2-fda03388cf13 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/8be0649e-5f8e-46c0-8567-e62244eb5986 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 489 + content_length: 420 uncompressed: false - body: '{"address":"172.16.64.7/22","created_at":"2025-01-27T09:16:40.201148Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","id":"ba9d9f6b-41a7-4414-97b2-fda03388cf13","ipam_config":{"ipam_ip_id":"e1a63ac5-e9ab-4946-ae0b-7f7b4b93eba7","push_default_route":true},"mac_address":"02:00:00:1E:22:5B","private_network_id":"3a41e5bb-a7bd-4996-855c-0d284ee89412","status":"ready","updated_at":"2025-01-27T09:17:04.308005Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-21T14:32:52.403510Z","gateway_id":"da217888-a3e2-48a1-8baa-299d55412c4c","id":"8be0649e-5f8e-46c0-8567-e62244eb5986","ipam_ip_id":"405123cd-d3bf-4407-8036-14afc0988e82","mac_address":"02:00:00:12:50:3C","masquerade_enabled":true,"private_network_id":"2651d313-2c8b-443c-9498-e36462e9fbab","push_default_route":true,"status":"detaching","updated_at":"2025-03-21T14:33:17.386817Z","zone":"fr-par-1"}' headers: Content-Length: - - "489" + - "420" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:17:06 GMT + - Fri, 21 Mar 2025 14:33:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2508,58 +2116,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a5c428e9-e3ce-4fcf-8877-2dbc138039de + - 386f4bf3-3f9b-461c-9053-bfba872281a1 status: 200 OK code: 200 - duration: 45.885583ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/ba9d9f6b-41a7-4414-97b2-fda03388cf13?cleanup_dhcp=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: - - Mon, 27 Jan 2025 09:17: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: - - 6f979c2b-b315-4edf-a586-54337cee761d - status: 204 No Content - code: 204 - duration: 78.461792ms - - id: 52 + duration: 59.690629ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -2574,8 +2135,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-gw/v1/zones/fr-par-1/gateway-networks/ba9d9f6b-41a7-4414-97b2-fda03388cf13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/8be0649e-5f8e-46c0-8567-e62244eb5986 method: GET response: proto: HTTP/2.0 @@ -2583,20 +2144,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 493 + content_length: 420 uncompressed: false - body: '{"address":"172.16.64.7/22","created_at":"2025-01-27T09:16:40.201148Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","id":"ba9d9f6b-41a7-4414-97b2-fda03388cf13","ipam_config":{"ipam_ip_id":"e1a63ac5-e9ab-4946-ae0b-7f7b4b93eba7","push_default_route":true},"mac_address":"02:00:00:1E:22:5B","private_network_id":"3a41e5bb-a7bd-4996-855c-0d284ee89412","status":"detaching","updated_at":"2025-01-27T09:17:06.858060Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-21T14:32:52.403510Z","gateway_id":"da217888-a3e2-48a1-8baa-299d55412c4c","id":"8be0649e-5f8e-46c0-8567-e62244eb5986","ipam_ip_id":"405123cd-d3bf-4407-8036-14afc0988e82","mac_address":"02:00:00:12:50:3C","masquerade_enabled":true,"private_network_id":"2651d313-2c8b-443c-9498-e36462e9fbab","push_default_route":true,"status":"detaching","updated_at":"2025-03-21T14:33:17.386817Z","zone":"fr-par-1"}' headers: Content-Length: - - "493" + - "420" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:17:06 GMT + - Fri, 21 Mar 2025 14:33:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2604,11 +2165,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 564fb640-6484-422e-9d75-b42739b1d438 + - 6b1bef22-16fb-4458-83d6-76cb404591a8 status: 200 OK code: 200 - duration: 43.116875ms - - id: 53 + duration: 48.929758ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -2623,8 +2184,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-gw/v1/zones/fr-par-1/gateway-networks/ba9d9f6b-41a7-4414-97b2-fda03388cf13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/8be0649e-5f8e-46c0-8567-e62244eb5986 method: GET response: proto: HTTP/2.0 @@ -2634,7 +2195,7 @@ interactions: trailer: {} content_length: 136 uncompressed: false - body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"ba9d9f6b-41a7-4414-97b2-fda03388cf13","type":"not_found"}' + body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"8be0649e-5f8e-46c0-8567-e62244eb5986","type":"not_found"}' headers: Content-Length: - "136" @@ -2643,9 +2204,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:17:11 GMT + - Fri, 21 Mar 2025 14:33:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2653,60 +2214,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 565514be-99ab-4a21-b05e-f4dc1e707a2e + - 5ae978cd-42b3-4103-8bd3-731970cdce3a status: 404 Not Found code: 404 - duration: 35.595ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/5f2040c6-9037-4c64-90f8-3f0c892f98e3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 965 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:34.636857Z","gateway_networks":[],"id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","ip":{"address":"51.15.250.58","created_at":"2025-01-27T09:16:34.617828Z","gateway_id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","id":"957c6ee5-045a-4e71-a101-fd9a0dcf722f","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"58-250-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:34.617828Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:50.887997Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' - headers: - Content-Length: - - "965" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Jan 2025 09:17:11 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: - - 8c185157-596c-4d7c-964b-f3ce46f28ecf - status: 200 OK - code: 200 - duration: 26.054458ms - - id: 55 + duration: 22.923081ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -2721,8 +2233,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-gw/v1/zones/fr-par-1/gateways/5f2040c6-9037-4c64-90f8-3f0c892f98e3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/da217888-a3e2-48a1-8baa-299d55412c4c method: GET response: proto: HTTP/2.0 @@ -2730,20 +2242,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 965 + content_length: 901 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:34.636857Z","gateway_networks":[],"id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","ip":{"address":"51.15.250.58","created_at":"2025-01-27T09:16:34.617828Z","gateway_id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","id":"957c6ee5-045a-4e71-a101-fd9a0dcf722f","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"58-250-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:34.617828Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:50.887997Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:32:46.673584Z","gateway_networks":[],"id":"da217888-a3e2-48a1-8baa-299d55412c4c","ipv4":{"address":"163.172.156.222","created_at":"2025-03-21T14:32:46.652577Z","gateway_id":"da217888-a3e2-48a1-8baa-299d55412c4c","id":"03fa65fc-80c9-4316-9e28-74a47d29e742","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"222-156-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:32:46.652577Z","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-03-21T14:33:03.617619Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "965" + - "901" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:17:12 GMT + - Fri, 21 Mar 2025 14:33:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2751,11 +2263,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fd28ba57-d936-496d-abe0-45bde198fd4f + - 5afc8856-8ba5-4071-a21c-a633bc09e960 status: 200 OK code: 200 - duration: 25.684875ms - - id: 56 + duration: 30.855228ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -2772,8 +2284,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/e1a63ac5-e9ab-4946-ae0b-7f7b4b93eba7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/405123cd-d3bf-4407-8036-14afc0988e82 method: DELETE response: proto: HTTP/2.0 @@ -2790,9 +2302,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:17:12 GMT + - Fri, 21 Mar 2025 14:33:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2800,11 +2312,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6fa61c6e-a007-4708-9b7c-aa553a0eccf4 + - 43c1f161-4965-44e5-99be-758cded148f7 status: 204 No Content code: 204 - duration: 50.485458ms - - id: 57 + duration: 74.039214ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -2819,8 +2331,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-gw/v1/zones/fr-par-1/gateways/5f2040c6-9037-4c64-90f8-3f0c892f98e3?cleanup_dhcp=false + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/da217888-a3e2-48a1-8baa-299d55412c4c?delete_ip=false method: DELETE response: proto: HTTP/2.0 @@ -2828,18 +2340,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 902 uncompressed: false - body: "" + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:32:46.673584Z","gateway_networks":[],"id":"da217888-a3e2-48a1-8baa-299d55412c4c","ipv4":{"address":"163.172.156.222","created_at":"2025-03-21T14:32:46.652577Z","gateway_id":"da217888-a3e2-48a1-8baa-299d55412c4c","id":"03fa65fc-80c9-4316-9e28-74a47d29e742","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"222-156-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:32:46.652577Z","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-03-21T14:33:22.563821Z","version":"0.7.3","zone":"fr-par-1"}' headers: + Content-Length: + - "902" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:17:12 GMT + - Fri, 21 Mar 2025 14:33:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2847,11 +2361,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bc608969-ec32-478d-b489-d6d4e433493b - status: 204 No Content - code: 204 - duration: 46.718917ms - - id: 58 + - a8295435-0c43-4c89-aa03-a22c5a850f9e + status: 200 OK + code: 200 + duration: 72.415912ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -2866,8 +2380,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-gw/v1/zones/fr-par-1/gateways/5f2040c6-9037-4c64-90f8-3f0c892f98e3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/da217888-a3e2-48a1-8baa-299d55412c4c method: GET response: proto: HTTP/2.0 @@ -2877,7 +2391,7 @@ interactions: trailer: {} content_length: 128 uncompressed: false - body: '{"message":"resource is not found","resource":"gateway","resource_id":"5f2040c6-9037-4c64-90f8-3f0c892f98e3","type":"not_found"}' + body: '{"message":"resource is not found","resource":"gateway","resource_id":"da217888-a3e2-48a1-8baa-299d55412c4c","type":"not_found"}' headers: Content-Length: - "128" @@ -2886,9 +2400,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:17:12 GMT + - Fri, 21 Mar 2025 14:33:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2896,11 +2410,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed961ac9-92cc-4058-b364-55bfaeeaaf91 + - a7be86b4-0563-42c3-98a8-0214266c4eb2 status: 404 Not Found code: 404 - duration: 25.841042ms - - id: 59 + duration: 34.576345ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -2915,8 +2429,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/3a41e5bb-a7bd-4996-855c-0d284ee89412 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2651d313-2c8b-443c-9498-e36462e9fbab method: DELETE response: proto: HTTP/2.0 @@ -2933,9 +2447,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:17:13 GMT + - Fri, 21 Mar 2025 14:33:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2943,11 +2457,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dc6d47df-78c9-441c-8fc6-6123fce8703b + - cea663ee-6329-4b87-a445-b4bb36d83121 status: 204 No Content code: 204 - duration: 1.124994292s - - id: 60 + duration: 1.290098608s + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -2962,8 +2476,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/a614824d-f3c0-4289-a77c-04960986c3ec + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/1688de78-bb56-41a5-a65a-10213e2db026 method: DELETE response: proto: HTTP/2.0 @@ -2980,9 +2494,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:17:13 GMT + - Fri, 21 Mar 2025 14:33:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2990,11 +2504,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 16f1988e-dde0-491f-be3a-ee0a3790a72e + - af81799e-d422-4ad1-9309-153b9750ef5f status: 204 No Content code: 204 - duration: 86.814375ms - - id: 61 + duration: 105.715281ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -3009,8 +2523,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-gw/v1/zones/fr-par-1/gateway-networks/ba9d9f6b-41a7-4414-97b2-fda03388cf13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/8be0649e-5f8e-46c0-8567-e62244eb5986 method: GET response: proto: HTTP/2.0 @@ -3020,7 +2534,7 @@ interactions: trailer: {} content_length: 136 uncompressed: false - body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"ba9d9f6b-41a7-4414-97b2-fda03388cf13","type":"not_found"}' + body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"8be0649e-5f8e-46c0-8567-e62244eb5986","type":"not_found"}' headers: Content-Length: - "136" @@ -3029,9 +2543,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:17:13 GMT + - Fri, 21 Mar 2025 14:33:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3039,11 +2553,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bec8b546-d525-4568-8de5-4f8ab4b139ec + - 579446b8-f234-4a7a-abe1-26c032825c3c status: 404 Not Found code: 404 - duration: 23.674917ms - - id: 62 + duration: 21.023776ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -3058,8 +2572,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/e1a63ac5-e9ab-4946-ae0b-7f7b4b93eba7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/405123cd-d3bf-4407-8036-14afc0988e82 method: GET response: proto: HTTP/2.0 @@ -3069,7 +2583,7 @@ interactions: trailer: {} content_length: 123 uncompressed: false - body: '{"message":"resource is not found","resource":"ip","resource_id":"e1a63ac5-e9ab-4946-ae0b-7f7b4b93eba7","type":"not_found"}' + body: '{"message":"resource is not found","resource":"ip","resource_id":"405123cd-d3bf-4407-8036-14afc0988e82","type":"not_found"}' headers: Content-Length: - "123" @@ -3078,9 +2592,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:17:13 GMT + - Fri, 21 Mar 2025 14:33:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3088,7 +2602,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 52040147-d1ee-44a7-805b-38a1c5efa044 + - ef798ab8-dedd-4d5c-8232-a31905ccc7fd status: 404 Not Found code: 404 - duration: 33.115625ms + duration: 25.893961ms diff --git a/internal/services/vpcgw/testdata/vpc-public-gateway-attach-to-ip.cassette.yaml b/internal/services/vpcgw/testdata/vpc-public-gateway-attach-to-ip.cassette.yaml index 1c76cb7f7d..69817489d3 100644 --- a/internal/services/vpcgw/testdata/vpc-public-gateway-attach-to-ip.cassette.yaml +++ b/internal/services/vpcgw/testdata/vpc-public-gateway-attach-to-ip.cassette.yaml @@ -12,14 +12,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[]}' + 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips method: POST response: proto: HTTP/2.0 @@ -27,20 +27,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 358 + content_length: 340 uncompressed: false - body: '{"address":"51.15.236.157","created_at":"2025-01-27T09:16:01.426786Z","gateway_id":null,"id":"0f4b5ed3-789e-4894-8f67-88d91d7230ac","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"157-236-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.426786Z","zone":"fr-par-1"}' + body: '{"address":"51.15.196.151","created_at":"2025-03-21T14:25:39.800127Z","id":"2472de3e-aab2-4a38-8e6c-4402296186ae","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"151-196-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:25:39.800127Z","zone":"fr-par-1"}' headers: Content-Length: - - "358" + - "340" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:01 GMT + - Fri, 21 Mar 2025 14:25:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d7616fec-852d-425a-b35f-8fddec4d2652 + - 12c79351-4e59-4991-b058-35d2d9ee04fd status: 200 OK code: 200 - duration: 652.530833ms + duration: 743.311676ms - 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-gw/v1/zones/fr-par-1/ips/0f4b5ed3-789e-4894-8f67-88d91d7230ac + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/2472de3e-aab2-4a38-8e6c-4402296186ae method: GET response: proto: HTTP/2.0 @@ -76,20 +76,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 358 + content_length: 340 uncompressed: false - body: '{"address":"51.15.236.157","created_at":"2025-01-27T09:16:01.426786Z","gateway_id":null,"id":"0f4b5ed3-789e-4894-8f67-88d91d7230ac","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"157-236-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.426786Z","zone":"fr-par-1"}' + body: '{"address":"51.15.196.151","created_at":"2025-03-21T14:25:39.800127Z","id":"2472de3e-aab2-4a38-8e6c-4402296186ae","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"151-196-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:25:39.800127Z","zone":"fr-par-1"}' headers: Content-Length: - - "358" + - "340" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:01 GMT + - Fri, 21 Mar 2025 14:25:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,29 +97,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 62f0896e-696f-4d03-9e53-f96c13bed1c2 + - abdfe01b-7236-4266-9891-cd63268340b2 status: 200 OK code: 200 - duration: 24.44125ms + duration: 28.310647ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 213 + content_length: 187 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"foobar","tags":[],"type":"VPC-GW-S","upstream_dns_servers":[],"ip_id":"0f4b5ed3-789e-4894-8f67-88d91d7230ac","enable_smtp":false,"enable_bastion":false}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"foobar","tags":[],"type":"VPC-GW-S","ip_id":"2472de3e-aab2-4a38-8e6c-4402296186ae","enable_smtp":false,"enable_bastion":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-gw/v1/zones/fr-par-1/gateways + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways method: POST response: proto: HTTP/2.0 @@ -127,20 +127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 968 + content_length: 882 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:01.536106Z","gateway_networks":[],"id":"6f5bfd85-5cf7-40d6-8db5-8eb9baf8ec03","ip":{"address":"51.15.236.157","created_at":"2025-01-27T09:16:01.426786Z","gateway_id":"6f5bfd85-5cf7-40d6-8db5-8eb9baf8ec03","id":"0f4b5ed3-789e-4894-8f67-88d91d7230ac","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"157-236-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.426786Z","zone":"fr-par-1"},"ip_mobility_enabled":false,"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:01.536106Z","upstream_dns_servers":[],"version":null,"zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:25:39.924358Z","gateway_networks":[],"id":"aca9527a-59ed-453f-998a-2a75e3f7d883","ipv4":{"address":"51.15.196.151","created_at":"2025-03-21T14:25:39.800127Z","gateway_id":"aca9527a-59ed-453f-998a-2a75e3f7d883","id":"2472de3e-aab2-4a38-8e6c-4402296186ae","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"151-196-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:25:39.800127Z","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-03-21T14:25:39.924358Z","zone":"fr-par-1"}' headers: Content-Length: - - "968" + - "882" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:01 GMT + - Fri, 21 Mar 2025 14:25:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -148,10 +148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 663c8598-cbe0-438e-b7fb-affcf578485d + - 08c83e6e-2dcc-4bee-8af2-f940af3c6f60 status: 200 OK code: 200 - duration: 107.87275ms + duration: 90.242357ms - id: 3 request: proto: HTTP/1.1 @@ -167,8 +167,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/6f5bfd85-5cf7-40d6-8db5-8eb9baf8ec03 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/aca9527a-59ed-453f-998a-2a75e3f7d883 method: GET response: proto: HTTP/2.0 @@ -176,20 +176,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 968 + content_length: 900 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:01.536106Z","gateway_networks":[],"id":"6f5bfd85-5cf7-40d6-8db5-8eb9baf8ec03","ip":{"address":"51.15.236.157","created_at":"2025-01-27T09:16:01.426786Z","gateway_id":"6f5bfd85-5cf7-40d6-8db5-8eb9baf8ec03","id":"0f4b5ed3-789e-4894-8f67-88d91d7230ac","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"157-236-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.426786Z","zone":"fr-par-1"},"ip_mobility_enabled":false,"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:01.536106Z","upstream_dns_servers":[],"version":null,"zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:25:39.924358Z","gateway_networks":[],"id":"aca9527a-59ed-453f-998a-2a75e3f7d883","ipv4":{"address":"51.15.196.151","created_at":"2025-03-21T14:25:39.800127Z","gateway_id":"aca9527a-59ed-453f-998a-2a75e3f7d883","id":"2472de3e-aab2-4a38-8e6c-4402296186ae","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"151-196-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:25:39.800127Z","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-03-21T14:25:39.971640Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "968" + - "900" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:01 GMT + - Fri, 21 Mar 2025 14:25:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,10 +197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 50b14d9e-eca7-4288-8948-bbf587668644 + - 427d2937-9da7-4912-9c24-37cce769dbfa status: 200 OK code: 200 - duration: 36.906834ms + duration: 27.403207ms - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/6f5bfd85-5cf7-40d6-8db5-8eb9baf8ec03 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/aca9527a-59ed-453f-998a-2a75e3f7d883 method: GET response: proto: HTTP/2.0 @@ -225,20 +225,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 967 + content_length: 897 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:01.536106Z","gateway_networks":[],"id":"6f5bfd85-5cf7-40d6-8db5-8eb9baf8ec03","ip":{"address":"51.15.236.157","created_at":"2025-01-27T09:16:01.426786Z","gateway_id":"6f5bfd85-5cf7-40d6-8db5-8eb9baf8ec03","id":"0f4b5ed3-789e-4894-8f67-88d91d7230ac","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"157-236-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.426786Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:06.266354Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:25:39.924358Z","gateway_networks":[],"id":"aca9527a-59ed-453f-998a-2a75e3f7d883","ipv4":{"address":"51.15.196.151","created_at":"2025-03-21T14:25:39.800127Z","gateway_id":"aca9527a-59ed-453f-998a-2a75e3f7d883","id":"2472de3e-aab2-4a38-8e6c-4402296186ae","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"151-196-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:25:39.800127Z","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-03-21T14:25:44.726113Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "967" + - "897" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:06 GMT + - Fri, 21 Mar 2025 14:25:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -246,10 +246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c79ad19-dc04-44c6-8527-4d530de712ce + - 5b1f0143-91a9-4549-8a35-6d71f6e61ea5 status: 200 OK code: 200 - duration: 36.602ms + duration: 39.033231ms - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/6f5bfd85-5cf7-40d6-8db5-8eb9baf8ec03 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/aca9527a-59ed-453f-998a-2a75e3f7d883 method: GET response: proto: HTTP/2.0 @@ -274,20 +274,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 967 + content_length: 897 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:01.536106Z","gateway_networks":[],"id":"6f5bfd85-5cf7-40d6-8db5-8eb9baf8ec03","ip":{"address":"51.15.236.157","created_at":"2025-01-27T09:16:01.426786Z","gateway_id":"6f5bfd85-5cf7-40d6-8db5-8eb9baf8ec03","id":"0f4b5ed3-789e-4894-8f67-88d91d7230ac","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"157-236-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.426786Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:06.266354Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:25:39.924358Z","gateway_networks":[],"id":"aca9527a-59ed-453f-998a-2a75e3f7d883","ipv4":{"address":"51.15.196.151","created_at":"2025-03-21T14:25:39.800127Z","gateway_id":"aca9527a-59ed-453f-998a-2a75e3f7d883","id":"2472de3e-aab2-4a38-8e6c-4402296186ae","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"151-196-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:25:39.800127Z","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-03-21T14:25:44.726113Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "967" + - "897" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:06 GMT + - Fri, 21 Mar 2025 14:25:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -295,10 +295,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d40e1461-db60-4ec3-8e88-412985ba0408 + - 56b51329-e5d9-4366-b0ef-28618b8d1ee1 status: 200 OK code: 200 - duration: 31.354625ms + duration: 32.746435ms - 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-gw/v1/zones/fr-par-1/ips/0f4b5ed3-789e-4894-8f67-88d91d7230ac + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/2472de3e-aab2-4a38-8e6c-4402296186ae method: GET response: proto: HTTP/2.0 @@ -325,7 +325,7 @@ interactions: trailer: {} content_length: 392 uncompressed: false - body: '{"address":"51.15.236.157","created_at":"2025-01-27T09:16:01.426786Z","gateway_id":"6f5bfd85-5cf7-40d6-8db5-8eb9baf8ec03","id":"0f4b5ed3-789e-4894-8f67-88d91d7230ac","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"157-236-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.426786Z","zone":"fr-par-1"}' + body: '{"address":"51.15.196.151","created_at":"2025-03-21T14:25:39.800127Z","gateway_id":"aca9527a-59ed-453f-998a-2a75e3f7d883","id":"2472de3e-aab2-4a38-8e6c-4402296186ae","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"151-196-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:25:39.800127Z","zone":"fr-par-1"}' headers: Content-Length: - "392" @@ -334,9 +334,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:06 GMT + - Fri, 21 Mar 2025 14:25:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -344,10 +344,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 355a0ea4-e54c-45ce-b5c7-5e17077a4833 + - ab7ca6a4-97a6-4ee1-93b3-86baa0705043 status: 200 OK code: 200 - duration: 22.648458ms + duration: 24.623057ms - 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-gw/v1/zones/fr-par-1/gateways/6f5bfd85-5cf7-40d6-8db5-8eb9baf8ec03 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/aca9527a-59ed-453f-998a-2a75e3f7d883 method: GET response: proto: HTTP/2.0 @@ -372,20 +372,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 967 + content_length: 897 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:01.536106Z","gateway_networks":[],"id":"6f5bfd85-5cf7-40d6-8db5-8eb9baf8ec03","ip":{"address":"51.15.236.157","created_at":"2025-01-27T09:16:01.426786Z","gateway_id":"6f5bfd85-5cf7-40d6-8db5-8eb9baf8ec03","id":"0f4b5ed3-789e-4894-8f67-88d91d7230ac","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"157-236-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.426786Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:06.266354Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:25:39.924358Z","gateway_networks":[],"id":"aca9527a-59ed-453f-998a-2a75e3f7d883","ipv4":{"address":"51.15.196.151","created_at":"2025-03-21T14:25:39.800127Z","gateway_id":"aca9527a-59ed-453f-998a-2a75e3f7d883","id":"2472de3e-aab2-4a38-8e6c-4402296186ae","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"151-196-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:25:39.800127Z","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-03-21T14:25:44.726113Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "967" + - "897" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:06 GMT + - Fri, 21 Mar 2025 14:25:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -393,10 +393,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5277a39a-8875-4a76-bb97-58ea91109b9a + - c45ca8e8-1cd7-454f-b039-51bd88aad1b2 status: 200 OK code: 200 - duration: 24.473042ms + duration: 28.773844ms - 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-gw/v1/zones/fr-par-1/ips/0f4b5ed3-789e-4894-8f67-88d91d7230ac + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/2472de3e-aab2-4a38-8e6c-4402296186ae method: GET response: proto: HTTP/2.0 @@ -423,7 +423,7 @@ interactions: trailer: {} content_length: 392 uncompressed: false - body: '{"address":"51.15.236.157","created_at":"2025-01-27T09:16:01.426786Z","gateway_id":"6f5bfd85-5cf7-40d6-8db5-8eb9baf8ec03","id":"0f4b5ed3-789e-4894-8f67-88d91d7230ac","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"157-236-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.426786Z","zone":"fr-par-1"}' + body: '{"address":"51.15.196.151","created_at":"2025-03-21T14:25:39.800127Z","gateway_id":"aca9527a-59ed-453f-998a-2a75e3f7d883","id":"2472de3e-aab2-4a38-8e6c-4402296186ae","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"151-196-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:25:39.800127Z","zone":"fr-par-1"}' headers: Content-Length: - "392" @@ -432,9 +432,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:07 GMT + - Fri, 21 Mar 2025 14:25:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -442,10 +442,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 16a86f67-2280-440d-a7b0-a3a4ec1f0498 + - 78b07adb-5f2e-46a0-aa06-8f81653c2a06 status: 200 OK code: 200 - duration: 23.883959ms + duration: 18.775057ms - 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-gw/v1/zones/fr-par-1/gateways/6f5bfd85-5cf7-40d6-8db5-8eb9baf8ec03 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/aca9527a-59ed-453f-998a-2a75e3f7d883 method: GET response: proto: HTTP/2.0 @@ -470,20 +470,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 967 + content_length: 897 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:01.536106Z","gateway_networks":[],"id":"6f5bfd85-5cf7-40d6-8db5-8eb9baf8ec03","ip":{"address":"51.15.236.157","created_at":"2025-01-27T09:16:01.426786Z","gateway_id":"6f5bfd85-5cf7-40d6-8db5-8eb9baf8ec03","id":"0f4b5ed3-789e-4894-8f67-88d91d7230ac","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"157-236-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.426786Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:06.266354Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:25:39.924358Z","gateway_networks":[],"id":"aca9527a-59ed-453f-998a-2a75e3f7d883","ipv4":{"address":"51.15.196.151","created_at":"2025-03-21T14:25:39.800127Z","gateway_id":"aca9527a-59ed-453f-998a-2a75e3f7d883","id":"2472de3e-aab2-4a38-8e6c-4402296186ae","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"151-196-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:25:39.800127Z","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-03-21T14:25:44.726113Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "967" + - "897" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:07 GMT + - Fri, 21 Mar 2025 14:25:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -491,10 +491,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5eaea0b7-b950-4775-a04e-beaa9bced78c + - a71cfb7a-1d78-4efc-85b6-c901f34e05b7 status: 200 OK code: 200 - duration: 28.287958ms + duration: 67.840331ms - id: 10 request: proto: HTTP/1.1 @@ -510,8 +510,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/6f5bfd85-5cf7-40d6-8db5-8eb9baf8ec03 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/aca9527a-59ed-453f-998a-2a75e3f7d883 method: GET response: proto: HTTP/2.0 @@ -519,20 +519,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 967 + content_length: 897 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:01.536106Z","gateway_networks":[],"id":"6f5bfd85-5cf7-40d6-8db5-8eb9baf8ec03","ip":{"address":"51.15.236.157","created_at":"2025-01-27T09:16:01.426786Z","gateway_id":"6f5bfd85-5cf7-40d6-8db5-8eb9baf8ec03","id":"0f4b5ed3-789e-4894-8f67-88d91d7230ac","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"157-236-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.426786Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:06.266354Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:25:39.924358Z","gateway_networks":[],"id":"aca9527a-59ed-453f-998a-2a75e3f7d883","ipv4":{"address":"51.15.196.151","created_at":"2025-03-21T14:25:39.800127Z","gateway_id":"aca9527a-59ed-453f-998a-2a75e3f7d883","id":"2472de3e-aab2-4a38-8e6c-4402296186ae","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"151-196-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:25:39.800127Z","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-03-21T14:25:44.726113Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "967" + - "897" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:08 GMT + - Fri, 21 Mar 2025 14:25:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -540,10 +540,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e65fe173-bd13-422a-84ed-a7475c1a9c82 + - 645f01ef-29d3-46cf-bbbd-23700285706a status: 200 OK code: 200 - duration: 31.239292ms + duration: 33.418206ms - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/6f5bfd85-5cf7-40d6-8db5-8eb9baf8ec03?cleanup_dhcp=false + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/aca9527a-59ed-453f-998a-2a75e3f7d883?delete_ip=false method: DELETE response: proto: HTTP/2.0 @@ -568,67 +568,20 @@ interactions: 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, 27 Jan 2025 09:16:08 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: - - 11199a90-f486-4036-9bb8-8d125e2736f5 - status: 204 No Content - code: 204 - duration: 69.209125ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/6f5bfd85-5cf7-40d6-8db5-8eb9baf8ec03 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 968 + content_length: 898 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:01.536106Z","gateway_networks":[],"id":"6f5bfd85-5cf7-40d6-8db5-8eb9baf8ec03","ip":{"address":"51.15.236.157","created_at":"2025-01-27T09:16:01.426786Z","gateway_id":"6f5bfd85-5cf7-40d6-8db5-8eb9baf8ec03","id":"0f4b5ed3-789e-4894-8f67-88d91d7230ac","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"157-236-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.426786Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"deleting","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:08.657724Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:25:39.924358Z","gateway_networks":[],"id":"aca9527a-59ed-453f-998a-2a75e3f7d883","ipv4":{"address":"51.15.196.151","created_at":"2025-03-21T14:25:39.800127Z","gateway_id":"aca9527a-59ed-453f-998a-2a75e3f7d883","id":"2472de3e-aab2-4a38-8e6c-4402296186ae","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"151-196-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:25:39.800127Z","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-03-21T14:25:46.448661Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "968" + - "898" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:08 GMT + - Fri, 21 Mar 2025 14:25:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -636,11 +589,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bfed4249-f563-4c6c-beb5-1db22b39b29d + - c1dd1c86-6ec8-4bbe-9351-88e31e4aa550 status: 200 OK code: 200 - duration: 31.6265ms - - id: 13 + duration: 54.841241ms + - id: 12 request: proto: HTTP/1.1 proto_major: 1 @@ -655,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-gw/v1/zones/fr-par-1/gateways/6f5bfd85-5cf7-40d6-8db5-8eb9baf8ec03 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/aca9527a-59ed-453f-998a-2a75e3f7d883 method: GET response: proto: HTTP/2.0 @@ -666,7 +619,7 @@ interactions: trailer: {} content_length: 128 uncompressed: false - body: '{"message":"resource is not found","resource":"gateway","resource_id":"6f5bfd85-5cf7-40d6-8db5-8eb9baf8ec03","type":"not_found"}' + body: '{"message":"resource is not found","resource":"gateway","resource_id":"aca9527a-59ed-453f-998a-2a75e3f7d883","type":"not_found"}' headers: Content-Length: - "128" @@ -675,9 +628,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:13 GMT + - Fri, 21 Mar 2025 14:25:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -685,11 +638,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1f9fa479-fc12-40ad-b92b-f4147299547c + - 1c22835c-047f-492a-acc5-48e6304eb52b status: 404 Not Found code: 404 - duration: 25.713792ms - - id: 14 + duration: 20.98316ms + - id: 13 request: proto: HTTP/1.1 proto_major: 1 @@ -704,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-gw/v1/zones/fr-par-1/ips/0f4b5ed3-789e-4894-8f67-88d91d7230ac + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/2472de3e-aab2-4a38-8e6c-4402296186ae method: DELETE response: proto: HTTP/2.0 @@ -722,9 +675,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:14 GMT + - Fri, 21 Mar 2025 14:25:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -732,11 +685,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dd5320ca-96bd-4de4-bf20-481243be1baa + - 13f34376-c3a4-478b-94ba-30cc0f924b5d status: 204 No Content code: 204 - duration: 630.344208ms - - id: 15 + duration: 692.50826ms + - id: 14 request: proto: HTTP/1.1 proto_major: 1 @@ -751,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-gw/v1/zones/fr-par-1/ips/0f4b5ed3-789e-4894-8f67-88d91d7230ac + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/2472de3e-aab2-4a38-8e6c-4402296186ae method: GET response: proto: HTTP/2.0 @@ -762,7 +715,7 @@ interactions: trailer: {} content_length: 123 uncompressed: false - body: '{"message":"resource is not found","resource":"ip","resource_id":"0f4b5ed3-789e-4894-8f67-88d91d7230ac","type":"not_found"}' + body: '{"message":"resource is not found","resource":"ip","resource_id":"2472de3e-aab2-4a38-8e6c-4402296186ae","type":"not_found"}' headers: Content-Length: - "123" @@ -771,9 +724,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:14 GMT + - Fri, 21 Mar 2025 14:25:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -781,11 +734,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2efd1303-87fb-4a15-92d1-834347e058c6 + - 4b68b583-b31e-4ed2-8c29-5f1794e87c61 status: 404 Not Found code: 404 - duration: 23.874958ms - - id: 16 + duration: 26.463232ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -800,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-gw/v1/zones/fr-par-1/gateways/6f5bfd85-5cf7-40d6-8db5-8eb9baf8ec03 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/aca9527a-59ed-453f-998a-2a75e3f7d883 method: GET response: proto: HTTP/2.0 @@ -811,7 +764,7 @@ interactions: trailer: {} content_length: 128 uncompressed: false - body: '{"message":"resource is not found","resource":"gateway","resource_id":"6f5bfd85-5cf7-40d6-8db5-8eb9baf8ec03","type":"not_found"}' + body: '{"message":"resource is not found","resource":"gateway","resource_id":"aca9527a-59ed-453f-998a-2a75e3f7d883","type":"not_found"}' headers: Content-Length: - "128" @@ -820,9 +773,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:14 GMT + - Fri, 21 Mar 2025 14:25:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -830,7 +783,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fd902da5-7ba3-4bfa-b284-5cc4a4d873a7 + - 881fd49e-d01c-4564-8627-40215727ee73 status: 404 Not Found code: 404 - duration: 25.827417ms + duration: 21.084552ms diff --git a/internal/services/vpcgw/testdata/vpc-public-gateway-basic.cassette.yaml b/internal/services/vpcgw/testdata/vpc-public-gateway-basic.cassette.yaml index 28ae120f4e..0ee6f68db0 100644 --- a/internal/services/vpcgw/testdata/vpc-public-gateway-basic.cassette.yaml +++ b/internal/services/vpcgw/testdata/vpc-public-gateway-basic.cassette.yaml @@ -6,20 +6,20 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 179 + content_length: 153 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"public-gateway-test","tags":[],"type":"VPC-GW-S","upstream_dns_servers":[],"enable_smtp":false,"enable_bastion":false}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"public-gateway-test","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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways method: POST response: proto: HTTP/2.0 @@ -27,20 +27,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 983 + content_length: 895 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:08.273139Z","gateway_networks":[],"id":"f96d8ce4-7bad-445e-84c8-eac17bf2eac2","ip":{"address":"51.158.108.123","created_at":"2025-01-27T09:16:08.253061Z","gateway_id":"f96d8ce4-7bad-445e-84c8-eac17bf2eac2","id":"f1d0ff0d-64d9-455e-8a68-1b428e875984","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"123-108-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:08.253061Z","zone":"fr-par-1"},"ip_mobility_enabled":false,"is_legacy":false,"name":"public-gateway-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:08.273139Z","upstream_dns_servers":[],"version":null,"zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:24:26.163982Z","gateway_networks":[],"id":"5d9af39f-fd2b-45fc-990e-d0de60835123","ipv4":{"address":"51.15.211.120","created_at":"2025-03-21T14:24:26.148718Z","gateway_id":"5d9af39f-fd2b-45fc-990e-d0de60835123","id":"9cd9efa4-1e84-41a4-9ac7-2fe7952d055d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"120-211-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:24:26.148718Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-test","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-03-21T14:24:26.163982Z","zone":"fr-par-1"}' headers: Content-Length: - - "983" + - "895" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:08 GMT + - Fri, 21 Mar 2025 14:24:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c3d1354e-e6b5-4470-a050-30a04725a217 + - 603511fe-67e8-4127-8ea1-91b649dc73e7 status: 200 OK code: 200 - duration: 812.439666ms + duration: 731.721681ms - 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-gw/v1/zones/fr-par-1/gateways/f96d8ce4-7bad-445e-84c8-eac17bf2eac2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/5d9af39f-fd2b-45fc-990e-d0de60835123 method: GET response: proto: HTTP/2.0 @@ -76,20 +76,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 983 + content_length: 913 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:08.273139Z","gateway_networks":[],"id":"f96d8ce4-7bad-445e-84c8-eac17bf2eac2","ip":{"address":"51.158.108.123","created_at":"2025-01-27T09:16:08.253061Z","gateway_id":"f96d8ce4-7bad-445e-84c8-eac17bf2eac2","id":"f1d0ff0d-64d9-455e-8a68-1b428e875984","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"123-108-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:08.253061Z","zone":"fr-par-1"},"ip_mobility_enabled":false,"is_legacy":false,"name":"public-gateway-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:08.273139Z","upstream_dns_servers":[],"version":null,"zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:24:26.163982Z","gateway_networks":[],"id":"5d9af39f-fd2b-45fc-990e-d0de60835123","ipv4":{"address":"51.15.211.120","created_at":"2025-03-21T14:24:26.148718Z","gateway_id":"5d9af39f-fd2b-45fc-990e-d0de60835123","id":"9cd9efa4-1e84-41a4-9ac7-2fe7952d055d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"120-211-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:24:26.148718Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-test","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-03-21T14:24:26.203979Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "983" + - "913" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:08 GMT + - Fri, 21 Mar 2025 14:24:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 37d4676d-1f69-423b-af26-3e99f18eacaf + - 896ea416-1f6c-4059-b3e8-339c8ce0f9fe status: 200 OK code: 200 - duration: 29.422625ms + duration: 29.030466ms - 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-gw/v1/zones/fr-par-1/gateways/f96d8ce4-7bad-445e-84c8-eac17bf2eac2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/5d9af39f-fd2b-45fc-990e-d0de60835123 method: GET response: proto: HTTP/2.0 @@ -125,20 +125,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 986 + content_length: 910 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:08.273139Z","gateway_networks":[],"id":"f96d8ce4-7bad-445e-84c8-eac17bf2eac2","ip":{"address":"51.158.108.123","created_at":"2025-01-27T09:16:08.253061Z","gateway_id":"f96d8ce4-7bad-445e-84c8-eac17bf2eac2","id":"f1d0ff0d-64d9-455e-8a68-1b428e875984","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"123-108-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:08.253061Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:13.334907Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:24:26.163982Z","gateway_networks":[],"id":"5d9af39f-fd2b-45fc-990e-d0de60835123","ipv4":{"address":"51.15.211.120","created_at":"2025-03-21T14:24:26.148718Z","gateway_id":"5d9af39f-fd2b-45fc-990e-d0de60835123","id":"9cd9efa4-1e84-41a4-9ac7-2fe7952d055d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"120-211-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:24:26.148718Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-test","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-03-21T14:24:31.249234Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "986" + - "910" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:13 GMT + - Fri, 21 Mar 2025 14:24:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,10 +146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1874f3cd-85a9-46e1-929b-bb3f3c6c0242 + - 1daaa722-b430-42c4-ac53-6dcf925e758f status: 200 OK code: 200 - duration: 25.279167ms + duration: 34.465392ms - 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-gw/v1/zones/fr-par-1/gateways/f96d8ce4-7bad-445e-84c8-eac17bf2eac2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/5d9af39f-fd2b-45fc-990e-d0de60835123 method: GET response: proto: HTTP/2.0 @@ -174,20 +174,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 982 + content_length: 910 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:08.273139Z","gateway_networks":[],"id":"f96d8ce4-7bad-445e-84c8-eac17bf2eac2","ip":{"address":"51.158.108.123","created_at":"2025-01-27T09:16:08.253061Z","gateway_id":"f96d8ce4-7bad-445e-84c8-eac17bf2eac2","id":"f1d0ff0d-64d9-455e-8a68-1b428e875984","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"123-108-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:08.253061Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:13.435723Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:24:26.163982Z","gateway_networks":[],"id":"5d9af39f-fd2b-45fc-990e-d0de60835123","ipv4":{"address":"51.15.211.120","created_at":"2025-03-21T14:24:26.148718Z","gateway_id":"5d9af39f-fd2b-45fc-990e-d0de60835123","id":"9cd9efa4-1e84-41a4-9ac7-2fe7952d055d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"120-211-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:24:26.148718Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-test","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-03-21T14:24:31.249234Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "982" + - "910" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:18 GMT + - Fri, 21 Mar 2025 14:24:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -195,10 +195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 92dd78b8-bf10-4b5c-9090-dd010c159951 + - 044df9a0-c195-40de-81c7-53f5b38a0567 status: 200 OK code: 200 - duration: 22.578958ms + duration: 25.172161ms - 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-gw/v1/zones/fr-par-1/gateways/f96d8ce4-7bad-445e-84c8-eac17bf2eac2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/5d9af39f-fd2b-45fc-990e-d0de60835123 method: GET response: proto: HTTP/2.0 @@ -223,20 +223,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 982 + content_length: 910 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:08.273139Z","gateway_networks":[],"id":"f96d8ce4-7bad-445e-84c8-eac17bf2eac2","ip":{"address":"51.158.108.123","created_at":"2025-01-27T09:16:08.253061Z","gateway_id":"f96d8ce4-7bad-445e-84c8-eac17bf2eac2","id":"f1d0ff0d-64d9-455e-8a68-1b428e875984","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"123-108-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:08.253061Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:13.435723Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:24:26.163982Z","gateway_networks":[],"id":"5d9af39f-fd2b-45fc-990e-d0de60835123","ipv4":{"address":"51.15.211.120","created_at":"2025-03-21T14:24:26.148718Z","gateway_id":"5d9af39f-fd2b-45fc-990e-d0de60835123","id":"9cd9efa4-1e84-41a4-9ac7-2fe7952d055d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"120-211-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:24:26.148718Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-test","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-03-21T14:24:31.249234Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "982" + - "910" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:18 GMT + - Fri, 21 Mar 2025 14:24:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -244,10 +244,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1fda3cc6-3fed-499a-a105-a79edc60e0d2 + - 158bce1e-6971-43bb-9346-cbb7049ac33b status: 200 OK code: 200 - duration: 28.283584ms + duration: 36.976246ms - id: 5 request: proto: HTTP/1.1 @@ -263,8 +263,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-gw/v1/zones/fr-par-1/gateways/f96d8ce4-7bad-445e-84c8-eac17bf2eac2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/5d9af39f-fd2b-45fc-990e-d0de60835123 method: GET response: proto: HTTP/2.0 @@ -272,20 +272,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 982 + content_length: 910 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:08.273139Z","gateway_networks":[],"id":"f96d8ce4-7bad-445e-84c8-eac17bf2eac2","ip":{"address":"51.158.108.123","created_at":"2025-01-27T09:16:08.253061Z","gateway_id":"f96d8ce4-7bad-445e-84c8-eac17bf2eac2","id":"f1d0ff0d-64d9-455e-8a68-1b428e875984","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"123-108-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:08.253061Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:13.435723Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:24:26.163982Z","gateway_networks":[],"id":"5d9af39f-fd2b-45fc-990e-d0de60835123","ipv4":{"address":"51.15.211.120","created_at":"2025-03-21T14:24:26.148718Z","gateway_id":"5d9af39f-fd2b-45fc-990e-d0de60835123","id":"9cd9efa4-1e84-41a4-9ac7-2fe7952d055d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"120-211-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:24:26.148718Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-test","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-03-21T14:24:31.249234Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "982" + - "910" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:19 GMT + - Fri, 21 Mar 2025 14:24:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -293,10 +293,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1e46f8a1-d65f-445e-b7f5-9af9951f6f20 + - 8c87f5b8-c285-465e-93df-0b4fb252291d status: 200 OK code: 200 - duration: 563.563209ms + duration: 27.291678ms - 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-gw/v1/zones/fr-par-1/gateways/f96d8ce4-7bad-445e-84c8-eac17bf2eac2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/5d9af39f-fd2b-45fc-990e-d0de60835123 method: GET response: proto: HTTP/2.0 @@ -321,20 +321,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 982 + content_length: 910 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:08.273139Z","gateway_networks":[],"id":"f96d8ce4-7bad-445e-84c8-eac17bf2eac2","ip":{"address":"51.158.108.123","created_at":"2025-01-27T09:16:08.253061Z","gateway_id":"f96d8ce4-7bad-445e-84c8-eac17bf2eac2","id":"f1d0ff0d-64d9-455e-8a68-1b428e875984","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"123-108-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:08.253061Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:13.435723Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:24:26.163982Z","gateway_networks":[],"id":"5d9af39f-fd2b-45fc-990e-d0de60835123","ipv4":{"address":"51.15.211.120","created_at":"2025-03-21T14:24:26.148718Z","gateway_id":"5d9af39f-fd2b-45fc-990e-d0de60835123","id":"9cd9efa4-1e84-41a4-9ac7-2fe7952d055d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"120-211-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:24:26.148718Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-test","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-03-21T14:24:31.249234Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "982" + - "910" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:19 GMT + - Fri, 21 Mar 2025 14:24:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -342,10 +342,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c61540e9-cb75-4735-a0e9-cd1a1d56e19c + - 5c16d01a-6b24-4b56-bc27-bbfe7eaa37c3 status: 200 OK code: 200 - duration: 26.464959ms + duration: 34.703304ms - 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-gw/v1/zones/fr-par-1/gateways/f96d8ce4-7bad-445e-84c8-eac17bf2eac2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/5d9af39f-fd2b-45fc-990e-d0de60835123 method: GET response: proto: HTTP/2.0 @@ -370,20 +370,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 982 + content_length: 910 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:08.273139Z","gateway_networks":[],"id":"f96d8ce4-7bad-445e-84c8-eac17bf2eac2","ip":{"address":"51.158.108.123","created_at":"2025-01-27T09:16:08.253061Z","gateway_id":"f96d8ce4-7bad-445e-84c8-eac17bf2eac2","id":"f1d0ff0d-64d9-455e-8a68-1b428e875984","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"123-108-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:08.253061Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:13.435723Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:24:26.163982Z","gateway_networks":[],"id":"5d9af39f-fd2b-45fc-990e-d0de60835123","ipv4":{"address":"51.15.211.120","created_at":"2025-03-21T14:24:26.148718Z","gateway_id":"5d9af39f-fd2b-45fc-990e-d0de60835123","id":"9cd9efa4-1e84-41a4-9ac7-2fe7952d055d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"120-211-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:24:26.148718Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-test","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-03-21T14:24:31.249234Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "982" + - "910" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:20 GMT + - Fri, 21 Mar 2025 14:24:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -391,48 +391,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d6541c10-8ee2-4a1a-89d4-04de2cf1386f + - feeb7934-5b4b-4474-a920-637c71243280 status: 200 OK code: 200 - duration: 27.576292ms + duration: 27.599489ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 57 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"public-gateway-test-new","tags":["tag0","tag1"]}' 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-gw/v1/zones/fr-par-1/gateways/f96d8ce4-7bad-445e-84c8-eac17bf2eac2 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/5d9af39f-fd2b-45fc-990e-d0de60835123 + method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 982 + content_length: 927 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:08.273139Z","gateway_networks":[],"id":"f96d8ce4-7bad-445e-84c8-eac17bf2eac2","ip":{"address":"51.158.108.123","created_at":"2025-01-27T09:16:08.253061Z","gateway_id":"f96d8ce4-7bad-445e-84c8-eac17bf2eac2","id":"f1d0ff0d-64d9-455e-8a68-1b428e875984","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"123-108-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:08.253061Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:13.435723Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:24:26.163982Z","gateway_networks":[],"id":"5d9af39f-fd2b-45fc-990e-d0de60835123","ipv4":{"address":"51.15.211.120","created_at":"2025-03-21T14:24:26.148718Z","gateway_id":"5d9af39f-fd2b-45fc-990e-d0de60835123","id":"9cd9efa4-1e84-41a4-9ac7-2fe7952d055d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"120-211-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:24:26.148718Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-test-new","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":["tag0","tag1"],"type":"VPC-GW-S","updated_at":"2025-03-21T14:24:33.038429Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "982" + - "927" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:22 GMT + - Fri, 21 Mar 2025 14:24:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -440,50 +442,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df9284be-1d25-4e0d-a573-03dbd9124ed3 + - 50e1abc2-ff83-4557-8f7b-d4a2fd517591 status: 200 OK code: 200 - duration: 29.699917ms + duration: 45.317355ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 102 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"public-gateway-test-new","tags":["tag0","tag1"],"upstream_dns_servers":["1.2.3.4","4.3.2.1"]}' + 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-gw/v1/zones/fr-par-1/gateways/f96d8ce4-7bad-445e-84c8-eac17bf2eac2 - method: PATCH + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/5d9af39f-fd2b-45fc-990e-d0de60835123 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1018 + content_length: 927 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:08.273139Z","gateway_networks":[],"id":"f96d8ce4-7bad-445e-84c8-eac17bf2eac2","ip":{"address":"51.158.108.123","created_at":"2025-01-27T09:16:08.253061Z","gateway_id":"f96d8ce4-7bad-445e-84c8-eac17bf2eac2","id":"f1d0ff0d-64d9-455e-8a68-1b428e875984","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"123-108-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:08.253061Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-test-new","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":["tag0","tag1"],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:22.205075Z","upstream_dns_servers":["1.2.3.4","4.3.2.1"],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:24:26.163982Z","gateway_networks":[],"id":"5d9af39f-fd2b-45fc-990e-d0de60835123","ipv4":{"address":"51.15.211.120","created_at":"2025-03-21T14:24:26.148718Z","gateway_id":"5d9af39f-fd2b-45fc-990e-d0de60835123","id":"9cd9efa4-1e84-41a4-9ac7-2fe7952d055d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"120-211-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:24:26.148718Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-test-new","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":["tag0","tag1"],"type":"VPC-GW-S","updated_at":"2025-03-21T14:24:33.038429Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "1018" + - "927" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:22 GMT + - Fri, 21 Mar 2025 14:24:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -491,10 +491,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 887d5410-b83c-41eb-960e-68f783a44b4c + - 8b7f1170-9973-40b2-8c46-6303d0933d54 status: 200 OK code: 200 - duration: 49.644834ms + duration: 28.736203ms - id: 10 request: proto: HTTP/1.1 @@ -510,8 +510,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/f96d8ce4-7bad-445e-84c8-eac17bf2eac2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/5d9af39f-fd2b-45fc-990e-d0de60835123 method: GET response: proto: HTTP/2.0 @@ -519,20 +519,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1022 + content_length: 927 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:08.273139Z","gateway_networks":[],"id":"f96d8ce4-7bad-445e-84c8-eac17bf2eac2","ip":{"address":"51.158.108.123","created_at":"2025-01-27T09:16:08.253061Z","gateway_id":"f96d8ce4-7bad-445e-84c8-eac17bf2eac2","id":"f1d0ff0d-64d9-455e-8a68-1b428e875984","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"123-108-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:08.253061Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-test-new","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":["tag0","tag1"],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:22.231477Z","upstream_dns_servers":["1.2.3.4","4.3.2.1"],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:24:26.163982Z","gateway_networks":[],"id":"5d9af39f-fd2b-45fc-990e-d0de60835123","ipv4":{"address":"51.15.211.120","created_at":"2025-03-21T14:24:26.148718Z","gateway_id":"5d9af39f-fd2b-45fc-990e-d0de60835123","id":"9cd9efa4-1e84-41a4-9ac7-2fe7952d055d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"120-211-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:24:26.148718Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-test-new","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":["tag0","tag1"],"type":"VPC-GW-S","updated_at":"2025-03-21T14:24:33.038429Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "1022" + - "927" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:22 GMT + - Fri, 21 Mar 2025 14:24:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -540,10 +540,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 218f22bb-0279-4f27-930b-c2e5897653af + - 5537daff-77f3-4a9b-aae5-4a914b78f7e5 status: 200 OK code: 200 - duration: 24.695209ms + duration: 31.33145ms - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/f96d8ce4-7bad-445e-84c8-eac17bf2eac2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/5d9af39f-fd2b-45fc-990e-d0de60835123 method: GET response: proto: HTTP/2.0 @@ -568,20 +568,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1018 + content_length: 927 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:08.273139Z","gateway_networks":[],"id":"f96d8ce4-7bad-445e-84c8-eac17bf2eac2","ip":{"address":"51.158.108.123","created_at":"2025-01-27T09:16:08.253061Z","gateway_id":"f96d8ce4-7bad-445e-84c8-eac17bf2eac2","id":"f1d0ff0d-64d9-455e-8a68-1b428e875984","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"123-108-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:08.253061Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-test-new","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":["tag0","tag1"],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:25.511741Z","upstream_dns_servers":["1.2.3.4","4.3.2.1"],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:24:26.163982Z","gateway_networks":[],"id":"5d9af39f-fd2b-45fc-990e-d0de60835123","ipv4":{"address":"51.15.211.120","created_at":"2025-03-21T14:24:26.148718Z","gateway_id":"5d9af39f-fd2b-45fc-990e-d0de60835123","id":"9cd9efa4-1e84-41a4-9ac7-2fe7952d055d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"120-211-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:24:26.148718Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-test-new","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":["tag0","tag1"],"type":"VPC-GW-S","updated_at":"2025-03-21T14:24:33.038429Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "1018" + - "927" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:27 GMT + - Fri, 21 Mar 2025 14:24:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -589,10 +589,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d5a44450-80a2-4219-9a31-6b129bac6d67 + - 03170bd1-22f6-4658-b2e0-cf9f7c3aa435 status: 200 OK code: 200 - duration: 29.355166ms + duration: 27.853714ms - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/f96d8ce4-7bad-445e-84c8-eac17bf2eac2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/5d9af39f-fd2b-45fc-990e-d0de60835123 method: GET response: proto: HTTP/2.0 @@ -617,20 +617,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1018 + content_length: 927 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:08.273139Z","gateway_networks":[],"id":"f96d8ce4-7bad-445e-84c8-eac17bf2eac2","ip":{"address":"51.158.108.123","created_at":"2025-01-27T09:16:08.253061Z","gateway_id":"f96d8ce4-7bad-445e-84c8-eac17bf2eac2","id":"f1d0ff0d-64d9-455e-8a68-1b428e875984","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"123-108-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:08.253061Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-test-new","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":["tag0","tag1"],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:25.511741Z","upstream_dns_servers":["1.2.3.4","4.3.2.1"],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:24:26.163982Z","gateway_networks":[],"id":"5d9af39f-fd2b-45fc-990e-d0de60835123","ipv4":{"address":"51.15.211.120","created_at":"2025-03-21T14:24:26.148718Z","gateway_id":"5d9af39f-fd2b-45fc-990e-d0de60835123","id":"9cd9efa4-1e84-41a4-9ac7-2fe7952d055d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"120-211-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:24:26.148718Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-test-new","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":["tag0","tag1"],"type":"VPC-GW-S","updated_at":"2025-03-21T14:24:33.038429Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "1018" + - "927" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:27 GMT + - Fri, 21 Mar 2025 14:24:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -638,10 +638,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 738f48ad-9627-4bee-a82d-bf0d439e2511 + - af486a9a-05c0-48a2-bbce-da114fe14cc3 status: 200 OK code: 200 - duration: 27.281042ms + duration: 36.436226ms - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/f96d8ce4-7bad-445e-84c8-eac17bf2eac2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/5d9af39f-fd2b-45fc-990e-d0de60835123 method: GET response: proto: HTTP/2.0 @@ -666,20 +666,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1018 + content_length: 927 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:08.273139Z","gateway_networks":[],"id":"f96d8ce4-7bad-445e-84c8-eac17bf2eac2","ip":{"address":"51.158.108.123","created_at":"2025-01-27T09:16:08.253061Z","gateway_id":"f96d8ce4-7bad-445e-84c8-eac17bf2eac2","id":"f1d0ff0d-64d9-455e-8a68-1b428e875984","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"123-108-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:08.253061Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-test-new","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":["tag0","tag1"],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:25.511741Z","upstream_dns_servers":["1.2.3.4","4.3.2.1"],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:24:26.163982Z","gateway_networks":[],"id":"5d9af39f-fd2b-45fc-990e-d0de60835123","ipv4":{"address":"51.15.211.120","created_at":"2025-03-21T14:24:26.148718Z","gateway_id":"5d9af39f-fd2b-45fc-990e-d0de60835123","id":"9cd9efa4-1e84-41a4-9ac7-2fe7952d055d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"120-211-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:24:26.148718Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-test-new","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":["tag0","tag1"],"type":"VPC-GW-S","updated_at":"2025-03-21T14:24:33.038429Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "1018" + - "927" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:27 GMT + - Fri, 21 Mar 2025 14:24:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -687,10 +687,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9377c7b1-0a1f-4af6-bc0d-308ec2e69220 + - 185eeb0b-885f-4c35-a03b-1f8a5aed97ba status: 200 OK code: 200 - duration: 33.082041ms + duration: 26.265856ms - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/f96d8ce4-7bad-445e-84c8-eac17bf2eac2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/5d9af39f-fd2b-45fc-990e-d0de60835123 method: GET response: proto: HTTP/2.0 @@ -715,20 +715,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1018 + content_length: 927 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:08.273139Z","gateway_networks":[],"id":"f96d8ce4-7bad-445e-84c8-eac17bf2eac2","ip":{"address":"51.158.108.123","created_at":"2025-01-27T09:16:08.253061Z","gateway_id":"f96d8ce4-7bad-445e-84c8-eac17bf2eac2","id":"f1d0ff0d-64d9-455e-8a68-1b428e875984","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"123-108-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:08.253061Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-test-new","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":["tag0","tag1"],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:25.511741Z","upstream_dns_servers":["1.2.3.4","4.3.2.1"],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:24:26.163982Z","gateway_networks":[],"id":"5d9af39f-fd2b-45fc-990e-d0de60835123","ipv4":{"address":"51.15.211.120","created_at":"2025-03-21T14:24:26.148718Z","gateway_id":"5d9af39f-fd2b-45fc-990e-d0de60835123","id":"9cd9efa4-1e84-41a4-9ac7-2fe7952d055d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"120-211-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:24:26.148718Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-test-new","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":["tag0","tag1"],"type":"VPC-GW-S","updated_at":"2025-03-21T14:24:33.038429Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "1018" + - "927" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:27 GMT + - Fri, 21 Mar 2025 14:24:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -736,10 +736,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 58f568a7-451d-42d1-913c-1fd8ec8e2e5d + - 8317d929-98d7-4ae4-9ef8-19c3849aa5b4 status: 200 OK code: 200 - duration: 33.367375ms + duration: 27.212282ms - id: 15 request: proto: HTTP/1.1 @@ -755,8 +755,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/f96d8ce4-7bad-445e-84c8-eac17bf2eac2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/5d9af39f-fd2b-45fc-990e-d0de60835123 method: GET response: proto: HTTP/2.0 @@ -764,20 +764,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1018 + content_length: 927 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:08.273139Z","gateway_networks":[],"id":"f96d8ce4-7bad-445e-84c8-eac17bf2eac2","ip":{"address":"51.158.108.123","created_at":"2025-01-27T09:16:08.253061Z","gateway_id":"f96d8ce4-7bad-445e-84c8-eac17bf2eac2","id":"f1d0ff0d-64d9-455e-8a68-1b428e875984","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"123-108-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:08.253061Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-test-new","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":["tag0","tag1"],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:25.511741Z","upstream_dns_servers":["1.2.3.4","4.3.2.1"],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:24:26.163982Z","gateway_networks":[],"id":"5d9af39f-fd2b-45fc-990e-d0de60835123","ipv4":{"address":"51.15.211.120","created_at":"2025-03-21T14:24:26.148718Z","gateway_id":"5d9af39f-fd2b-45fc-990e-d0de60835123","id":"9cd9efa4-1e84-41a4-9ac7-2fe7952d055d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"120-211-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:24:26.148718Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-test-new","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":["tag0","tag1"],"type":"VPC-GW-S","updated_at":"2025-03-21T14:24:33.038429Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "1018" + - "927" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:27 GMT + - Fri, 21 Mar 2025 14:24:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -785,10 +785,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a6aecfd5-c205-429e-854e-139257612cf1 + - b27ef2c3-420c-48f5-87eb-279e0b00de55 status: 200 OK code: 200 - duration: 26.209166ms + duration: 42.922869ms - id: 16 request: proto: HTTP/1.1 @@ -804,8 +804,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/f96d8ce4-7bad-445e-84c8-eac17bf2eac2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/5d9af39f-fd2b-45fc-990e-d0de60835123 method: GET response: proto: HTTP/2.0 @@ -813,20 +813,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1018 + content_length: 927 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:08.273139Z","gateway_networks":[],"id":"f96d8ce4-7bad-445e-84c8-eac17bf2eac2","ip":{"address":"51.158.108.123","created_at":"2025-01-27T09:16:08.253061Z","gateway_id":"f96d8ce4-7bad-445e-84c8-eac17bf2eac2","id":"f1d0ff0d-64d9-455e-8a68-1b428e875984","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"123-108-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:08.253061Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-test-new","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":["tag0","tag1"],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:25.511741Z","upstream_dns_servers":["1.2.3.4","4.3.2.1"],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:24:26.163982Z","gateway_networks":[],"id":"5d9af39f-fd2b-45fc-990e-d0de60835123","ipv4":{"address":"51.15.211.120","created_at":"2025-03-21T14:24:26.148718Z","gateway_id":"5d9af39f-fd2b-45fc-990e-d0de60835123","id":"9cd9efa4-1e84-41a4-9ac7-2fe7952d055d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"120-211-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:24:26.148718Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-test-new","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":["tag0","tag1"],"type":"VPC-GW-S","updated_at":"2025-03-21T14:24:33.038429Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "1018" + - "927" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:28 GMT + - Fri, 21 Mar 2025 14:24:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -834,10 +834,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 08a34b52-f36c-4a88-9341-280892a2ec53 + - b497326d-7ac3-43e6-8bf8-ad98f6d56f4b status: 200 OK code: 200 - duration: 77.10475ms + duration: 26.765868ms - id: 17 request: proto: HTTP/1.1 @@ -853,8 +853,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/f96d8ce4-7bad-445e-84c8-eac17bf2eac2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/5d9af39f-fd2b-45fc-990e-d0de60835123 method: GET response: proto: HTTP/2.0 @@ -862,20 +862,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1018 + content_length: 927 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:08.273139Z","gateway_networks":[],"id":"f96d8ce4-7bad-445e-84c8-eac17bf2eac2","ip":{"address":"51.158.108.123","created_at":"2025-01-27T09:16:08.253061Z","gateway_id":"f96d8ce4-7bad-445e-84c8-eac17bf2eac2","id":"f1d0ff0d-64d9-455e-8a68-1b428e875984","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"123-108-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:08.253061Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-test-new","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":["tag0","tag1"],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:25.511741Z","upstream_dns_servers":["1.2.3.4","4.3.2.1"],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:24:26.163982Z","gateway_networks":[],"id":"5d9af39f-fd2b-45fc-990e-d0de60835123","ipv4":{"address":"51.15.211.120","created_at":"2025-03-21T14:24:26.148718Z","gateway_id":"5d9af39f-fd2b-45fc-990e-d0de60835123","id":"9cd9efa4-1e84-41a4-9ac7-2fe7952d055d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"120-211-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:24:26.148718Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-test-new","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":["tag0","tag1"],"type":"VPC-GW-S","updated_at":"2025-03-21T14:24:33.038429Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "1018" + - "927" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:29 GMT + - Fri, 21 Mar 2025 14:24:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -883,10 +883,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 56b1fd7e-f9eb-4247-9523-7576e078249a + - 5ff06183-71d5-43c1-8e72-8196de95257f status: 200 OK code: 200 - duration: 28.666916ms + duration: 30.050938ms - id: 18 request: proto: HTTP/1.1 @@ -902,8 +902,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/f96d8ce4-7bad-445e-84c8-eac17bf2eac2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/5d9af39f-fd2b-45fc-990e-d0de60835123 method: GET response: proto: HTTP/2.0 @@ -911,20 +911,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1018 + content_length: 927 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:08.273139Z","gateway_networks":[],"id":"f96d8ce4-7bad-445e-84c8-eac17bf2eac2","ip":{"address":"51.158.108.123","created_at":"2025-01-27T09:16:08.253061Z","gateway_id":"f96d8ce4-7bad-445e-84c8-eac17bf2eac2","id":"f1d0ff0d-64d9-455e-8a68-1b428e875984","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"123-108-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:08.253061Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-test-new","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":["tag0","tag1"],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:25.511741Z","upstream_dns_servers":["1.2.3.4","4.3.2.1"],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:24:26.163982Z","gateway_networks":[],"id":"5d9af39f-fd2b-45fc-990e-d0de60835123","ipv4":{"address":"51.15.211.120","created_at":"2025-03-21T14:24:26.148718Z","gateway_id":"5d9af39f-fd2b-45fc-990e-d0de60835123","id":"9cd9efa4-1e84-41a4-9ac7-2fe7952d055d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"120-211-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:24:26.148718Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-test-new","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":["tag0","tag1"],"type":"VPC-GW-S","updated_at":"2025-03-21T14:24:33.038429Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "1018" + - "927" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:30 GMT + - Fri, 21 Mar 2025 14:24:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -932,10 +932,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 33f73a50-e7df-45b2-8095-188252a1933b + - 3bfb0380-cddd-4942-b77b-f06851066c48 status: 200 OK code: 200 - duration: 30.218333ms + duration: 32.885593ms - id: 19 request: proto: HTTP/1.1 @@ -951,8 +951,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/f96d8ce4-7bad-445e-84c8-eac17bf2eac2?cleanup_dhcp=false + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/5d9af39f-fd2b-45fc-990e-d0de60835123?delete_ip=false method: DELETE response: proto: HTTP/2.0 @@ -960,18 +960,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 928 uncompressed: false - body: "" + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:24:26.163982Z","gateway_networks":[],"id":"5d9af39f-fd2b-45fc-990e-d0de60835123","ipv4":{"address":"51.15.211.120","created_at":"2025-03-21T14:24:26.148718Z","gateway_id":"5d9af39f-fd2b-45fc-990e-d0de60835123","id":"9cd9efa4-1e84-41a4-9ac7-2fe7952d055d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"120-211-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:24:26.148718Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-test-new","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"deleting","tags":["tag0","tag1"],"type":"VPC-GW-S","updated_at":"2025-03-21T14:24:35.177367Z","version":"0.7.3","zone":"fr-par-1"}' headers: + Content-Length: + - "928" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:30 GMT + - Fri, 21 Mar 2025 14:24:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -979,10 +981,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7c6fde98-f336-4a7a-ba47-930e998907cc - status: 204 No Content - code: 204 - duration: 59.610875ms + - 58e1fd5e-5cd7-4894-9cda-5ecc6ba52796 + status: 200 OK + code: 200 + duration: 47.570479ms - 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-gw/v1/zones/fr-par-1/gateways/f96d8ce4-7bad-445e-84c8-eac17bf2eac2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/5d9af39f-fd2b-45fc-990e-d0de60835123 method: GET response: proto: HTTP/2.0 @@ -1009,7 +1011,7 @@ interactions: trailer: {} content_length: 128 uncompressed: false - body: '{"message":"resource is not found","resource":"gateway","resource_id":"f96d8ce4-7bad-445e-84c8-eac17bf2eac2","type":"not_found"}' + body: '{"message":"resource is not found","resource":"gateway","resource_id":"5d9af39f-fd2b-45fc-990e-d0de60835123","type":"not_found"}' headers: Content-Length: - "128" @@ -1018,9 +1020,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:30 GMT + - Fri, 21 Mar 2025 14:24:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1028,29 +1030,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - efef2bfd-b2af-4df2-8364-2db134b880d0 + - 4d9d185e-a15c-4190-b3f9-87ee1f0514fc status: 404 Not Found code: 404 - duration: 22.40625ms + duration: 23.155378ms - id: 21 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 184 + content_length: 158 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"public-gateway-test-zone","tags":[],"type":"VPC-GW-S","upstream_dns_servers":[],"enable_smtp":false,"enable_bastion":false}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"public-gateway-test-zone","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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways method: POST response: proto: HTTP/2.0 @@ -1058,20 +1060,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 986 + content_length: 896 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:31.057789Z","gateway_networks":[],"id":"a2ffa150-908c-4527-a658-f7d23471b1f1","ip":{"address":"51.158.186.43","created_at":"2025-01-27T09:16:31.022485Z","gateway_id":"a2ffa150-908c-4527-a658-f7d23471b1f1","id":"7d6fdd29-87dc-4b7b-bf0b-bf803ce3e553","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"43-186-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:31.022485Z","zone":"nl-ams-1"},"ip_mobility_enabled":false,"is_legacy":false,"name":"public-gateway-test-zone","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-01-27T09:16:31.057789Z","upstream_dns_servers":[],"version":null,"zone":"nl-ams-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:24:36.133321Z","gateway_networks":[],"id":"adba0474-28f2-44e0-8c14-ee5bc421a48e","ipv4":{"address":"51.15.98.45","created_at":"2025-03-21T14:24:36.110330Z","gateway_id":"adba0474-28f2-44e0-8c14-ee5bc421a48e","id":"2e544f95-9661-4026-b97f-73ccffab3f2b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"45-98-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:24:36.110330Z","zone":"nl-ams-1"},"is_legacy":false,"name":"public-gateway-test-zone","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-03-21T14:24:36.133321Z","zone":"nl-ams-1"}' headers: Content-Length: - - "986" + - "896" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:31 GMT + - Fri, 21 Mar 2025 14:24:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1079,10 +1081,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a96c9725-a362-4e40-9b64-ef662996b40b + - c4e655ff-8593-4a49-99d2-d4077ac32215 status: 200 OK code: 200 - duration: 849.072375ms + duration: 931.664423ms - id: 22 request: proto: HTTP/1.1 @@ -1098,8 +1100,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-gw/v1/zones/nl-ams-1/gateways/a2ffa150-908c-4527-a658-f7d23471b1f1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/adba0474-28f2-44e0-8c14-ee5bc421a48e method: GET response: proto: HTTP/2.0 @@ -1107,20 +1109,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 988 + content_length: 914 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:31.057789Z","gateway_networks":[],"id":"a2ffa150-908c-4527-a658-f7d23471b1f1","ip":{"address":"51.158.186.43","created_at":"2025-01-27T09:16:31.022485Z","gateway_id":"a2ffa150-908c-4527-a658-f7d23471b1f1","id":"7d6fdd29-87dc-4b7b-bf0b-bf803ce3e553","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"43-186-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:31.022485Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-test-zone","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-01-27T09:16:31.109616Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:24:36.133321Z","gateway_networks":[],"id":"adba0474-28f2-44e0-8c14-ee5bc421a48e","ipv4":{"address":"51.15.98.45","created_at":"2025-03-21T14:24:36.110330Z","gateway_id":"adba0474-28f2-44e0-8c14-ee5bc421a48e","id":"2e544f95-9661-4026-b97f-73ccffab3f2b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"45-98-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:24:36.110330Z","zone":"nl-ams-1"},"is_legacy":false,"name":"public-gateway-test-zone","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-03-21T14:24:36.189435Z","version":"0.7.3","zone":"nl-ams-1"}' headers: Content-Length: - - "988" + - "914" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:31 GMT + - Fri, 21 Mar 2025 14:24:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1128,10 +1130,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6ca4176f-66e1-40f3-bdfc-c644b7d7c9ce + - 14239b29-8f5e-4760-9b56-4ea1890164e2 status: 200 OK code: 200 - duration: 39.787584ms + duration: 77.186098ms - id: 23 request: proto: HTTP/1.1 @@ -1147,8 +1149,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-gw/v1/zones/nl-ams-1/gateways/a2ffa150-908c-4527-a658-f7d23471b1f1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/adba0474-28f2-44e0-8c14-ee5bc421a48e method: GET response: proto: HTTP/2.0 @@ -1156,20 +1158,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 985 + content_length: 911 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:31.057789Z","gateway_networks":[],"id":"a2ffa150-908c-4527-a658-f7d23471b1f1","ip":{"address":"51.158.186.43","created_at":"2025-01-27T09:16:31.022485Z","gateway_id":"a2ffa150-908c-4527-a658-f7d23471b1f1","id":"7d6fdd29-87dc-4b7b-bf0b-bf803ce3e553","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"43-186-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:31.022485Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-test-zone","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-01-27T09:16:35.940795Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:24:36.133321Z","gateway_networks":[],"id":"adba0474-28f2-44e0-8c14-ee5bc421a48e","ipv4":{"address":"51.15.98.45","created_at":"2025-03-21T14:24:36.110330Z","gateway_id":"adba0474-28f2-44e0-8c14-ee5bc421a48e","id":"2e544f95-9661-4026-b97f-73ccffab3f2b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"45-98-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:24:36.110330Z","zone":"nl-ams-1"},"is_legacy":false,"name":"public-gateway-test-zone","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-03-21T14:24:41.295814Z","version":"0.7.3","zone":"nl-ams-1"}' headers: Content-Length: - - "985" + - "911" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:36 GMT + - Fri, 21 Mar 2025 14:24:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1177,10 +1179,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 72673f34-79cd-4de5-b0c7-6941e7a98d01 + - b8f62792-778b-4b97-ba1f-e5bab2658e94 status: 200 OK code: 200 - duration: 43.209625ms + duration: 72.886381ms - id: 24 request: proto: HTTP/1.1 @@ -1196,8 +1198,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-gw/v1/zones/nl-ams-1/gateways/a2ffa150-908c-4527-a658-f7d23471b1f1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/adba0474-28f2-44e0-8c14-ee5bc421a48e method: GET response: proto: HTTP/2.0 @@ -1205,20 +1207,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 985 + content_length: 915 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:31.057789Z","gateway_networks":[],"id":"a2ffa150-908c-4527-a658-f7d23471b1f1","ip":{"address":"51.158.186.43","created_at":"2025-01-27T09:16:31.022485Z","gateway_id":"a2ffa150-908c-4527-a658-f7d23471b1f1","id":"7d6fdd29-87dc-4b7b-bf0b-bf803ce3e553","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"43-186-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:31.022485Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-test-zone","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-01-27T09:16:35.940795Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:24:36.133321Z","gateway_networks":[],"id":"adba0474-28f2-44e0-8c14-ee5bc421a48e","ipv4":{"address":"51.15.98.45","created_at":"2025-03-21T14:24:36.110330Z","gateway_id":"adba0474-28f2-44e0-8c14-ee5bc421a48e","id":"2e544f95-9661-4026-b97f-73ccffab3f2b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"45-98-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:24:36.110330Z","zone":"nl-ams-1"},"is_legacy":false,"name":"public-gateway-test-zone","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-03-21T14:24:41.310989Z","version":"0.7.3","zone":"nl-ams-1"}' headers: Content-Length: - - "985" + - "915" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:36 GMT + - Fri, 21 Mar 2025 14:24:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1226,10 +1228,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8d4e4490-b026-44f4-9522-13d9163d1f73 + - dc6e16f4-1660-4795-8cde-66b849fc73c5 status: 200 OK code: 200 - duration: 40.747208ms + duration: 38.016214ms - id: 25 request: proto: HTTP/1.1 @@ -1245,8 +1247,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/a2ffa150-908c-4527-a658-f7d23471b1f1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/adba0474-28f2-44e0-8c14-ee5bc421a48e method: GET response: proto: HTTP/2.0 @@ -1254,20 +1256,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 985 + content_length: 911 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:31.057789Z","gateway_networks":[],"id":"a2ffa150-908c-4527-a658-f7d23471b1f1","ip":{"address":"51.158.186.43","created_at":"2025-01-27T09:16:31.022485Z","gateway_id":"a2ffa150-908c-4527-a658-f7d23471b1f1","id":"7d6fdd29-87dc-4b7b-bf0b-bf803ce3e553","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"43-186-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:31.022485Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-test-zone","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-01-27T09:16:35.940795Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:24:36.133321Z","gateway_networks":[],"id":"adba0474-28f2-44e0-8c14-ee5bc421a48e","ipv4":{"address":"51.15.98.45","created_at":"2025-03-21T14:24:36.110330Z","gateway_id":"adba0474-28f2-44e0-8c14-ee5bc421a48e","id":"2e544f95-9661-4026-b97f-73ccffab3f2b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"45-98-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:24:36.110330Z","zone":"nl-ams-1"},"is_legacy":false,"name":"public-gateway-test-zone","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-03-21T14:24:41.387779Z","version":"0.7.3","zone":"nl-ams-1"}' headers: Content-Length: - - "985" + - "911" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:36 GMT + - Fri, 21 Mar 2025 14:24:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1275,10 +1277,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 33af9fd4-e7e1-43ed-adfb-f5a7833ffba5 + - f6213227-c00f-4350-bf65-a49778b53ec2 status: 200 OK code: 200 - duration: 40.488458ms + duration: 39.652243ms - id: 26 request: proto: HTTP/1.1 @@ -1294,8 +1296,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/a2ffa150-908c-4527-a658-f7d23471b1f1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/adba0474-28f2-44e0-8c14-ee5bc421a48e method: GET response: proto: HTTP/2.0 @@ -1303,20 +1305,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 985 + content_length: 911 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:31.057789Z","gateway_networks":[],"id":"a2ffa150-908c-4527-a658-f7d23471b1f1","ip":{"address":"51.158.186.43","created_at":"2025-01-27T09:16:31.022485Z","gateway_id":"a2ffa150-908c-4527-a658-f7d23471b1f1","id":"7d6fdd29-87dc-4b7b-bf0b-bf803ce3e553","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"43-186-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:31.022485Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-test-zone","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-01-27T09:16:35.940795Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:24:36.133321Z","gateway_networks":[],"id":"adba0474-28f2-44e0-8c14-ee5bc421a48e","ipv4":{"address":"51.15.98.45","created_at":"2025-03-21T14:24:36.110330Z","gateway_id":"adba0474-28f2-44e0-8c14-ee5bc421a48e","id":"2e544f95-9661-4026-b97f-73ccffab3f2b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"45-98-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:24:36.110330Z","zone":"nl-ams-1"},"is_legacy":false,"name":"public-gateway-test-zone","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-03-21T14:24:41.387779Z","version":"0.7.3","zone":"nl-ams-1"}' headers: Content-Length: - - "985" + - "911" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:37 GMT + - Fri, 21 Mar 2025 14:24:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1324,10 +1326,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5ae3797f-db5e-4fc2-91a6-a13da43f693e + - 4b2fdc6f-4bea-41d9-ad9a-3b6618c1a61d status: 200 OK code: 200 - duration: 48.50425ms + duration: 42.838523ms - id: 27 request: proto: HTTP/1.1 @@ -1343,8 +1345,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/a2ffa150-908c-4527-a658-f7d23471b1f1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/adba0474-28f2-44e0-8c14-ee5bc421a48e method: GET response: proto: HTTP/2.0 @@ -1352,20 +1354,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 985 + content_length: 911 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:31.057789Z","gateway_networks":[],"id":"a2ffa150-908c-4527-a658-f7d23471b1f1","ip":{"address":"51.158.186.43","created_at":"2025-01-27T09:16:31.022485Z","gateway_id":"a2ffa150-908c-4527-a658-f7d23471b1f1","id":"7d6fdd29-87dc-4b7b-bf0b-bf803ce3e553","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"43-186-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:31.022485Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-test-zone","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-01-27T09:16:35.940795Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:24:36.133321Z","gateway_networks":[],"id":"adba0474-28f2-44e0-8c14-ee5bc421a48e","ipv4":{"address":"51.15.98.45","created_at":"2025-03-21T14:24:36.110330Z","gateway_id":"adba0474-28f2-44e0-8c14-ee5bc421a48e","id":"2e544f95-9661-4026-b97f-73ccffab3f2b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"45-98-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:24:36.110330Z","zone":"nl-ams-1"},"is_legacy":false,"name":"public-gateway-test-zone","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-03-21T14:24:41.387779Z","version":"0.7.3","zone":"nl-ams-1"}' headers: Content-Length: - - "985" + - "911" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:37 GMT + - Fri, 21 Mar 2025 14:24:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1373,10 +1375,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 896a8983-d2e5-4582-811a-36ad6105914b + - c0141cc0-2fa3-496a-b111-19b33782c74a status: 200 OK code: 200 - duration: 45.030292ms + duration: 60.457388ms - id: 28 request: proto: HTTP/1.1 @@ -1392,8 +1394,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/a2ffa150-908c-4527-a658-f7d23471b1f1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/adba0474-28f2-44e0-8c14-ee5bc421a48e method: GET response: proto: HTTP/2.0 @@ -1401,20 +1403,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 985 + content_length: 911 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:31.057789Z","gateway_networks":[],"id":"a2ffa150-908c-4527-a658-f7d23471b1f1","ip":{"address":"51.158.186.43","created_at":"2025-01-27T09:16:31.022485Z","gateway_id":"a2ffa150-908c-4527-a658-f7d23471b1f1","id":"7d6fdd29-87dc-4b7b-bf0b-bf803ce3e553","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"43-186-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:31.022485Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-test-zone","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-01-27T09:16:35.940795Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:24:36.133321Z","gateway_networks":[],"id":"adba0474-28f2-44e0-8c14-ee5bc421a48e","ipv4":{"address":"51.15.98.45","created_at":"2025-03-21T14:24:36.110330Z","gateway_id":"adba0474-28f2-44e0-8c14-ee5bc421a48e","id":"2e544f95-9661-4026-b97f-73ccffab3f2b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"45-98-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:24:36.110330Z","zone":"nl-ams-1"},"is_legacy":false,"name":"public-gateway-test-zone","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-03-21T14:24:41.387779Z","version":"0.7.3","zone":"nl-ams-1"}' headers: Content-Length: - - "985" + - "911" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:39 GMT + - Fri, 21 Mar 2025 14:24:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1422,50 +1424,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a91ea77-3d3c-4e3f-af55-5015f7d7182f + - a6d877c6-91aa-49b1-b9cf-669364ada465 status: 200 OK code: 200 - duration: 55.586625ms + duration: 43.990815ms - id: 29 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 45 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"public-gateway-test-zone-to-update"}' + 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-gw/v1/zones/nl-ams-1/gateways/a2ffa150-908c-4527-a658-f7d23471b1f1 - method: PATCH + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/adba0474-28f2-44e0-8c14-ee5bc421a48e + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 995 + content_length: 911 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:31.057789Z","gateway_networks":[],"id":"a2ffa150-908c-4527-a658-f7d23471b1f1","ip":{"address":"51.158.186.43","created_at":"2025-01-27T09:16:31.022485Z","gateway_id":"a2ffa150-908c-4527-a658-f7d23471b1f1","id":"7d6fdd29-87dc-4b7b-bf0b-bf803ce3e553","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"43-186-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:31.022485Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-test-zone-to-update","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-01-27T09:16:39.120260Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:24:36.133321Z","gateway_networks":[],"id":"adba0474-28f2-44e0-8c14-ee5bc421a48e","ipv4":{"address":"51.15.98.45","created_at":"2025-03-21T14:24:36.110330Z","gateway_id":"adba0474-28f2-44e0-8c14-ee5bc421a48e","id":"2e544f95-9661-4026-b97f-73ccffab3f2b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"45-98-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:24:36.110330Z","zone":"nl-ams-1"},"is_legacy":false,"name":"public-gateway-test-zone","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-03-21T14:24:41.387779Z","version":"0.7.3","zone":"nl-ams-1"}' headers: Content-Length: - - "995" + - "911" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:39 GMT + - Fri, 21 Mar 2025 14:24:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1473,48 +1473,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f8d39b3-0cd3-4a2c-bd50-3781a35e6b1b + - 9eb0690b-8527-4ed8-9cba-2cd6a2beff57 status: 200 OK code: 200 - duration: 58.355ms + duration: 49.54803ms - id: 30 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 45 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"public-gateway-test-zone-to-update"}' 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-gw/v1/zones/nl-ams-1/gateways/a2ffa150-908c-4527-a658-f7d23471b1f1 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/adba0474-28f2-44e0-8c14-ee5bc421a48e + method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 995 + content_length: 921 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:31.057789Z","gateway_networks":[],"id":"a2ffa150-908c-4527-a658-f7d23471b1f1","ip":{"address":"51.158.186.43","created_at":"2025-01-27T09:16:31.022485Z","gateway_id":"a2ffa150-908c-4527-a658-f7d23471b1f1","id":"7d6fdd29-87dc-4b7b-bf0b-bf803ce3e553","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"43-186-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:31.022485Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-test-zone-to-update","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-01-27T09:16:39.120260Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:24:36.133321Z","gateway_networks":[],"id":"adba0474-28f2-44e0-8c14-ee5bc421a48e","ipv4":{"address":"51.15.98.45","created_at":"2025-03-21T14:24:36.110330Z","gateway_id":"adba0474-28f2-44e0-8c14-ee5bc421a48e","id":"2e544f95-9661-4026-b97f-73ccffab3f2b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"45-98-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:24:36.110330Z","zone":"nl-ams-1"},"is_legacy":false,"name":"public-gateway-test-zone-to-update","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-03-21T14:24:48.235108Z","version":"0.7.3","zone":"nl-ams-1"}' headers: Content-Length: - - "995" + - "921" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:39 GMT + - Fri, 21 Mar 2025 14:24:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1522,10 +1524,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e8c7ce8f-d27a-4bb7-87ca-9b5711d282ba + - 72cea0cb-8954-411d-aa13-261768c64a8c status: 200 OK code: 200 - duration: 51.918ms + duration: 87.784955ms - id: 31 request: proto: HTTP/1.1 @@ -1541,8 +1543,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-gw/v1/zones/nl-ams-1/gateways/a2ffa150-908c-4527-a658-f7d23471b1f1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/adba0474-28f2-44e0-8c14-ee5bc421a48e method: GET response: proto: HTTP/2.0 @@ -1550,20 +1552,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 995 + content_length: 921 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:31.057789Z","gateway_networks":[],"id":"a2ffa150-908c-4527-a658-f7d23471b1f1","ip":{"address":"51.158.186.43","created_at":"2025-01-27T09:16:31.022485Z","gateway_id":"a2ffa150-908c-4527-a658-f7d23471b1f1","id":"7d6fdd29-87dc-4b7b-bf0b-bf803ce3e553","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"43-186-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:31.022485Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-test-zone-to-update","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-01-27T09:16:39.120260Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:24:36.133321Z","gateway_networks":[],"id":"adba0474-28f2-44e0-8c14-ee5bc421a48e","ipv4":{"address":"51.15.98.45","created_at":"2025-03-21T14:24:36.110330Z","gateway_id":"adba0474-28f2-44e0-8c14-ee5bc421a48e","id":"2e544f95-9661-4026-b97f-73ccffab3f2b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"45-98-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:24:36.110330Z","zone":"nl-ams-1"},"is_legacy":false,"name":"public-gateway-test-zone-to-update","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-03-21T14:24:48.235108Z","version":"0.7.3","zone":"nl-ams-1"}' headers: Content-Length: - - "995" + - "921" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:39 GMT + - Fri, 21 Mar 2025 14:24:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1571,10 +1573,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 06ad22e4-14fb-4d13-ae34-16c0a3ede3e5 + - e2cc06df-524d-4176-a263-c6d1612d7f5c status: 200 OK code: 200 - duration: 50.546584ms + duration: 38.282292ms - id: 32 request: proto: HTTP/1.1 @@ -1590,8 +1592,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/a2ffa150-908c-4527-a658-f7d23471b1f1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/adba0474-28f2-44e0-8c14-ee5bc421a48e method: GET response: proto: HTTP/2.0 @@ -1599,20 +1601,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 995 + content_length: 921 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:31.057789Z","gateway_networks":[],"id":"a2ffa150-908c-4527-a658-f7d23471b1f1","ip":{"address":"51.158.186.43","created_at":"2025-01-27T09:16:31.022485Z","gateway_id":"a2ffa150-908c-4527-a658-f7d23471b1f1","id":"7d6fdd29-87dc-4b7b-bf0b-bf803ce3e553","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"43-186-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:31.022485Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-test-zone-to-update","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-01-27T09:16:39.120260Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:24:36.133321Z","gateway_networks":[],"id":"adba0474-28f2-44e0-8c14-ee5bc421a48e","ipv4":{"address":"51.15.98.45","created_at":"2025-03-21T14:24:36.110330Z","gateway_id":"adba0474-28f2-44e0-8c14-ee5bc421a48e","id":"2e544f95-9661-4026-b97f-73ccffab3f2b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"45-98-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:24:36.110330Z","zone":"nl-ams-1"},"is_legacy":false,"name":"public-gateway-test-zone-to-update","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-03-21T14:24:48.235108Z","version":"0.7.3","zone":"nl-ams-1"}' headers: Content-Length: - - "995" + - "921" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:39 GMT + - Fri, 21 Mar 2025 14:24:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1620,10 +1622,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0429e3c7-9725-44e7-b3a3-18a2d36b2673 + - 3a45e46d-549a-4778-b5db-4e0a2f5e2e38 status: 200 OK code: 200 - duration: 38.880667ms + duration: 41.924431ms - id: 33 request: proto: HTTP/1.1 @@ -1639,8 +1641,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/a2ffa150-908c-4527-a658-f7d23471b1f1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/adba0474-28f2-44e0-8c14-ee5bc421a48e method: GET response: proto: HTTP/2.0 @@ -1648,20 +1650,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 995 + content_length: 921 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:31.057789Z","gateway_networks":[],"id":"a2ffa150-908c-4527-a658-f7d23471b1f1","ip":{"address":"51.158.186.43","created_at":"2025-01-27T09:16:31.022485Z","gateway_id":"a2ffa150-908c-4527-a658-f7d23471b1f1","id":"7d6fdd29-87dc-4b7b-bf0b-bf803ce3e553","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"43-186-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:31.022485Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-test-zone-to-update","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-01-27T09:16:39.120260Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:24:36.133321Z","gateway_networks":[],"id":"adba0474-28f2-44e0-8c14-ee5bc421a48e","ipv4":{"address":"51.15.98.45","created_at":"2025-03-21T14:24:36.110330Z","gateway_id":"adba0474-28f2-44e0-8c14-ee5bc421a48e","id":"2e544f95-9661-4026-b97f-73ccffab3f2b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"45-98-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:24:36.110330Z","zone":"nl-ams-1"},"is_legacy":false,"name":"public-gateway-test-zone-to-update","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-03-21T14:24:48.235108Z","version":"0.7.3","zone":"nl-ams-1"}' headers: Content-Length: - - "995" + - "921" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:39 GMT + - Fri, 21 Mar 2025 14:24:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1669,10 +1671,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 996b3530-6886-4a90-a8c3-3ceba4dc4f7a + - b9a13bac-b2a8-4bcc-8ccd-054aa3379741 status: 200 OK code: 200 - duration: 45.22ms + duration: 45.386563ms - id: 34 request: proto: HTTP/1.1 @@ -1688,8 +1690,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/a2ffa150-908c-4527-a658-f7d23471b1f1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/adba0474-28f2-44e0-8c14-ee5bc421a48e method: GET response: proto: HTTP/2.0 @@ -1697,20 +1699,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 995 + content_length: 921 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:31.057789Z","gateway_networks":[],"id":"a2ffa150-908c-4527-a658-f7d23471b1f1","ip":{"address":"51.158.186.43","created_at":"2025-01-27T09:16:31.022485Z","gateway_id":"a2ffa150-908c-4527-a658-f7d23471b1f1","id":"7d6fdd29-87dc-4b7b-bf0b-bf803ce3e553","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"43-186-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:31.022485Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-test-zone-to-update","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-01-27T09:16:39.120260Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:24:36.133321Z","gateway_networks":[],"id":"adba0474-28f2-44e0-8c14-ee5bc421a48e","ipv4":{"address":"51.15.98.45","created_at":"2025-03-21T14:24:36.110330Z","gateway_id":"adba0474-28f2-44e0-8c14-ee5bc421a48e","id":"2e544f95-9661-4026-b97f-73ccffab3f2b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"45-98-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:24:36.110330Z","zone":"nl-ams-1"},"is_legacy":false,"name":"public-gateway-test-zone-to-update","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-03-21T14:24:48.235108Z","version":"0.7.3","zone":"nl-ams-1"}' headers: Content-Length: - - "995" + - "921" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:39 GMT + - Fri, 21 Mar 2025 14:24:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1718,10 +1720,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1df729f2-2d87-4acb-b338-fe7349cb8034 + - ecc2203a-92da-4f40-9415-8eee9753c260 status: 200 OK code: 200 - duration: 41.168666ms + duration: 46.973733ms - id: 35 request: proto: HTTP/1.1 @@ -1737,8 +1739,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-gw/v1/zones/nl-ams-1/gateways/a2ffa150-908c-4527-a658-f7d23471b1f1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/adba0474-28f2-44e0-8c14-ee5bc421a48e method: GET response: proto: HTTP/2.0 @@ -1746,20 +1748,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 995 + content_length: 921 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:31.057789Z","gateway_networks":[],"id":"a2ffa150-908c-4527-a658-f7d23471b1f1","ip":{"address":"51.158.186.43","created_at":"2025-01-27T09:16:31.022485Z","gateway_id":"a2ffa150-908c-4527-a658-f7d23471b1f1","id":"7d6fdd29-87dc-4b7b-bf0b-bf803ce3e553","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"43-186-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:31.022485Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-test-zone-to-update","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-01-27T09:16:39.120260Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:24:36.133321Z","gateway_networks":[],"id":"adba0474-28f2-44e0-8c14-ee5bc421a48e","ipv4":{"address":"51.15.98.45","created_at":"2025-03-21T14:24:36.110330Z","gateway_id":"adba0474-28f2-44e0-8c14-ee5bc421a48e","id":"2e544f95-9661-4026-b97f-73ccffab3f2b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"45-98-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:24:36.110330Z","zone":"nl-ams-1"},"is_legacy":false,"name":"public-gateway-test-zone-to-update","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-03-21T14:24:48.235108Z","version":"0.7.3","zone":"nl-ams-1"}' headers: Content-Length: - - "995" + - "921" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:40 GMT + - Fri, 21 Mar 2025 14:24:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1767,10 +1769,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 565e45f7-1269-43b6-8cbb-bfbd100a0032 + - d7ace3b6-698e-4e45-8e11-37182b35e63c status: 200 OK code: 200 - duration: 42.662375ms + duration: 40.227476ms - id: 36 request: proto: HTTP/1.1 @@ -1786,8 +1788,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/a2ffa150-908c-4527-a658-f7d23471b1f1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/adba0474-28f2-44e0-8c14-ee5bc421a48e method: GET response: proto: HTTP/2.0 @@ -1795,20 +1797,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 995 + content_length: 921 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:31.057789Z","gateway_networks":[],"id":"a2ffa150-908c-4527-a658-f7d23471b1f1","ip":{"address":"51.158.186.43","created_at":"2025-01-27T09:16:31.022485Z","gateway_id":"a2ffa150-908c-4527-a658-f7d23471b1f1","id":"7d6fdd29-87dc-4b7b-bf0b-bf803ce3e553","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"43-186-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:31.022485Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-test-zone-to-update","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2025-01-27T09:16:39.120260Z","upstream_dns_servers":[],"version":"0.7.3","zone":"nl-ams-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:24:36.133321Z","gateway_networks":[],"id":"adba0474-28f2-44e0-8c14-ee5bc421a48e","ipv4":{"address":"51.15.98.45","created_at":"2025-03-21T14:24:36.110330Z","gateway_id":"adba0474-28f2-44e0-8c14-ee5bc421a48e","id":"2e544f95-9661-4026-b97f-73ccffab3f2b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"45-98-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:24:36.110330Z","zone":"nl-ams-1"},"is_legacy":false,"name":"public-gateway-test-zone-to-update","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-03-21T14:24:48.235108Z","version":"0.7.3","zone":"nl-ams-1"}' headers: Content-Length: - - "995" + - "921" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:41 GMT + - Fri, 21 Mar 2025 14:24:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1816,10 +1818,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad9e3a29-effa-43f5-8101-2cb294d21858 + - 6dcf685e-725d-4a3d-89c4-9a987435d01b status: 200 OK code: 200 - duration: 51.1965ms + duration: 45.535623ms - id: 37 request: proto: HTTP/1.1 @@ -1835,27 +1837,127 @@ interactions: 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-gw/v1/zones/nl-ams-1/gateways/a2ffa150-908c-4527-a658-f7d23471b1f1?cleanup_dhcp=false - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/adba0474-28f2-44e0-8c14-ee5bc421a48e + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} + content_length: 921 + uncompressed: false + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:24:36.133321Z","gateway_networks":[],"id":"adba0474-28f2-44e0-8c14-ee5bc421a48e","ipv4":{"address":"51.15.98.45","created_at":"2025-03-21T14:24:36.110330Z","gateway_id":"adba0474-28f2-44e0-8c14-ee5bc421a48e","id":"2e544f95-9661-4026-b97f-73ccffab3f2b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"45-98-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:24:36.110330Z","zone":"nl-ams-1"},"is_legacy":false,"name":"public-gateway-test-zone-to-update","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-03-21T14:24:48.235108Z","version":"0.7.3","zone":"nl-ams-1"}' + headers: + Content-Length: + - "921" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 21 Mar 2025 14:24:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f22f9912-7697-4f14-9119-936308bbe41e + status: 200 OK + code: 200 + duration: 36.468685ms + - 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/adba0474-28f2-44e0-8c14-ee5bc421a48e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 921 uncompressed: false + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:24:36.133321Z","gateway_networks":[],"id":"adba0474-28f2-44e0-8c14-ee5bc421a48e","ipv4":{"address":"51.15.98.45","created_at":"2025-03-21T14:24:36.110330Z","gateway_id":"adba0474-28f2-44e0-8c14-ee5bc421a48e","id":"2e544f95-9661-4026-b97f-73ccffab3f2b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"45-98-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:24:36.110330Z","zone":"nl-ams-1"},"is_legacy":false,"name":"public-gateway-test-zone-to-update","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-03-21T14:24:48.235108Z","version":"0.7.3","zone":"nl-ams-1"}' + headers: + Content-Length: + - "921" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 21 Mar 2025 14:24:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 667f7461-38e7-4132-a649-146deb140140 + status: 200 OK + code: 200 + duration: 43.717797ms + - 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/adba0474-28f2-44e0-8c14-ee5bc421a48e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 921 + uncompressed: false + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:24:36.133321Z","gateway_networks":[],"id":"adba0474-28f2-44e0-8c14-ee5bc421a48e","ipv4":{"address":"51.15.98.45","created_at":"2025-03-21T14:24:36.110330Z","gateway_id":"adba0474-28f2-44e0-8c14-ee5bc421a48e","id":"2e544f95-9661-4026-b97f-73ccffab3f2b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"45-98-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:24:36.110330Z","zone":"nl-ams-1"},"is_legacy":false,"name":"public-gateway-test-zone-to-update","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-03-21T14:24:48.235108Z","version":"0.7.3","zone":"nl-ams-1"}' + headers: + Content-Length: + - "921" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:41 GMT + - Fri, 21 Mar 2025 14:24:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1863,11 +1965,60 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 160e8045-bf55-4d53-b8a1-1807068a1670 - status: 204 No Content - code: 204 - duration: 82.668416ms - - id: 38 + - 58345fd4-4931-46eb-9fcf-26793bbdbfd3 + status: 200 OK + code: 200 + duration: 36.942312ms + - 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/adba0474-28f2-44e0-8c14-ee5bc421a48e?delete_ip=false + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 922 + uncompressed: false + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:24:36.133321Z","gateway_networks":[],"id":"adba0474-28f2-44e0-8c14-ee5bc421a48e","ipv4":{"address":"51.15.98.45","created_at":"2025-03-21T14:24:36.110330Z","gateway_id":"adba0474-28f2-44e0-8c14-ee5bc421a48e","id":"2e544f95-9661-4026-b97f-73ccffab3f2b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"45-98-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:24:36.110330Z","zone":"nl-ams-1"},"is_legacy":false,"name":"public-gateway-test-zone-to-update","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-03-21T14:24:49.839661Z","version":"0.7.3","zone":"nl-ams-1"}' + headers: + Content-Length: + - "922" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 21 Mar 2025 14:24:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8b015e96-40ba-417c-9f9c-3cebf9ffe044 + status: 200 OK + code: 200 + duration: 78.613938ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -1882,8 +2033,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-gw/v1/zones/nl-ams-1/gateways/a2ffa150-908c-4527-a658-f7d23471b1f1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/adba0474-28f2-44e0-8c14-ee5bc421a48e method: GET response: proto: HTTP/2.0 @@ -1893,7 +2044,7 @@ interactions: trailer: {} content_length: 128 uncompressed: false - body: '{"message":"resource is not found","resource":"gateway","resource_id":"a2ffa150-908c-4527-a658-f7d23471b1f1","type":"not_found"}' + body: '{"message":"resource is not found","resource":"gateway","resource_id":"adba0474-28f2-44e0-8c14-ee5bc421a48e","type":"not_found"}' headers: Content-Length: - "128" @@ -1902,9 +2053,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:41 GMT + - Fri, 21 Mar 2025 14:24:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1912,11 +2063,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c1dc2bac-6678-41db-86b3-464e52869ea4 + - 1be4b3f9-8c00-4b81-8e9e-f4d69deae5cc status: 404 Not Found code: 404 - duration: 40.073542ms - - id: 39 + duration: 34.549592ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -1931,8 +2082,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-gw/v1/zones/nl-ams-1/gateways/a2ffa150-908c-4527-a658-f7d23471b1f1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/adba0474-28f2-44e0-8c14-ee5bc421a48e method: GET response: proto: HTTP/2.0 @@ -1942,7 +2093,7 @@ interactions: trailer: {} content_length: 128 uncompressed: false - body: '{"message":"resource is not found","resource":"gateway","resource_id":"a2ffa150-908c-4527-a658-f7d23471b1f1","type":"not_found"}' + body: '{"message":"resource is not found","resource":"gateway","resource_id":"adba0474-28f2-44e0-8c14-ee5bc421a48e","type":"not_found"}' headers: Content-Length: - "128" @@ -1951,9 +2102,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:41 GMT + - Fri, 21 Mar 2025 14:24:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1961,7 +2112,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 139abd32-767c-4282-b3dc-813518e53214 + - 0e6bf101-5a67-409a-a9b9-631338e962e9 status: 404 Not Found code: 404 - duration: 43.374542ms + duration: 34.135823ms diff --git a/internal/services/vpcgw/testdata/vpc-public-gateway-bastion.cassette.yaml b/internal/services/vpcgw/testdata/vpc-public-gateway-bastion.cassette.yaml index e6ef14b643..89b552c301 100644 --- a/internal/services/vpcgw/testdata/vpc-public-gateway-bastion.cassette.yaml +++ b/internal/services/vpcgw/testdata/vpc-public-gateway-bastion.cassette.yaml @@ -6,20 +6,20 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 186 + content_length: 160 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"public-gateway-bastion-test","tags":[],"type":"VPC-GW-S","upstream_dns_servers":[],"enable_smtp":false,"enable_bastion":true}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"public-gateway-bastion-test","tags":[],"type":"VPC-GW-S","enable_smtp":false,"enable_bastion":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-gw/v1/zones/fr-par-1/gateways + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways method: POST response: proto: HTTP/2.0 @@ -27,20 +27,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 988 + content_length: 902 uncompressed: false - body: '{"bastion_enabled":true,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:02.267855Z","gateway_networks":[],"id":"a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41","ip":{"address":"51.15.209.217","created_at":"2025-01-27T09:16:02.254288Z","gateway_id":"a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41","id":"02300a86-eae0-4c3e-932f-a91fedcf1a39","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"217-209-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:02.254288Z","zone":"fr-par-1"},"ip_mobility_enabled":false,"is_legacy":false,"name":"public-gateway-bastion-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:02.267855Z","upstream_dns_servers":[],"version":null,"zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":true,"bastion_port":61000,"created_at":"2025-03-21T14:25:04.022307Z","gateway_networks":[],"id":"3f46da3e-6668-45e7-b1b0-b6d119673fdd","ipv4":{"address":"51.15.250.212","created_at":"2025-03-21T14:25:04.008855Z","gateway_id":"3f46da3e-6668-45e7-b1b0-b6d119673fdd","id":"6b070319-dc87-4e9f-9cac-293d5a343f5b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"212-250-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:25:04.008855Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-bastion-test","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-03-21T14:25:04.022307Z","zone":"fr-par-1"}' headers: Content-Length: - - "988" + - "902" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:02 GMT + - Fri, 21 Mar 2025 14:25:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e1b1c869-7c4e-41b0-9f51-3484fbf119f5 + - e8403469-9276-4ebe-945f-e1a09e5d7e47 status: 200 OK code: 200 - duration: 2.136969458s + duration: 806.936014ms - 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-gw/v1/zones/fr-par-1/gateways/a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/3f46da3e-6668-45e7-b1b0-b6d119673fdd method: GET response: proto: HTTP/2.0 @@ -76,20 +76,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 990 + content_length: 920 uncompressed: false - body: '{"bastion_enabled":true,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:02.267855Z","gateway_networks":[],"id":"a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41","ip":{"address":"51.15.209.217","created_at":"2025-01-27T09:16:02.254288Z","gateway_id":"a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41","id":"02300a86-eae0-4c3e-932f-a91fedcf1a39","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"217-209-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:02.254288Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-bastion-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:02.304090Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":true,"bastion_port":61000,"created_at":"2025-03-21T14:25:04.022307Z","gateway_networks":[],"id":"3f46da3e-6668-45e7-b1b0-b6d119673fdd","ipv4":{"address":"51.15.250.212","created_at":"2025-03-21T14:25:04.008855Z","gateway_id":"3f46da3e-6668-45e7-b1b0-b6d119673fdd","id":"6b070319-dc87-4e9f-9cac-293d5a343f5b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"212-250-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:25:04.008855Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-bastion-test","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-03-21T14:25:04.055130Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "990" + - "920" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:02 GMT + - Fri, 21 Mar 2025 14:25:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c0d6a24d-8293-43e4-bbdf-f072e0051bdf + - 32be053f-43fc-4b5b-bf1c-738c3ecb11cd status: 200 OK code: 200 - duration: 27.936834ms + duration: 32.872578ms - 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-gw/v1/zones/fr-par-1/gateways/a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/3f46da3e-6668-45e7-b1b0-b6d119673fdd method: GET response: proto: HTTP/2.0 @@ -125,20 +125,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 991 + content_length: 921 uncompressed: false - body: '{"bastion_enabled":true,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:02.267855Z","gateway_networks":[],"id":"a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41","ip":{"address":"51.15.209.217","created_at":"2025-01-27T09:16:02.254288Z","gateway_id":"a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41","id":"02300a86-eae0-4c3e-932f-a91fedcf1a39","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"217-209-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:02.254288Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-bastion-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:02.764428Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":true,"bastion_port":61000,"created_at":"2025-03-21T14:25:04.022307Z","gateway_networks":[],"id":"3f46da3e-6668-45e7-b1b0-b6d119673fdd","ipv4":{"address":"51.15.250.212","created_at":"2025-03-21T14:25:04.008855Z","gateway_id":"3f46da3e-6668-45e7-b1b0-b6d119673fdd","id":"6b070319-dc87-4e9f-9cac-293d5a343f5b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"212-250-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:25:04.008855Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-bastion-test","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-03-21T14:25:04.313300Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "991" + - "921" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:07 GMT + - Fri, 21 Mar 2025 14:25:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,10 +146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d211ffad-dcdd-4c03-b026-e84355b86a7d + - 13dd8b1a-db7d-48b0-9d1a-36a33517fc9f status: 200 OK code: 200 - duration: 28.690458ms + duration: 30.322543ms - 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-gw/v1/zones/fr-par-1/gateways/a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/3f46da3e-6668-45e7-b1b0-b6d119673fdd method: GET response: proto: HTTP/2.0 @@ -174,20 +174,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 987 + content_length: 917 uncompressed: false - body: '{"bastion_enabled":true,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:02.267855Z","gateway_networks":[],"id":"a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41","ip":{"address":"51.15.209.217","created_at":"2025-01-27T09:16:02.254288Z","gateway_id":"a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41","id":"02300a86-eae0-4c3e-932f-a91fedcf1a39","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"217-209-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:02.254288Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-bastion-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:10.173766Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":true,"bastion_port":61000,"created_at":"2025-03-21T14:25:04.022307Z","gateway_networks":[],"id":"3f46da3e-6668-45e7-b1b0-b6d119673fdd","ipv4":{"address":"51.15.250.212","created_at":"2025-03-21T14:25:04.008855Z","gateway_id":"3f46da3e-6668-45e7-b1b0-b6d119673fdd","id":"6b070319-dc87-4e9f-9cac-293d5a343f5b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"212-250-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:25:04.008855Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-bastion-test","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-03-21T14:25:11.514274Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "987" + - "917" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:12 GMT + - Fri, 21 Mar 2025 14:25:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -195,10 +195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f611a8df-7c3a-4251-be43-2967b5822c8f + - 88d243f6-b379-4ca3-8e50-4b4869623411 status: 200 OK code: 200 - duration: 28.195125ms + duration: 41.309148ms - 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-gw/v1/zones/fr-par-1/gateways/a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/3f46da3e-6668-45e7-b1b0-b6d119673fdd method: GET response: proto: HTTP/2.0 @@ -223,20 +223,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 987 + content_length: 917 uncompressed: false - body: '{"bastion_enabled":true,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:02.267855Z","gateway_networks":[],"id":"a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41","ip":{"address":"51.15.209.217","created_at":"2025-01-27T09:16:02.254288Z","gateway_id":"a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41","id":"02300a86-eae0-4c3e-932f-a91fedcf1a39","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"217-209-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:02.254288Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-bastion-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:10.173766Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":true,"bastion_port":61000,"created_at":"2025-03-21T14:25:04.022307Z","gateway_networks":[],"id":"3f46da3e-6668-45e7-b1b0-b6d119673fdd","ipv4":{"address":"51.15.250.212","created_at":"2025-03-21T14:25:04.008855Z","gateway_id":"3f46da3e-6668-45e7-b1b0-b6d119673fdd","id":"6b070319-dc87-4e9f-9cac-293d5a343f5b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"212-250-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:25:04.008855Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-bastion-test","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-03-21T14:25:11.514274Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "987" + - "917" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:12 GMT + - Fri, 21 Mar 2025 14:25:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -244,10 +244,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e41d4465-251c-44ff-ab08-011fd8384964 + - f06072c7-5843-4c4c-aa30-3db6030efee3 status: 200 OK code: 200 - duration: 34.367833ms + duration: 30.219364ms - id: 5 request: proto: HTTP/1.1 @@ -263,8 +263,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-gw/v1/zones/fr-par-1/gateways/a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/3f46da3e-6668-45e7-b1b0-b6d119673fdd method: GET response: proto: HTTP/2.0 @@ -272,20 +272,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 987 + content_length: 917 uncompressed: false - body: '{"bastion_enabled":true,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:02.267855Z","gateway_networks":[],"id":"a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41","ip":{"address":"51.15.209.217","created_at":"2025-01-27T09:16:02.254288Z","gateway_id":"a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41","id":"02300a86-eae0-4c3e-932f-a91fedcf1a39","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"217-209-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:02.254288Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-bastion-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:10.173766Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":true,"bastion_port":61000,"created_at":"2025-03-21T14:25:04.022307Z","gateway_networks":[],"id":"3f46da3e-6668-45e7-b1b0-b6d119673fdd","ipv4":{"address":"51.15.250.212","created_at":"2025-03-21T14:25:04.008855Z","gateway_id":"3f46da3e-6668-45e7-b1b0-b6d119673fdd","id":"6b070319-dc87-4e9f-9cac-293d5a343f5b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"212-250-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:25:04.008855Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-bastion-test","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-03-21T14:25:11.514274Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "987" + - "917" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:12 GMT + - Fri, 21 Mar 2025 14:25:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -293,10 +293,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ee9c0443-c623-4c2c-89f3-52aaa7ad5793 + - 9263aa3d-fed3-4809-bb88-fa7735b3d2c8 status: 200 OK code: 200 - duration: 28.502042ms + duration: 21.309966ms - 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-gw/v1/zones/fr-par-1/gateways/a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/3f46da3e-6668-45e7-b1b0-b6d119673fdd method: GET response: proto: HTTP/2.0 @@ -321,20 +321,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 987 + content_length: 917 uncompressed: false - body: '{"bastion_enabled":true,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:02.267855Z","gateway_networks":[],"id":"a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41","ip":{"address":"51.15.209.217","created_at":"2025-01-27T09:16:02.254288Z","gateway_id":"a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41","id":"02300a86-eae0-4c3e-932f-a91fedcf1a39","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"217-209-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:02.254288Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-bastion-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:10.173766Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":true,"bastion_port":61000,"created_at":"2025-03-21T14:25:04.022307Z","gateway_networks":[],"id":"3f46da3e-6668-45e7-b1b0-b6d119673fdd","ipv4":{"address":"51.15.250.212","created_at":"2025-03-21T14:25:04.008855Z","gateway_id":"3f46da3e-6668-45e7-b1b0-b6d119673fdd","id":"6b070319-dc87-4e9f-9cac-293d5a343f5b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"212-250-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:25:04.008855Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-bastion-test","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-03-21T14:25:11.514274Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "987" + - "917" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:13 GMT + - Fri, 21 Mar 2025 14:25:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -342,10 +342,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a377851c-d717-4e7b-960c-d5dff057cc48 + - b26924bf-6c8d-4764-88b7-c146cc9dbc87 status: 200 OK code: 200 - duration: 24.368958ms + duration: 35.391802ms - 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-gw/v1/zones/fr-par-1/gateways/a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/3f46da3e-6668-45e7-b1b0-b6d119673fdd method: GET response: proto: HTTP/2.0 @@ -370,20 +370,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 987 + content_length: 917 uncompressed: false - body: '{"bastion_enabled":true,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:02.267855Z","gateway_networks":[],"id":"a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41","ip":{"address":"51.15.209.217","created_at":"2025-01-27T09:16:02.254288Z","gateway_id":"a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41","id":"02300a86-eae0-4c3e-932f-a91fedcf1a39","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"217-209-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:02.254288Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-bastion-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:10.173766Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":true,"bastion_port":61000,"created_at":"2025-03-21T14:25:04.022307Z","gateway_networks":[],"id":"3f46da3e-6668-45e7-b1b0-b6d119673fdd","ipv4":{"address":"51.15.250.212","created_at":"2025-03-21T14:25:04.008855Z","gateway_id":"3f46da3e-6668-45e7-b1b0-b6d119673fdd","id":"6b070319-dc87-4e9f-9cac-293d5a343f5b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"212-250-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:25:04.008855Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-bastion-test","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-03-21T14:25:11.514274Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "987" + - "917" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:14 GMT + - Fri, 21 Mar 2025 14:25:15 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -391,10 +391,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3867faea-a6c9-4e30-ba0d-429334fbd54b + - 9a5d1542-c38c-4dfa-84d5-2a65e318d74d status: 200 OK code: 200 - duration: 92.133417ms + duration: 32.026735ms - id: 8 request: proto: HTTP/1.1 @@ -410,8 +410,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-gw/v1/zones/fr-par-1/gateways/a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/3f46da3e-6668-45e7-b1b0-b6d119673fdd method: GET response: proto: HTTP/2.0 @@ -419,20 +419,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 987 + content_length: 917 uncompressed: false - body: '{"bastion_enabled":true,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:02.267855Z","gateway_networks":[],"id":"a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41","ip":{"address":"51.15.209.217","created_at":"2025-01-27T09:16:02.254288Z","gateway_id":"a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41","id":"02300a86-eae0-4c3e-932f-a91fedcf1a39","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"217-209-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:02.254288Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-bastion-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:10.173766Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":true,"bastion_port":61000,"created_at":"2025-03-21T14:25:04.022307Z","gateway_networks":[],"id":"3f46da3e-6668-45e7-b1b0-b6d119673fdd","ipv4":{"address":"51.15.250.212","created_at":"2025-03-21T14:25:04.008855Z","gateway_id":"3f46da3e-6668-45e7-b1b0-b6d119673fdd","id":"6b070319-dc87-4e9f-9cac-293d5a343f5b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"212-250-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:25:04.008855Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-bastion-test","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-03-21T14:25:11.514274Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "987" + - "917" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:14 GMT + - Fri, 21 Mar 2025 14:25:15 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -440,10 +440,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0977825a-48a0-497f-8426-3e07a9dbc7c4 + - 9f06a7f2-3799-4c23-8c9f-3fa8b365d7b2 status: 200 OK code: 200 - duration: 31.322292ms + duration: 25.167896ms - id: 9 request: proto: HTTP/1.1 @@ -461,8 +461,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-gw/v1/zones/fr-par-1/gateways/a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/3f46da3e-6668-45e7-b1b0-b6d119673fdd method: PATCH response: proto: HTTP/2.0 @@ -470,20 +470,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 988 + content_length: 918 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:02.267855Z","gateway_networks":[],"id":"a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41","ip":{"address":"51.15.209.217","created_at":"2025-01-27T09:16:02.254288Z","gateway_id":"a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41","id":"02300a86-eae0-4c3e-932f-a91fedcf1a39","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"217-209-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:02.254288Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-bastion-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:14.971993Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:25:04.022307Z","gateway_networks":[],"id":"3f46da3e-6668-45e7-b1b0-b6d119673fdd","ipv4":{"address":"51.15.250.212","created_at":"2025-03-21T14:25:04.008855Z","gateway_id":"3f46da3e-6668-45e7-b1b0-b6d119673fdd","id":"6b070319-dc87-4e9f-9cac-293d5a343f5b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"212-250-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:25:04.008855Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-bastion-test","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-03-21T14:25:15.929962Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "988" + - "918" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:14 GMT + - Fri, 21 Mar 2025 14:25:15 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -491,10 +491,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a9c07eca-deec-48d1-878c-ef2520e4ad06 + - 0a86f3fe-081f-4f60-8de2-764200f14a8f status: 200 OK code: 200 - duration: 57.179083ms + duration: 44.126141ms - id: 10 request: proto: HTTP/1.1 @@ -510,8 +510,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/3f46da3e-6668-45e7-b1b0-b6d119673fdd method: GET response: proto: HTTP/2.0 @@ -519,20 +519,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 992 + content_length: 922 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:02.267855Z","gateway_networks":[],"id":"a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41","ip":{"address":"51.15.209.217","created_at":"2025-01-27T09:16:02.254288Z","gateway_id":"a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41","id":"02300a86-eae0-4c3e-932f-a91fedcf1a39","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"217-209-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:02.254288Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-bastion-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:14.996959Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:25:04.022307Z","gateway_networks":[],"id":"3f46da3e-6668-45e7-b1b0-b6d119673fdd","ipv4":{"address":"51.15.250.212","created_at":"2025-03-21T14:25:04.008855Z","gateway_id":"3f46da3e-6668-45e7-b1b0-b6d119673fdd","id":"6b070319-dc87-4e9f-9cac-293d5a343f5b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"212-250-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:25:04.008855Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-bastion-test","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-03-21T14:25:15.953258Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "992" + - "922" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:15 GMT + - Fri, 21 Mar 2025 14:25:15 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -540,10 +540,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d8d6bfef-75ac-4e15-bcf8-bc5d9d5e80e3 + - 1c572d44-02ed-4b67-bb59-33b2db66ef2d status: 200 OK code: 200 - duration: 39.037458ms + duration: 21.591667ms - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/3f46da3e-6668-45e7-b1b0-b6d119673fdd method: GET response: proto: HTTP/2.0 @@ -568,20 +568,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 988 + content_length: 918 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:02.267855Z","gateway_networks":[],"id":"a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41","ip":{"address":"51.15.209.217","created_at":"2025-01-27T09:16:02.254288Z","gateway_id":"a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41","id":"02300a86-eae0-4c3e-932f-a91fedcf1a39","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"217-209-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:02.254288Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-bastion-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:15.649813Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:25:04.022307Z","gateway_networks":[],"id":"3f46da3e-6668-45e7-b1b0-b6d119673fdd","ipv4":{"address":"51.15.250.212","created_at":"2025-03-21T14:25:04.008855Z","gateway_id":"3f46da3e-6668-45e7-b1b0-b6d119673fdd","id":"6b070319-dc87-4e9f-9cac-293d5a343f5b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"212-250-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:25:04.008855Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-bastion-test","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-03-21T14:25:16.706679Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "988" + - "918" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:20 GMT + - Fri, 21 Mar 2025 14:25:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -589,10 +589,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f001a350-f6f6-44ed-94cf-8394b0e50343 + - 7299a789-bce7-4326-9ddb-77c030a08851 status: 200 OK code: 200 - duration: 32.942334ms + duration: 35.560581ms - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/3f46da3e-6668-45e7-b1b0-b6d119673fdd method: GET response: proto: HTTP/2.0 @@ -617,20 +617,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 988 + content_length: 918 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:02.267855Z","gateway_networks":[],"id":"a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41","ip":{"address":"51.15.209.217","created_at":"2025-01-27T09:16:02.254288Z","gateway_id":"a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41","id":"02300a86-eae0-4c3e-932f-a91fedcf1a39","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"217-209-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:02.254288Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-bastion-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:15.649813Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:25:04.022307Z","gateway_networks":[],"id":"3f46da3e-6668-45e7-b1b0-b6d119673fdd","ipv4":{"address":"51.15.250.212","created_at":"2025-03-21T14:25:04.008855Z","gateway_id":"3f46da3e-6668-45e7-b1b0-b6d119673fdd","id":"6b070319-dc87-4e9f-9cac-293d5a343f5b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"212-250-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:25:04.008855Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-bastion-test","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-03-21T14:25:16.706679Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "988" + - "918" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:20 GMT + - Fri, 21 Mar 2025 14:25:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -638,10 +638,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bac1c4ee-6274-420c-a784-b7f453de4635 + - b5a2d10b-0c4d-4a1a-9d85-3bf0e290742d status: 200 OK code: 200 - duration: 29.702208ms + duration: 22.860849ms - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/3f46da3e-6668-45e7-b1b0-b6d119673fdd method: GET response: proto: HTTP/2.0 @@ -666,20 +666,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 988 + content_length: 918 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:02.267855Z","gateway_networks":[],"id":"a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41","ip":{"address":"51.15.209.217","created_at":"2025-01-27T09:16:02.254288Z","gateway_id":"a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41","id":"02300a86-eae0-4c3e-932f-a91fedcf1a39","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"217-209-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:02.254288Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-bastion-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:15.649813Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:25:04.022307Z","gateway_networks":[],"id":"3f46da3e-6668-45e7-b1b0-b6d119673fdd","ipv4":{"address":"51.15.250.212","created_at":"2025-03-21T14:25:04.008855Z","gateway_id":"3f46da3e-6668-45e7-b1b0-b6d119673fdd","id":"6b070319-dc87-4e9f-9cac-293d5a343f5b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"212-250-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:25:04.008855Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-bastion-test","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-03-21T14:25:16.706679Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "988" + - "918" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:20 GMT + - Fri, 21 Mar 2025 14:25:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -687,10 +687,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 28790dea-e8bd-454a-843b-f1e64dc69c4f + - d6be187a-4fea-483b-ac21-fc2b89244b37 status: 200 OK code: 200 - duration: 25.059417ms + duration: 29.54774ms - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/3f46da3e-6668-45e7-b1b0-b6d119673fdd method: GET response: proto: HTTP/2.0 @@ -715,20 +715,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 988 + content_length: 918 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:02.267855Z","gateway_networks":[],"id":"a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41","ip":{"address":"51.15.209.217","created_at":"2025-01-27T09:16:02.254288Z","gateway_id":"a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41","id":"02300a86-eae0-4c3e-932f-a91fedcf1a39","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"217-209-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:02.254288Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-bastion-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:15.649813Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:25:04.022307Z","gateway_networks":[],"id":"3f46da3e-6668-45e7-b1b0-b6d119673fdd","ipv4":{"address":"51.15.250.212","created_at":"2025-03-21T14:25:04.008855Z","gateway_id":"3f46da3e-6668-45e7-b1b0-b6d119673fdd","id":"6b070319-dc87-4e9f-9cac-293d5a343f5b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"212-250-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:25:04.008855Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-bastion-test","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-03-21T14:25:16.706679Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "988" + - "918" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:20 GMT + - Fri, 21 Mar 2025 14:25:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -736,10 +736,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 04520961-5b2f-4830-a8b0-d57e35ad5013 + - e0cc4888-36b0-45a6-83d5-dc8d144f1609 status: 200 OK code: 200 - duration: 26.346667ms + duration: 28.855637ms - id: 15 request: proto: HTTP/1.1 @@ -755,8 +755,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/3f46da3e-6668-45e7-b1b0-b6d119673fdd method: GET response: proto: HTTP/2.0 @@ -764,20 +764,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 988 + content_length: 918 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:02.267855Z","gateway_networks":[],"id":"a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41","ip":{"address":"51.15.209.217","created_at":"2025-01-27T09:16:02.254288Z","gateway_id":"a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41","id":"02300a86-eae0-4c3e-932f-a91fedcf1a39","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"217-209-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:02.254288Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-bastion-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:15.649813Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:25:04.022307Z","gateway_networks":[],"id":"3f46da3e-6668-45e7-b1b0-b6d119673fdd","ipv4":{"address":"51.15.250.212","created_at":"2025-03-21T14:25:04.008855Z","gateway_id":"3f46da3e-6668-45e7-b1b0-b6d119673fdd","id":"6b070319-dc87-4e9f-9cac-293d5a343f5b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"212-250-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:25:04.008855Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-bastion-test","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-03-21T14:25:16.706679Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "988" + - "918" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:20 GMT + - Fri, 21 Mar 2025 14:25:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -785,10 +785,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9c412b38-510b-4fdb-b3ce-b43cfb2b5655 + - ce0317f5-5f9e-481f-9f7f-504347b50671 status: 200 OK code: 200 - duration: 27.197125ms + duration: 32.630529ms - id: 16 request: proto: HTTP/1.1 @@ -804,8 +804,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/3f46da3e-6668-45e7-b1b0-b6d119673fdd method: GET response: proto: HTTP/2.0 @@ -813,20 +813,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 988 + content_length: 918 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:02.267855Z","gateway_networks":[],"id":"a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41","ip":{"address":"51.15.209.217","created_at":"2025-01-27T09:16:02.254288Z","gateway_id":"a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41","id":"02300a86-eae0-4c3e-932f-a91fedcf1a39","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"217-209-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:02.254288Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-bastion-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:15.649813Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:25:04.022307Z","gateway_networks":[],"id":"3f46da3e-6668-45e7-b1b0-b6d119673fdd","ipv4":{"address":"51.15.250.212","created_at":"2025-03-21T14:25:04.008855Z","gateway_id":"3f46da3e-6668-45e7-b1b0-b6d119673fdd","id":"6b070319-dc87-4e9f-9cac-293d5a343f5b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"212-250-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:25:04.008855Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-bastion-test","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-03-21T14:25:16.706679Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "988" + - "918" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:21 GMT + - Fri, 21 Mar 2025 14:25:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -834,10 +834,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 19f284a3-ddb5-4332-b618-2817bdc30eb2 + - f4d89c37-2ff1-4644-a1cc-822648b3143f status: 200 OK code: 200 - duration: 32.622042ms + duration: 28.357693ms - id: 17 request: proto: HTTP/1.1 @@ -853,8 +853,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/3f46da3e-6668-45e7-b1b0-b6d119673fdd method: GET response: proto: HTTP/2.0 @@ -862,20 +862,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 988 + content_length: 918 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:02.267855Z","gateway_networks":[],"id":"a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41","ip":{"address":"51.15.209.217","created_at":"2025-01-27T09:16:02.254288Z","gateway_id":"a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41","id":"02300a86-eae0-4c3e-932f-a91fedcf1a39","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"217-209-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:02.254288Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-bastion-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:15.649813Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:25:04.022307Z","gateway_networks":[],"id":"3f46da3e-6668-45e7-b1b0-b6d119673fdd","ipv4":{"address":"51.15.250.212","created_at":"2025-03-21T14:25:04.008855Z","gateway_id":"3f46da3e-6668-45e7-b1b0-b6d119673fdd","id":"6b070319-dc87-4e9f-9cac-293d5a343f5b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"212-250-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:25:04.008855Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-bastion-test","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-03-21T14:25:16.706679Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "988" + - "918" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:22 GMT + - Fri, 21 Mar 2025 14:25:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -883,10 +883,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a9ac01a3-5c50-4923-af3e-4aefab8cffe3 + - fb19becd-a01a-4898-a3e6-d016af4c751f status: 200 OK code: 200 - duration: 26.512792ms + duration: 23.322405ms - id: 18 request: proto: HTTP/1.1 @@ -902,27 +902,127 @@ interactions: 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-gw/v1/zones/fr-par-1/gateways/a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41?cleanup_dhcp=false - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/3f46da3e-6668-45e7-b1b0-b6d119673fdd + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} + content_length: 918 + uncompressed: false + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:25:04.022307Z","gateway_networks":[],"id":"3f46da3e-6668-45e7-b1b0-b6d119673fdd","ipv4":{"address":"51.15.250.212","created_at":"2025-03-21T14:25:04.008855Z","gateway_id":"3f46da3e-6668-45e7-b1b0-b6d119673fdd","id":"6b070319-dc87-4e9f-9cac-293d5a343f5b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"212-250-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:25:04.008855Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-bastion-test","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-03-21T14:25:16.706679Z","version":"0.7.3","zone":"fr-par-1"}' + headers: + Content-Length: + - "918" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 21 Mar 2025 14:25:21 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: + - c2dfc0f9-e7a5-43d6-93a8-03183b744079 + status: 200 OK + code: 200 + duration: 28.456912ms + - 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/3f46da3e-6668-45e7-b1b0-b6d119673fdd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 918 uncompressed: false + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:25:04.022307Z","gateway_networks":[],"id":"3f46da3e-6668-45e7-b1b0-b6d119673fdd","ipv4":{"address":"51.15.250.212","created_at":"2025-03-21T14:25:04.008855Z","gateway_id":"3f46da3e-6668-45e7-b1b0-b6d119673fdd","id":"6b070319-dc87-4e9f-9cac-293d5a343f5b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"212-250-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:25:04.008855Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-bastion-test","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-03-21T14:25:16.706679Z","version":"0.7.3","zone":"fr-par-1"}' + headers: + Content-Length: + - "918" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 21 Mar 2025 14:25:22 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: + - 1bb1cd6b-5340-4cfb-8195-2545d1142f08 + status: 200 OK + code: 200 + duration: 35.473202ms + - 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/3f46da3e-6668-45e7-b1b0-b6d119673fdd?delete_ip=false + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 919 + uncompressed: false + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:25:04.022307Z","gateway_networks":[],"id":"3f46da3e-6668-45e7-b1b0-b6d119673fdd","ipv4":{"address":"51.15.250.212","created_at":"2025-03-21T14:25:04.008855Z","gateway_id":"3f46da3e-6668-45e7-b1b0-b6d119673fdd","id":"6b070319-dc87-4e9f-9cac-293d5a343f5b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"212-250-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:25:04.008855Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-bastion-test","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-03-21T14:25:22.478270Z","version":"0.7.3","zone":"fr-par-1"}' + headers: + Content-Length: + - "919" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:22 GMT + - Fri, 21 Mar 2025 14:25:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -930,11 +1030,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 03f29237-1ded-4707-9d59-06b3643f7c5d - status: 204 No Content - code: 204 - duration: 50.402667ms - - id: 19 + - b029f412-089f-416f-946b-83ffc046a15c + status: 200 OK + code: 200 + duration: 78.030732ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -949,8 +1049,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/3f46da3e-6668-45e7-b1b0-b6d119673fdd method: GET response: proto: HTTP/2.0 @@ -960,7 +1060,7 @@ interactions: trailer: {} content_length: 128 uncompressed: false - body: '{"message":"resource is not found","resource":"gateway","resource_id":"a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41","type":"not_found"}' + body: '{"message":"resource is not found","resource":"gateway","resource_id":"3f46da3e-6668-45e7-b1b0-b6d119673fdd","type":"not_found"}' headers: Content-Length: - "128" @@ -969,9 +1069,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:22 GMT + - Fri, 21 Mar 2025 14:25:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -979,11 +1079,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 36c092f2-0a46-45ae-8a58-36db2d605157 + - ebacac0c-99c4-4de4-ad5d-d5cc9cf1b0ea status: 404 Not Found code: 404 - duration: 25.362916ms - - id: 20 + duration: 20.990382ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -998,8 +1098,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-gw/v1/zones/fr-par-1/gateways/a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/3f46da3e-6668-45e7-b1b0-b6d119673fdd method: GET response: proto: HTTP/2.0 @@ -1009,7 +1109,7 @@ interactions: trailer: {} content_length: 128 uncompressed: false - body: '{"message":"resource is not found","resource":"gateway","resource_id":"a0f55bfb-d7a6-49f4-a73d-c7acaeda1d41","type":"not_found"}' + body: '{"message":"resource is not found","resource":"gateway","resource_id":"3f46da3e-6668-45e7-b1b0-b6d119673fdd","type":"not_found"}' headers: Content-Length: - "128" @@ -1018,9 +1118,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:22 GMT + - Fri, 21 Mar 2025 14:25:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1028,7 +1128,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f87c6e8c-7ab2-49c9-892a-42599207d0bc + - 0715491f-e271-4dc0-adfd-4776c3a48dbb status: 404 Not Found code: 404 - duration: 28.142375ms + duration: 20.179938ms diff --git a/internal/services/vpcgw/testdata/vpc-public-gateway-ip-basic.cassette.yaml b/internal/services/vpcgw/testdata/vpc-public-gateway-ip-basic.cassette.yaml index adc907b616..ecde076a3c 100644 --- a/internal/services/vpcgw/testdata/vpc-public-gateway-ip-basic.cassette.yaml +++ b/internal/services/vpcgw/testdata/vpc-public-gateway-ip-basic.cassette.yaml @@ -12,14 +12,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[]}' + 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips method: POST response: proto: HTTP/2.0 @@ -27,20 +27,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 358 + content_length: 344 uncompressed: false - body: '{"address":"51.15.248.151","created_at":"2025-01-27T09:16:29.955354Z","gateway_id":null,"id":"adef9634-4c8b-4bab-9366-b6ab080fcf7f","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"151-248-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:29.955354Z","zone":"fr-par-1"}' + body: '{"address":"163.172.157.246","created_at":"2025-03-21T14:37:50.026948Z","id":"814078c1-27da-48c4-92fa-432371fb31f9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"246-157-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:37:50.026948Z","zone":"fr-par-1"}' headers: Content-Length: - - "358" + - "344" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:29 GMT + - Fri, 21 Mar 2025 14:37:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 05768c0b-ac8d-4fc8-8f42-b457d6af5edf + - d50c8b42-3a66-4b73-9a53-e4610cdaa3dc status: 200 OK code: 200 - duration: 663.742834ms + duration: 849.618159ms - 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-gw/v1/zones/fr-par-1/ips/adef9634-4c8b-4bab-9366-b6ab080fcf7f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/814078c1-27da-48c4-92fa-432371fb31f9 method: GET response: proto: HTTP/2.0 @@ -76,20 +76,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 358 + content_length: 344 uncompressed: false - body: '{"address":"51.15.248.151","created_at":"2025-01-27T09:16:29.955354Z","gateway_id":null,"id":"adef9634-4c8b-4bab-9366-b6ab080fcf7f","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"151-248-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:29.955354Z","zone":"fr-par-1"}' + body: '{"address":"163.172.157.246","created_at":"2025-03-21T14:37:50.026948Z","id":"814078c1-27da-48c4-92fa-432371fb31f9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"246-157-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:37:50.026948Z","zone":"fr-par-1"}' headers: Content-Length: - - "358" + - "344" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:29 GMT + - Fri, 21 Mar 2025 14:37:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 15858d43-5cc4-4fb3-9b9b-69abd04f2a95 + - 2c1f040d-9dd3-4561-a145-5c708b485dde status: 200 OK code: 200 - duration: 22.915542ms + duration: 23.953144ms - 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-gw/v1/zones/fr-par-1/ips/adef9634-4c8b-4bab-9366-b6ab080fcf7f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/814078c1-27da-48c4-92fa-432371fb31f9 method: GET response: proto: HTTP/2.0 @@ -125,20 +125,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 358 + content_length: 344 uncompressed: false - body: '{"address":"51.15.248.151","created_at":"2025-01-27T09:16:29.955354Z","gateway_id":null,"id":"adef9634-4c8b-4bab-9366-b6ab080fcf7f","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"151-248-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:29.955354Z","zone":"fr-par-1"}' + body: '{"address":"163.172.157.246","created_at":"2025-03-21T14:37:50.026948Z","id":"814078c1-27da-48c4-92fa-432371fb31f9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"246-157-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:37:50.026948Z","zone":"fr-par-1"}' headers: Content-Length: - - "358" + - "344" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:30 GMT + - Fri, 21 Mar 2025 14:37:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,10 +146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 589a26ff-37d7-4b9e-bf5e-03ec567aeca5 + - e30d66c8-e02f-4938-aba9-6c1fbd56e318 status: 200 OK code: 200 - duration: 31.3245ms + duration: 27.853286ms - 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-gw/v1/zones/fr-par-1/ips/adef9634-4c8b-4bab-9366-b6ab080fcf7f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/814078c1-27da-48c4-92fa-432371fb31f9 method: GET response: proto: HTTP/2.0 @@ -174,20 +174,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 358 + content_length: 344 uncompressed: false - body: '{"address":"51.15.248.151","created_at":"2025-01-27T09:16:29.955354Z","gateway_id":null,"id":"adef9634-4c8b-4bab-9366-b6ab080fcf7f","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"151-248-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:29.955354Z","zone":"fr-par-1"}' + body: '{"address":"163.172.157.246","created_at":"2025-03-21T14:37:50.026948Z","id":"814078c1-27da-48c4-92fa-432371fb31f9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"246-157-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:37:50.026948Z","zone":"fr-par-1"}' headers: Content-Length: - - "358" + - "344" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:30 GMT + - Fri, 21 Mar 2025 14:37:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -195,10 +195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 87becf9f-a193-4fe5-8d6b-9dc30eab7a29 + - b4e6af72-d484-4893-8e94-21feaed5cb4a status: 200 OK code: 200 - duration: 30.780958ms + duration: 19.579016ms - 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-gw/v1/zones/fr-par-1/ips/adef9634-4c8b-4bab-9366-b6ab080fcf7f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/814078c1-27da-48c4-92fa-432371fb31f9 method: DELETE response: proto: HTTP/2.0 @@ -232,9 +232,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:32 GMT + - Fri, 21 Mar 2025 14:37:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -242,10 +242,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ab69a72f-feb8-4c96-90dd-312ed400c23e + - 374907f6-dc1b-4480-8dff-3a34d3294e54 status: 204 No Content code: 204 - duration: 592.121ms + duration: 536.413614ms - 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-gw/v1/zones/fr-par-1/ips/adef9634-4c8b-4bab-9366-b6ab080fcf7f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/814078c1-27da-48c4-92fa-432371fb31f9 method: GET response: proto: HTTP/2.0 @@ -272,7 +272,7 @@ interactions: trailer: {} content_length: 123 uncompressed: false - body: '{"message":"resource is not found","resource":"ip","resource_id":"adef9634-4c8b-4bab-9366-b6ab080fcf7f","type":"not_found"}' + body: '{"message":"resource is not found","resource":"ip","resource_id":"814078c1-27da-48c4-92fa-432371fb31f9","type":"not_found"}' headers: Content-Length: - "123" @@ -281,9 +281,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:32 GMT + - Fri, 21 Mar 2025 14:37:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -291,7 +291,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bd1d9c3b-05d4-4674-8e6c-643407e71366 + - 1e7b2984-2c39-49f2-975c-cccef122d478 status: 404 Not Found code: 404 - duration: 23.059959ms + duration: 25.472256ms diff --git a/internal/services/vpcgw/testdata/vpc-public-gateway-ip-reverse-dns-basic.cassette.yaml b/internal/services/vpcgw/testdata/vpc-public-gateway-ip-reverse-dns-basic.cassette.yaml index 5901be0059..4603adf373 100644 --- a/internal/services/vpcgw/testdata/vpc-public-gateway-ip-reverse-dns-basic.cassette.yaml +++ b/internal/services/vpcgw/testdata/vpc-public-gateway-ip-reverse-dns-basic.cassette.yaml @@ -18,8 +18,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-gw/v1/zones/fr-par-1/ips + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips method: POST response: proto: HTTP/2.0 @@ -27,20 +27,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 360 + content_length: 340 uncompressed: false - body: '{"address":"212.47.239.248","created_at":"2025-01-27T09:16:02.071528Z","gateway_id":null,"id":"e9a1d06f-3444-4b64-a2f6-12bc4c17d681","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"248-239-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:02.071528Z","zone":"fr-par-1"}' + body: '{"address":"51.15.218.229","created_at":"2025-03-21T14:22:14.415833Z","id":"1c08404a-6c5a-4c20-b681-3d07f230fa88","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"229-218-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:22:14.415833Z","zone":"fr-par-1"}' headers: Content-Length: - - "360" + - "340" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:02 GMT + - Fri, 21 Mar 2025 14:22:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b775584-aa51-4cb9-8a36-bc7a57776ae2 + - 2a9fe232-9f04-4578-9a4d-ff008b26b9c9 status: 200 OK code: 200 - duration: 1.052132167s + duration: 996.945616ms - 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-gw/v1/zones/fr-par-1/ips/e9a1d06f-3444-4b64-a2f6-12bc4c17d681 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/1c08404a-6c5a-4c20-b681-3d07f230fa88 method: GET response: proto: HTTP/2.0 @@ -76,20 +76,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 360 + content_length: 340 uncompressed: false - body: '{"address":"212.47.239.248","created_at":"2025-01-27T09:16:02.071528Z","gateway_id":null,"id":"e9a1d06f-3444-4b64-a2f6-12bc4c17d681","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"248-239-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:02.071528Z","zone":"fr-par-1"}' + body: '{"address":"51.15.218.229","created_at":"2025-03-21T14:22:14.415833Z","id":"1c08404a-6c5a-4c20-b681-3d07f230fa88","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"229-218-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:22:14.415833Z","zone":"fr-par-1"}' headers: Content-Length: - - "360" + - "340" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:02 GMT + - Fri, 21 Mar 2025 14:22:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,28 +97,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3b12ea42-2891-47c5-94ff-aa4a5f7c772c + - e4672098-1ae4-4c0d-b734-02cd59233608 status: 200 OK code: 200 - duration: 26.442416ms + duration: 155.392993ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 191 + content_length: 190 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"changes":[{"add":{"records":[{"data":"212.47.239.248","name":"","priority":1,"ttl":3600,"type":"A","comment":null,"id":""}]}}],"return_all_records":false,"disallow_new_zone_creation":false}' + body: '{"changes":[{"add":{"records":[{"data":"51.15.218.229","name":"","priority":1,"ttl":3600,"type":"A","comment":null,"id":""}]}}],"return_all_records":false,"disallow_new_zone_creation":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-vpcgw.scaleway-terraform.com/records method: PATCH response: @@ -127,20 +127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 142 uncompressed: false - body: '{"records":[{"comment":null,"data":"212.47.239.248","id":"31cd2239-db16-463d-96dc-46149ea2f8db","name":"","priority":1,"ttl":3600,"type":"A"}]}' + body: '{"records":[{"comment":null,"data":"51.15.218.229","id":"b3562b47-5989-45cb-a400-71f6d8f5aef3","name":"","priority":1,"ttl":3600,"type":"A"}]}' headers: Content-Length: - - "143" + - "142" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:02 GMT + - Fri, 21 Mar 2025 14:22:15 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -148,10 +148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0f02f16d-9f61-458c-b0bc-1c7ec3597bbe + - cdbd3251-7299-49c3-b661-40473a222dc1 status: 200 OK code: 200 - duration: 374.979708ms + duration: 563.353481ms - id: 3 request: proto: HTTP/1.1 @@ -167,7 +167,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-vpcgw.scaleway-terraform.com/records?name=&order_by=name_asc&type=A method: GET response: @@ -176,20 +176,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 159 + content_length: 158 uncompressed: false - body: '{"records":[{"comment":null,"data":"212.47.239.248","id":"31cd2239-db16-463d-96dc-46149ea2f8db","name":"","priority":1,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"51.15.218.229","id":"b3562b47-5989-45cb-a400-71f6d8f5aef3","name":"","priority":1,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "159" + - "158" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:02 GMT + - Fri, 21 Mar 2025 14:22:15 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,10 +197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2118c3ad-84db-4cf3-b910-e52b1b20b0c9 + - ec4fb590-0890-4013-a105-6d440b0cd38c status: 200 OK code: 200 - duration: 77.252875ms + duration: 121.409359ms - id: 4 request: proto: HTTP/1.1 @@ -216,7 +216,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-vpcgw.scaleway-terraform.com/records?name=&order_by=name_asc&page=1&type=A method: GET response: @@ -225,20 +225,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 159 + content_length: 158 uncompressed: false - body: '{"records":[{"comment":null,"data":"212.47.239.248","id":"31cd2239-db16-463d-96dc-46149ea2f8db","name":"","priority":1,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"51.15.218.229","id":"b3562b47-5989-45cb-a400-71f6d8f5aef3","name":"","priority":1,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "159" + - "158" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:02 GMT + - Fri, 21 Mar 2025 14:22:15 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -246,10 +246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a2944a05-f704-4569-9d0a-e6dcdf2b863e + - d98b40dd-42ab-4926-b4a3-6e585cd56777 status: 200 OK code: 200 - duration: 76.610583ms + duration: 137.645248ms - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-vpcgw.scaleway-terraform.com/records?id=31cd2239-db16-463d-96dc-46149ea2f8db&name=&order_by=name_asc&page=1&type=unknown + - 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/domain/v2beta1/dns-zones/tf-reverse-vpcgw.scaleway-terraform.com/records?id=b3562b47-5989-45cb-a400-71f6d8f5aef3&name=&order_by=name_asc&page=1&type=unknown method: GET response: proto: HTTP/2.0 @@ -274,20 +274,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 159 + content_length: 158 uncompressed: false - body: '{"records":[{"comment":null,"data":"212.47.239.248","id":"31cd2239-db16-463d-96dc-46149ea2f8db","name":"","priority":1,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"51.15.218.229","id":"b3562b47-5989-45cb-a400-71f6d8f5aef3","name":"","priority":1,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "159" + - "158" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:02 GMT + - Fri, 21 Mar 2025 14:22:15 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -295,10 +295,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 81dc6db0-41fa-4033-a4e6-3e452b65d70a + - a4f4e2e2-80e1-46b7-b8d5-d3dc478c9bb4 status: 200 OK code: 200 - duration: 68.080417ms + duration: 101.944061ms - id: 6 request: proto: HTTP/1.1 @@ -314,7 +314,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=tf-reverse-vpcgw.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -325,7 +325,7 @@ interactions: trailer: {} content_length: 358 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"tf-reverse-vpcgw","updated_at":"2025-01-27T09:16:02Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"tf-reverse-vpcgw","updated_at":"2025-03-21T14:22:15Z"}],"total_count":1}' headers: Content-Length: - "358" @@ -334,9 +334,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:02 GMT + - Fri, 21 Mar 2025 14:22:15 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -344,10 +344,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0835dc5a-a961-4b83-b354-ae40767f497a + - 3e1fc4c0-ad23-4964-961e-bae9575cb6a3 status: 200 OK code: 200 - duration: 68.302792ms + duration: 97.793938ms - 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-gw/v1/zones/fr-par-1/ips/e9a1d06f-3444-4b64-a2f6-12bc4c17d681 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/1c08404a-6c5a-4c20-b681-3d07f230fa88 method: GET response: proto: HTTP/2.0 @@ -372,20 +372,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 360 + content_length: 340 uncompressed: false - body: '{"address":"212.47.239.248","created_at":"2025-01-27T09:16:02.071528Z","gateway_id":null,"id":"e9a1d06f-3444-4b64-a2f6-12bc4c17d681","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"248-239-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:02.071528Z","zone":"fr-par-1"}' + body: '{"address":"51.15.218.229","created_at":"2025-03-21T14:22:14.415833Z","id":"1c08404a-6c5a-4c20-b681-3d07f230fa88","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"229-218-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:22:14.415833Z","zone":"fr-par-1"}' headers: Content-Length: - - "360" + - "340" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:02 GMT + - Fri, 21 Mar 2025 14:22:15 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -393,10 +393,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1cda9692-07e1-437a-afd6-96851724a602 + - 300257a0-2ef4-410a-8f23-23177a6d584a status: 200 OK code: 200 - duration: 22.543083ms + duration: 19.096254ms - id: 8 request: proto: HTTP/1.1 @@ -414,8 +414,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-gw/v1/zones/fr-par-1/ips/e9a1d06f-3444-4b64-a2f6-12bc4c17d681 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/1c08404a-6c5a-4c20-b681-3d07f230fa88 method: PATCH response: proto: HTTP/2.0 @@ -423,20 +423,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 365 + content_length: 346 uncompressed: false - body: '{"address":"212.47.239.248","created_at":"2025-01-27T09:16:02.071528Z","gateway_id":null,"id":"e9a1d06f-3444-4b64-a2f6-12bc4c17d681","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"tf-reverse-vpcgw.scaleway-terraform.com","tags":[],"updated_at":"2025-01-27T09:16:07.864952Z","zone":"fr-par-1"}' + body: '{"address":"51.15.218.229","created_at":"2025-03-21T14:22:14.415833Z","id":"1c08404a-6c5a-4c20-b681-3d07f230fa88","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"tf-reverse-vpcgw.scaleway-terraform.com","tags":[],"updated_at":"2025-03-21T14:22:20.822754Z","zone":"fr-par-1"}' headers: Content-Length: - - "365" + - "346" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:08 GMT + - Fri, 21 Mar 2025 14:22:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -444,10 +444,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed08394f-cbe5-4db6-a932-cbf04ef05462 + - 2cb23f3a-aef2-4191-a22d-e23d68b2246f status: 200 OK code: 200 - duration: 409.350917ms + duration: 472.651328ms - id: 9 request: proto: HTTP/1.1 @@ -463,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-gw/v1/zones/fr-par-1/ips/e9a1d06f-3444-4b64-a2f6-12bc4c17d681 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/1c08404a-6c5a-4c20-b681-3d07f230fa88 method: GET response: proto: HTTP/2.0 @@ -472,20 +472,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 365 + content_length: 346 uncompressed: false - body: '{"address":"212.47.239.248","created_at":"2025-01-27T09:16:02.071528Z","gateway_id":null,"id":"e9a1d06f-3444-4b64-a2f6-12bc4c17d681","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"tf-reverse-vpcgw.scaleway-terraform.com","tags":[],"updated_at":"2025-01-27T09:16:07.864952Z","zone":"fr-par-1"}' + body: '{"address":"51.15.218.229","created_at":"2025-03-21T14:22:14.415833Z","id":"1c08404a-6c5a-4c20-b681-3d07f230fa88","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"tf-reverse-vpcgw.scaleway-terraform.com","tags":[],"updated_at":"2025-03-21T14:22:20.822754Z","zone":"fr-par-1"}' headers: Content-Length: - - "365" + - "346" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:08 GMT + - Fri, 21 Mar 2025 14:22:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -493,10 +493,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 41a10e38-0a5a-44fa-aace-27fa4c60a9b5 + - 281107e6-d1ac-4430-8fd8-e841d892e7df status: 200 OK code: 200 - duration: 22.073792ms + duration: 106.61016ms - id: 10 request: proto: HTTP/1.1 @@ -512,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-gw/v1/zones/fr-par-1/ips/e9a1d06f-3444-4b64-a2f6-12bc4c17d681 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/1c08404a-6c5a-4c20-b681-3d07f230fa88 method: GET response: proto: HTTP/2.0 @@ -521,20 +521,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 365 + content_length: 346 uncompressed: false - body: '{"address":"212.47.239.248","created_at":"2025-01-27T09:16:02.071528Z","gateway_id":null,"id":"e9a1d06f-3444-4b64-a2f6-12bc4c17d681","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"tf-reverse-vpcgw.scaleway-terraform.com","tags":[],"updated_at":"2025-01-27T09:16:07.864952Z","zone":"fr-par-1"}' + body: '{"address":"51.15.218.229","created_at":"2025-03-21T14:22:14.415833Z","id":"1c08404a-6c5a-4c20-b681-3d07f230fa88","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"tf-reverse-vpcgw.scaleway-terraform.com","tags":[],"updated_at":"2025-03-21T14:22:20.822754Z","zone":"fr-par-1"}' headers: Content-Length: - - "365" + - "346" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:09 GMT + - Fri, 21 Mar 2025 14:22:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -542,10 +542,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2337ab3d-681b-40d1-925f-c8b107ddff02 + - 9cbcd030-c163-4542-82ce-e4c18836e6d3 status: 200 OK code: 200 - duration: 24.031208ms + duration: 27.361629ms - id: 11 request: proto: HTTP/1.1 @@ -561,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/domain/v2beta1/dns-zones/tf-reverse-vpcgw.scaleway-terraform.com/records?id=31cd2239-db16-463d-96dc-46149ea2f8db&name=&order_by=name_asc&page=1&type=A + - 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/domain/v2beta1/dns-zones/tf-reverse-vpcgw.scaleway-terraform.com/records?id=b3562b47-5989-45cb-a400-71f6d8f5aef3&name=&order_by=name_asc&page=1&type=A method: GET response: proto: HTTP/2.0 @@ -570,20 +570,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 159 + content_length: 158 uncompressed: false - body: '{"records":[{"comment":null,"data":"212.47.239.248","id":"31cd2239-db16-463d-96dc-46149ea2f8db","name":"","priority":1,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"51.15.218.229","id":"b3562b47-5989-45cb-a400-71f6d8f5aef3","name":"","priority":1,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "159" + - "158" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:09 GMT + - Fri, 21 Mar 2025 14:22:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -591,10 +591,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 90bbec12-5bae-426e-9e82-f2a2034a7cf9 + - 74e5df23-ad5e-4308-9e38-3df3108ba202 status: 200 OK code: 200 - duration: 82.653125ms + duration: 119.966534ms - id: 12 request: proto: HTTP/1.1 @@ -610,7 +610,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=tf-reverse-vpcgw.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -621,7 +621,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"tf-reverse-vpcgw","updated_at":"2025-01-27T09:16:04Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"tf-reverse-vpcgw","updated_at":"2025-03-21T14:22:18Z"}],"total_count":1}' headers: Content-Length: - "357" @@ -630,9 +630,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:09 GMT + - Fri, 21 Mar 2025 14:22:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -640,10 +640,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5d41cf7e-90c1-48b3-a11b-e4e5b7d1d6ea + - 88e376a9-7cbf-469e-b4da-b3a9be7f8165 status: 200 OK code: 200 - duration: 91.317334ms + duration: 85.965103ms - id: 13 request: proto: HTTP/1.1 @@ -659,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-gw/v1/zones/fr-par-1/ips/e9a1d06f-3444-4b64-a2f6-12bc4c17d681 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/1c08404a-6c5a-4c20-b681-3d07f230fa88 method: GET response: proto: HTTP/2.0 @@ -668,20 +668,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 365 + content_length: 346 uncompressed: false - body: '{"address":"212.47.239.248","created_at":"2025-01-27T09:16:02.071528Z","gateway_id":null,"id":"e9a1d06f-3444-4b64-a2f6-12bc4c17d681","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"tf-reverse-vpcgw.scaleway-terraform.com","tags":[],"updated_at":"2025-01-27T09:16:07.864952Z","zone":"fr-par-1"}' + body: '{"address":"51.15.218.229","created_at":"2025-03-21T14:22:14.415833Z","id":"1c08404a-6c5a-4c20-b681-3d07f230fa88","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"tf-reverse-vpcgw.scaleway-terraform.com","tags":[],"updated_at":"2025-03-21T14:22:20.822754Z","zone":"fr-par-1"}' headers: Content-Length: - - "365" + - "346" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:09 GMT + - Fri, 21 Mar 2025 14:22:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -689,10 +689,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ce9e2a6b-65d0-4d8c-83bb-ed145a85e694 + - 7c55e686-a4b0-4f4d-bf4c-d62a31f08fcc status: 200 OK code: 200 - duration: 24.876958ms + duration: 27.442429ms - id: 14 request: proto: HTTP/1.1 @@ -708,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-gw/v1/zones/fr-par-1/ips/e9a1d06f-3444-4b64-a2f6-12bc4c17d681 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/1c08404a-6c5a-4c20-b681-3d07f230fa88 method: GET response: proto: HTTP/2.0 @@ -717,20 +717,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 365 + content_length: 346 uncompressed: false - body: '{"address":"212.47.239.248","created_at":"2025-01-27T09:16:02.071528Z","gateway_id":null,"id":"e9a1d06f-3444-4b64-a2f6-12bc4c17d681","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"tf-reverse-vpcgw.scaleway-terraform.com","tags":[],"updated_at":"2025-01-27T09:16:07.864952Z","zone":"fr-par-1"}' + body: '{"address":"51.15.218.229","created_at":"2025-03-21T14:22:14.415833Z","id":"1c08404a-6c5a-4c20-b681-3d07f230fa88","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"tf-reverse-vpcgw.scaleway-terraform.com","tags":[],"updated_at":"2025-03-21T14:22:20.822754Z","zone":"fr-par-1"}' headers: Content-Length: - - "365" + - "346" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:09 GMT + - Fri, 21 Mar 2025 14:22:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -738,10 +738,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ffc50b48-2769-4d05-8b35-904872c2ca7d + - 19f7d32b-278a-4c0d-88e7-a68aeafdcc53 status: 200 OK code: 200 - duration: 23.462334ms + duration: 27.784563ms - id: 15 request: proto: HTTP/1.1 @@ -757,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-gw/v1/zones/fr-par-1/ips/e9a1d06f-3444-4b64-a2f6-12bc4c17d681 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/1c08404a-6c5a-4c20-b681-3d07f230fa88 method: GET response: proto: HTTP/2.0 @@ -766,20 +766,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 365 + content_length: 346 uncompressed: false - body: '{"address":"212.47.239.248","created_at":"2025-01-27T09:16:02.071528Z","gateway_id":null,"id":"e9a1d06f-3444-4b64-a2f6-12bc4c17d681","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"tf-reverse-vpcgw.scaleway-terraform.com","tags":[],"updated_at":"2025-01-27T09:16:07.864952Z","zone":"fr-par-1"}' + body: '{"address":"51.15.218.229","created_at":"2025-03-21T14:22:14.415833Z","id":"1c08404a-6c5a-4c20-b681-3d07f230fa88","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"tf-reverse-vpcgw.scaleway-terraform.com","tags":[],"updated_at":"2025-03-21T14:22:20.822754Z","zone":"fr-par-1"}' headers: Content-Length: - - "365" + - "346" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:09 GMT + - Fri, 21 Mar 2025 14:22:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -787,10 +787,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5b6efd68-282b-45aa-ad4b-5d7a4040bbb7 + - 7f89f000-e621-4101-8fb2-0f52596f6a71 status: 200 OK code: 200 - duration: 21.846667ms + duration: 32.446738ms - id: 16 request: proto: HTTP/1.1 @@ -806,8 +806,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-vpcgw.scaleway-terraform.com/records?id=31cd2239-db16-463d-96dc-46149ea2f8db&name=&order_by=name_asc&page=1&type=A + - 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/domain/v2beta1/dns-zones/tf-reverse-vpcgw.scaleway-terraform.com/records?id=b3562b47-5989-45cb-a400-71f6d8f5aef3&name=&order_by=name_asc&page=1&type=A method: GET response: proto: HTTP/2.0 @@ -815,20 +815,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 159 + content_length: 158 uncompressed: false - body: '{"records":[{"comment":null,"data":"212.47.239.248","id":"31cd2239-db16-463d-96dc-46149ea2f8db","name":"","priority":1,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"51.15.218.229","id":"b3562b47-5989-45cb-a400-71f6d8f5aef3","name":"","priority":1,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "159" + - "158" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:10 GMT + - Fri, 21 Mar 2025 14:22:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -836,10 +836,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f745ba28-9b05-4bbb-9fd9-59b0f2eff24e + - b045bfab-6dd4-4497-999d-e1da2b996c16 status: 200 OK code: 200 - duration: 66.211958ms + duration: 138.36683ms - id: 17 request: proto: HTTP/1.1 @@ -855,7 +855,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=tf-reverse-vpcgw.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -866,7 +866,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"tf-reverse-vpcgw","updated_at":"2025-01-27T09:16:04Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"tf-reverse-vpcgw","updated_at":"2025-03-21T14:22:18Z"}],"total_count":1}' headers: Content-Length: - "357" @@ -875,9 +875,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:10 GMT + - Fri, 21 Mar 2025 14:22:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -885,10 +885,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d0d07ddb-971f-487b-ae20-4a8fbef1fff9 + - 280b3dcf-4f9f-47e6-a257-2f44efe0336b status: 200 OK code: 200 - duration: 71.625292ms + duration: 93.058202ms - id: 18 request: proto: HTTP/1.1 @@ -906,8 +906,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-gw/v1/zones/fr-par-1/ips/e9a1d06f-3444-4b64-a2f6-12bc4c17d681 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/1c08404a-6c5a-4c20-b681-3d07f230fa88 method: PATCH response: proto: HTTP/2.0 @@ -915,20 +915,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 360 + content_length: 340 uncompressed: false - body: '{"address":"212.47.239.248","created_at":"2025-01-27T09:16:02.071528Z","gateway_id":null,"id":"e9a1d06f-3444-4b64-a2f6-12bc4c17d681","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"248-239-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:10.893093Z","zone":"fr-par-1"}' + body: '{"address":"51.15.218.229","created_at":"2025-03-21T14:22:14.415833Z","id":"1c08404a-6c5a-4c20-b681-3d07f230fa88","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"229-218-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:22:23.577231Z","zone":"fr-par-1"}' headers: Content-Length: - - "360" + - "340" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:11 GMT + - Fri, 21 Mar 2025 14:22:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -936,10 +936,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 055fd651-9fda-4481-99b1-7db76f6b9175 + - 09219e3e-c99e-4828-a19a-dc00d9bd35d7 status: 200 OK code: 200 - duration: 321.293709ms + duration: 446.321536ms - id: 19 request: proto: HTTP/1.1 @@ -951,13 +951,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"changes":[{"delete":{"id":"31cd2239-db16-463d-96dc-46149ea2f8db"}}],"return_all_records":false,"disallow_new_zone_creation":false}' + body: '{"changes":[{"delete":{"id":"b3562b47-5989-45cb-a400-71f6d8f5aef3"}}],"return_all_records":false,"disallow_new_zone_creation":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-vpcgw.scaleway-terraform.com/records method: PATCH response: @@ -977,9 +977,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:11 GMT + - Fri, 21 Mar 2025 14:22:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -987,10 +987,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e657db01-f74e-44ee-8120-cc3d9bfe5d96 + - 4166a68b-14c8-467a-bc20-9e0cfe60b1e1 status: 200 OK code: 200 - duration: 106.923875ms + duration: 129.280128ms - id: 20 request: proto: HTTP/1.1 @@ -1006,7 +1006,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-vpcgw.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown method: GET response: @@ -1017,7 +1017,7 @@ interactions: trailer: {} content_length: 299 uncompressed: false - body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"fd415170-9db6-4c9b-b216-9f72516127a2","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"7ffa4dfd-626b-4ab9-8cfe-0605237acf3c","name":"","priority":0,"ttl":1800,"type":"NS"}],"total_count":2}' + body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"9f238a31-81ea-49cd-b659-49eaab1f2a05","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"2db7a689-2f59-4630-a367-93acca44a2b1","name":"","priority":0,"ttl":1800,"type":"NS"}],"total_count":2}' headers: Content-Length: - "299" @@ -1026,9 +1026,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:11 GMT + - Fri, 21 Mar 2025 14:22:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1036,10 +1036,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f84a1d56-8d4d-4d16-8ad8-e89ece253433 + - d9d2ca3b-f6a8-4902-a85a-fe3aa07b8073 status: 200 OK code: 200 - duration: 73.128417ms + duration: 131.794788ms - id: 21 request: proto: HTTP/1.1 @@ -1055,7 +1055,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=tf-reverse-vpcgw.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: @@ -1066,7 +1066,7 @@ interactions: trailer: {} content_length: 358 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"tf-reverse-vpcgw","updated_at":"2025-01-27T09:16:11Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"tf-reverse-vpcgw","updated_at":"2025-03-21T14:22:24Z"}],"total_count":1}' headers: Content-Length: - "358" @@ -1075,9 +1075,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:11 GMT + - Fri, 21 Mar 2025 14:22:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1085,10 +1085,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ae8d6dfd-e497-4d8a-8ea8-873ad0ac3251 + - 650ffd6a-7728-4671-8d33-6715c9cc4350 status: 200 OK code: 200 - duration: 78.793083ms + duration: 127.955018ms - id: 22 request: proto: HTTP/1.1 @@ -1104,7 +1104,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=tf-reverse-vpcgw.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: @@ -1115,7 +1115,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"tf-reverse-vpcgw","updated_at":"2025-01-27T09:16:14Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"tf-reverse-vpcgw","updated_at":"2025-03-21T14:22:28Z"}],"total_count":1}' headers: Content-Length: - "357" @@ -1124,9 +1124,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:16 GMT + - Fri, 21 Mar 2025 14:22:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1134,10 +1134,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 144dfef2-f7e0-4ae9-88bb-244ee83f57f3 + - 0231a704-e5ce-4e6a-b04f-9f3d54c299be status: 200 OK code: 200 - duration: 74.232084ms + duration: 113.415119ms - id: 23 request: proto: HTTP/1.1 @@ -1153,7 +1153,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-vpcgw.scaleway-terraform.com?project_id=105bdce1-64c0-48ab-899d-868455867ecf method: DELETE response: @@ -1173,9 +1173,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:16 GMT + - Fri, 21 Mar 2025 14:22:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1183,10 +1183,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 13d06165-7c8a-4228-9d2d-110baba8a09c + - f2326d2a-eaf3-4aa3-bf90-1ad935d56a55 status: 200 OK code: 200 - duration: 160.627875ms + duration: 181.647407ms - id: 24 request: proto: HTTP/1.1 @@ -1202,8 +1202,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips/e9a1d06f-3444-4b64-a2f6-12bc4c17d681 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/1c08404a-6c5a-4c20-b681-3d07f230fa88 method: GET response: proto: HTTP/2.0 @@ -1211,20 +1211,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 360 + content_length: 340 uncompressed: false - body: '{"address":"212.47.239.248","created_at":"2025-01-27T09:16:02.071528Z","gateway_id":null,"id":"e9a1d06f-3444-4b64-a2f6-12bc4c17d681","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"248-239-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:10.893093Z","zone":"fr-par-1"}' + body: '{"address":"51.15.218.229","created_at":"2025-03-21T14:22:14.415833Z","id":"1c08404a-6c5a-4c20-b681-3d07f230fa88","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"229-218-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:22:23.577231Z","zone":"fr-par-1"}' headers: Content-Length: - - "360" + - "340" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:16 GMT + - Fri, 21 Mar 2025 14:22:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1232,10 +1232,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3f79d5fc-e97a-4825-9216-659854912dd2 + - 1863309d-b908-4596-8ae8-d8a3ca643699 status: 200 OK code: 200 - duration: 26.455958ms + duration: 23.237228ms - id: 25 request: proto: HTTP/1.1 @@ -1251,8 +1251,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-gw/v1/zones/fr-par-1/ips/e9a1d06f-3444-4b64-a2f6-12bc4c17d681 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/1c08404a-6c5a-4c20-b681-3d07f230fa88 method: GET response: proto: HTTP/2.0 @@ -1260,20 +1260,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 360 + content_length: 340 uncompressed: false - body: '{"address":"212.47.239.248","created_at":"2025-01-27T09:16:02.071528Z","gateway_id":null,"id":"e9a1d06f-3444-4b64-a2f6-12bc4c17d681","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"248-239-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:10.893093Z","zone":"fr-par-1"}' + body: '{"address":"51.15.218.229","created_at":"2025-03-21T14:22:14.415833Z","id":"1c08404a-6c5a-4c20-b681-3d07f230fa88","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"229-218-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:22:23.577231Z","zone":"fr-par-1"}' headers: Content-Length: - - "360" + - "340" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:17 GMT + - Fri, 21 Mar 2025 14:22:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1281,10 +1281,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c4e0b099-f1d4-4986-9cb5-cd8754aca1b6 + - 269c1326-c3ca-4e7e-8991-453bfe89d0c4 status: 200 OK code: 200 - duration: 23.663084ms + duration: 28.312401ms - id: 26 request: proto: HTTP/1.1 @@ -1300,8 +1300,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-gw/v1/zones/fr-par-1/ips/e9a1d06f-3444-4b64-a2f6-12bc4c17d681 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/1c08404a-6c5a-4c20-b681-3d07f230fa88 method: DELETE response: proto: HTTP/2.0 @@ -1318,9 +1318,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:18 GMT + - Fri, 21 Mar 2025 14:22:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1328,7 +1328,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7606c2ed-c028-416d-9a63-096bafb4a083 + - cd3fd7cd-ee3b-433c-a8e3-2f01ffd9bdbd status: 204 No Content code: 204 - duration: 834.826833ms + duration: 585.3326ms diff --git a/internal/services/vpcgw/testdata/vpc-public-gateway-ip-with-tags.cassette.yaml b/internal/services/vpcgw/testdata/vpc-public-gateway-ip-with-tags.cassette.yaml index d55873ee5c..8fc8093e52 100644 --- a/internal/services/vpcgw/testdata/vpc-public-gateway-ip-with-tags.cassette.yaml +++ b/internal/services/vpcgw/testdata/vpc-public-gateway-ip-with-tags.cassette.yaml @@ -12,14 +12,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[]}' + 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips method: POST response: proto: HTTP/2.0 @@ -27,20 +27,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 360 + content_length: 340 uncompressed: false - body: '{"address":"51.158.108.123","created_at":"2025-01-27T09:16:01.580158Z","gateway_id":null,"id":"66447dd2-d267-4d84-a2de-1671dabbdc30","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"123-108-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.580158Z","zone":"fr-par-1"}' + body: '{"address":"51.15.211.120","created_at":"2025-03-21T14:20:49.122668Z","id":"fbdf303c-43a8-4d68-9799-8b032e13b9be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"120-211-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:20:49.122668Z","zone":"fr-par-1"}' headers: Content-Length: - - "360" + - "340" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:01 GMT + - Fri, 21 Mar 2025 14:20:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 029e4538-50f4-415d-b771-78030557051c + - c51199d1-20a9-4841-b286-399862093375 status: 200 OK code: 200 - duration: 908.492166ms + duration: 924.65678ms - 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-gw/v1/zones/fr-par-1/ips/66447dd2-d267-4d84-a2de-1671dabbdc30 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/fbdf303c-43a8-4d68-9799-8b032e13b9be method: GET response: proto: HTTP/2.0 @@ -76,20 +76,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 360 + content_length: 340 uncompressed: false - body: '{"address":"51.158.108.123","created_at":"2025-01-27T09:16:01.580158Z","gateway_id":null,"id":"66447dd2-d267-4d84-a2de-1671dabbdc30","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"123-108-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.580158Z","zone":"fr-par-1"}' + body: '{"address":"51.15.211.120","created_at":"2025-03-21T14:20:49.122668Z","id":"fbdf303c-43a8-4d68-9799-8b032e13b9be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"120-211-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:20:49.122668Z","zone":"fr-par-1"}' headers: Content-Length: - - "360" + - "340" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:01 GMT + - Fri, 21 Mar 2025 14:20:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 06cf29b8-1151-44b0-95a7-f76850c20ff4 + - 9273b201-b431-463c-b437-7a66e2f3768f status: 200 OK code: 200 - duration: 53.656834ms + duration: 20.06761ms - 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-gw/v1/zones/fr-par-1/ips/66447dd2-d267-4d84-a2de-1671dabbdc30 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/fbdf303c-43a8-4d68-9799-8b032e13b9be method: GET response: proto: HTTP/2.0 @@ -125,20 +125,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 360 + content_length: 340 uncompressed: false - body: '{"address":"51.158.108.123","created_at":"2025-01-27T09:16:01.580158Z","gateway_id":null,"id":"66447dd2-d267-4d84-a2de-1671dabbdc30","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"123-108-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.580158Z","zone":"fr-par-1"}' + body: '{"address":"51.15.211.120","created_at":"2025-03-21T14:20:49.122668Z","id":"fbdf303c-43a8-4d68-9799-8b032e13b9be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"120-211-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:20:49.122668Z","zone":"fr-par-1"}' headers: Content-Length: - - "360" + - "340" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:01 GMT + - Fri, 21 Mar 2025 14:20:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,10 +146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3f286d21-6045-4187-b7b7-275f399c5691 + - da2ede51-a304-462e-9c36-c1e01f25b02e status: 200 OK code: 200 - duration: 33.017083ms + duration: 25.580319ms - 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-gw/v1/zones/fr-par-1/ips/66447dd2-d267-4d84-a2de-1671dabbdc30 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/fbdf303c-43a8-4d68-9799-8b032e13b9be method: GET response: proto: HTTP/2.0 @@ -174,20 +174,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 360 + content_length: 340 uncompressed: false - body: '{"address":"51.158.108.123","created_at":"2025-01-27T09:16:01.580158Z","gateway_id":null,"id":"66447dd2-d267-4d84-a2de-1671dabbdc30","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"123-108-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.580158Z","zone":"fr-par-1"}' + body: '{"address":"51.15.211.120","created_at":"2025-03-21T14:20:49.122668Z","id":"fbdf303c-43a8-4d68-9799-8b032e13b9be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"120-211-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:20:49.122668Z","zone":"fr-par-1"}' headers: Content-Length: - - "360" + - "340" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:02 GMT + - Fri, 21 Mar 2025 14:20:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -195,10 +195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2203cb78-0a57-4cde-84e1-3916860d4e14 + - eb114daf-952b-41e2-a822-19dfed47a1b0 status: 200 OK code: 200 - duration: 25.445459ms + duration: 19.123936ms - 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-gw/v1/zones/fr-par-1/ips/66447dd2-d267-4d84-a2de-1671dabbdc30 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/fbdf303c-43a8-4d68-9799-8b032e13b9be method: GET response: proto: HTTP/2.0 @@ -223,20 +223,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 360 + content_length: 340 uncompressed: false - body: '{"address":"51.158.108.123","created_at":"2025-01-27T09:16:01.580158Z","gateway_id":null,"id":"66447dd2-d267-4d84-a2de-1671dabbdc30","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"123-108-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.580158Z","zone":"fr-par-1"}' + body: '{"address":"51.15.211.120","created_at":"2025-03-21T14:20:49.122668Z","id":"fbdf303c-43a8-4d68-9799-8b032e13b9be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"120-211-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:20:49.122668Z","zone":"fr-par-1"}' headers: Content-Length: - - "360" + - "340" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:03 GMT + - Fri, 21 Mar 2025 14:20:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -244,10 +244,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f16e181a-f893-487a-a46e-6eda8494c2b5 + - ff959364-849c-4aef-8c91-7f738e086b06 status: 200 OK code: 200 - duration: 23.429708ms + duration: 25.608903ms - id: 5 request: proto: HTTP/1.1 @@ -265,8 +265,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-gw/v1/zones/fr-par-1/ips/66447dd2-d267-4d84-a2de-1671dabbdc30 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/fbdf303c-43a8-4d68-9799-8b032e13b9be method: PATCH response: proto: HTTP/2.0 @@ -274,20 +274,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 371 + content_length: 351 uncompressed: false - body: '{"address":"51.158.108.123","created_at":"2025-01-27T09:16:01.580158Z","gateway_id":null,"id":"66447dd2-d267-4d84-a2de-1671dabbdc30","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"123-108-158-51.instances.scw.cloud","tags":["foo","bar"],"updated_at":"2025-01-27T09:16:04.697606Z","zone":"fr-par-1"}' + body: '{"address":"51.15.211.120","created_at":"2025-03-21T14:20:49.122668Z","id":"fbdf303c-43a8-4d68-9799-8b032e13b9be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"120-211-15-51.instances.scw.cloud","tags":["foo","bar"],"updated_at":"2025-03-21T14:20:51.091991Z","zone":"fr-par-1"}' headers: Content-Length: - - "371" + - "351" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:04 GMT + - Fri, 21 Mar 2025 14:20:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -295,10 +295,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 53a77426-9197-4068-9ddb-e57d7b9b254b + - 33f1473c-bc03-4ed9-b2a1-90916e7da747 status: 200 OK code: 200 - duration: 35.661458ms + duration: 32.100715ms - 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-gw/v1/zones/fr-par-1/ips/66447dd2-d267-4d84-a2de-1671dabbdc30 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/fbdf303c-43a8-4d68-9799-8b032e13b9be method: GET response: proto: HTTP/2.0 @@ -323,20 +323,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 371 + content_length: 351 uncompressed: false - body: '{"address":"51.158.108.123","created_at":"2025-01-27T09:16:01.580158Z","gateway_id":null,"id":"66447dd2-d267-4d84-a2de-1671dabbdc30","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"123-108-158-51.instances.scw.cloud","tags":["foo","bar"],"updated_at":"2025-01-27T09:16:04.697606Z","zone":"fr-par-1"}' + body: '{"address":"51.15.211.120","created_at":"2025-03-21T14:20:49.122668Z","id":"fbdf303c-43a8-4d68-9799-8b032e13b9be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"120-211-15-51.instances.scw.cloud","tags":["foo","bar"],"updated_at":"2025-03-21T14:20:51.091991Z","zone":"fr-par-1"}' headers: Content-Length: - - "371" + - "351" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:04 GMT + - Fri, 21 Mar 2025 14:20:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -344,10 +344,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c2a7a997-335d-48fd-8026-d2d88513b8bf + - 5ea542b3-62c0-44aa-b693-32122be4b608 status: 200 OK code: 200 - duration: 20.544375ms + duration: 19.390827ms - 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-gw/v1/zones/fr-par-1/ips/66447dd2-d267-4d84-a2de-1671dabbdc30 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/fbdf303c-43a8-4d68-9799-8b032e13b9be method: GET response: proto: HTTP/2.0 @@ -372,20 +372,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 371 + content_length: 351 uncompressed: false - body: '{"address":"51.158.108.123","created_at":"2025-01-27T09:16:01.580158Z","gateway_id":null,"id":"66447dd2-d267-4d84-a2de-1671dabbdc30","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"123-108-158-51.instances.scw.cloud","tags":["foo","bar"],"updated_at":"2025-01-27T09:16:04.697606Z","zone":"fr-par-1"}' + body: '{"address":"51.15.211.120","created_at":"2025-03-21T14:20:49.122668Z","id":"fbdf303c-43a8-4d68-9799-8b032e13b9be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"120-211-15-51.instances.scw.cloud","tags":["foo","bar"],"updated_at":"2025-03-21T14:20:51.091991Z","zone":"fr-par-1"}' headers: Content-Length: - - "371" + - "351" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:04 GMT + - Fri, 21 Mar 2025 14:20:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -393,10 +393,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2ae2605b-0114-4d7d-8abf-a60412fb4f4b + - 48f50611-afa0-4ff2-8b06-94d44453f6c5 status: 200 OK code: 200 - duration: 27.827459ms + duration: 21.395461ms - 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-gw/v1/zones/fr-par-1/ips/66447dd2-d267-4d84-a2de-1671dabbdc30 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/fbdf303c-43a8-4d68-9799-8b032e13b9be method: GET response: proto: HTTP/2.0 @@ -421,20 +421,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 371 + content_length: 351 uncompressed: false - body: '{"address":"51.158.108.123","created_at":"2025-01-27T09:16:01.580158Z","gateway_id":null,"id":"66447dd2-d267-4d84-a2de-1671dabbdc30","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"123-108-158-51.instances.scw.cloud","tags":["foo","bar"],"updated_at":"2025-01-27T09:16:04.697606Z","zone":"fr-par-1"}' + body: '{"address":"51.15.211.120","created_at":"2025-03-21T14:20:49.122668Z","id":"fbdf303c-43a8-4d68-9799-8b032e13b9be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"120-211-15-51.instances.scw.cloud","tags":["foo","bar"],"updated_at":"2025-03-21T14:20:51.091991Z","zone":"fr-par-1"}' headers: Content-Length: - - "371" + - "351" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:05 GMT + - Fri, 21 Mar 2025 14:20:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -442,10 +442,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ddf0a4c-ed4d-47f6-8016-0b9ec392aa99 + - 81d46ad6-7907-4bab-9465-56947baaef39 status: 200 OK code: 200 - duration: 28.656334ms + duration: 29.123979ms - 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-gw/v1/zones/fr-par-1/ips/66447dd2-d267-4d84-a2de-1671dabbdc30 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/fbdf303c-43a8-4d68-9799-8b032e13b9be method: DELETE response: proto: HTTP/2.0 @@ -479,9 +479,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:07 GMT + - Fri, 21 Mar 2025 14:20:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -489,10 +489,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a90e80c3-3080-49ed-ba6f-56aaaa5703dc + - d2a79a91-37f3-419f-a472-23b3769bde05 status: 204 No Content code: 204 - duration: 473.73925ms + duration: 828.959153ms - 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-gw/v1/zones/fr-par-1/ips/66447dd2-d267-4d84-a2de-1671dabbdc30 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/fbdf303c-43a8-4d68-9799-8b032e13b9be method: GET response: proto: HTTP/2.0 @@ -519,7 +519,7 @@ interactions: trailer: {} content_length: 123 uncompressed: false - body: '{"message":"resource is not found","resource":"ip","resource_id":"66447dd2-d267-4d84-a2de-1671dabbdc30","type":"not_found"}' + body: '{"message":"resource is not found","resource":"ip","resource_id":"fbdf303c-43a8-4d68-9799-8b032e13b9be","type":"not_found"}' headers: Content-Length: - "123" @@ -528,9 +528,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:07 GMT + - Fri, 21 Mar 2025 14:20:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -538,7 +538,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d80c0529-c4a7-4115-8101-ded017351a28 + - 2fa8c204-6626-4f1d-add6-c6cd27183aeb status: 404 Not Found code: 404 - duration: 24.437916ms + duration: 23.614709ms diff --git a/internal/services/vpcgw/testdata/vpc-public-gateway-ip-with-zone.cassette.yaml b/internal/services/vpcgw/testdata/vpc-public-gateway-ip-with-zone.cassette.yaml index 12f3397a2a..585b718beb 100644 --- a/internal/services/vpcgw/testdata/vpc-public-gateway-ip-with-zone.cassette.yaml +++ b/internal/services/vpcgw/testdata/vpc-public-gateway-ip-with-zone.cassette.yaml @@ -12,14 +12,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[]}' + 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips method: POST response: proto: HTTP/2.0 @@ -27,20 +27,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 356 + content_length: 340 uncompressed: false - body: '{"address":"51.15.250.58","created_at":"2025-01-27T09:16:29.199182Z","gateway_id":null,"id":"0378b68c-940a-4ab7-94be-8c7e96350232","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"58-250-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:29.199182Z","zone":"fr-par-1"}' + body: '{"address":"51.15.196.151","created_at":"2025-03-21T14:20:49.196688Z","id":"ad711ee1-f684-42db-b57c-f4835a3e287d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"151-196-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:20:49.196688Z","zone":"fr-par-1"}' headers: Content-Length: - - "356" + - "340" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:29 GMT + - Fri, 21 Mar 2025 14:20:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d7f44d53-3813-4c32-a2d4-1fb5a076b8a6 + - 490e0723-c516-44af-81e4-8d7ef1517187 status: 200 OK code: 200 - duration: 698.809417ms + duration: 994.425251ms - 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-gw/v1/zones/fr-par-1/ips/0378b68c-940a-4ab7-94be-8c7e96350232 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/ad711ee1-f684-42db-b57c-f4835a3e287d method: GET response: proto: HTTP/2.0 @@ -76,20 +76,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 356 + content_length: 340 uncompressed: false - body: '{"address":"51.15.250.58","created_at":"2025-01-27T09:16:29.199182Z","gateway_id":null,"id":"0378b68c-940a-4ab7-94be-8c7e96350232","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"58-250-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:29.199182Z","zone":"fr-par-1"}' + body: '{"address":"51.15.196.151","created_at":"2025-03-21T14:20:49.196688Z","id":"ad711ee1-f684-42db-b57c-f4835a3e287d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"151-196-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:20:49.196688Z","zone":"fr-par-1"}' headers: Content-Length: - - "356" + - "340" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:29 GMT + - Fri, 21 Mar 2025 14:20:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 66e09e7c-d6f1-43fa-ba7b-47439ae4ac9f + - 9dfc2bc8-35eb-4b68-8d5a-dfd5b62b7d6b status: 200 OK code: 200 - duration: 25.466959ms + duration: 22.890782ms - 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-gw/v1/zones/fr-par-1/ips/0378b68c-940a-4ab7-94be-8c7e96350232 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/ad711ee1-f684-42db-b57c-f4835a3e287d method: GET response: proto: HTTP/2.0 @@ -125,20 +125,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 356 + content_length: 340 uncompressed: false - body: '{"address":"51.15.250.58","created_at":"2025-01-27T09:16:29.199182Z","gateway_id":null,"id":"0378b68c-940a-4ab7-94be-8c7e96350232","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"58-250-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:29.199182Z","zone":"fr-par-1"}' + body: '{"address":"51.15.196.151","created_at":"2025-03-21T14:20:49.196688Z","id":"ad711ee1-f684-42db-b57c-f4835a3e287d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"151-196-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:20:49.196688Z","zone":"fr-par-1"}' headers: Content-Length: - - "356" + - "340" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:29 GMT + - Fri, 21 Mar 2025 14:20:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,10 +146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 97a8f419-27b2-4231-b814-db26ccd824c6 + - a8c957ca-09f6-4822-a542-3e8406fac65a status: 200 OK code: 200 - duration: 22.279708ms + duration: 25.75173ms - 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-gw/v1/zones/fr-par-1/ips/0378b68c-940a-4ab7-94be-8c7e96350232 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/ad711ee1-f684-42db-b57c-f4835a3e287d method: GET response: proto: HTTP/2.0 @@ -174,20 +174,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 356 + content_length: 340 uncompressed: false - body: '{"address":"51.15.250.58","created_at":"2025-01-27T09:16:29.199182Z","gateway_id":null,"id":"0378b68c-940a-4ab7-94be-8c7e96350232","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"58-250-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:29.199182Z","zone":"fr-par-1"}' + body: '{"address":"51.15.196.151","created_at":"2025-03-21T14:20:49.196688Z","id":"ad711ee1-f684-42db-b57c-f4835a3e287d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"151-196-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:20:49.196688Z","zone":"fr-par-1"}' headers: Content-Length: - - "356" + - "340" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:30 GMT + - Fri, 21 Mar 2025 14:20:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -195,10 +195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2bda87de-e8c7-4851-8bc5-2077744de3fe + - 807785dc-bfa4-4b2c-b025-6593efab29d1 status: 200 OK code: 200 - duration: 29.13075ms + duration: 24.146557ms - 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-gw/v1/zones/fr-par-1/ips/0378b68c-940a-4ab7-94be-8c7e96350232 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/ad711ee1-f684-42db-b57c-f4835a3e287d method: GET response: proto: HTTP/2.0 @@ -223,20 +223,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 356 + content_length: 340 uncompressed: false - body: '{"address":"51.15.250.58","created_at":"2025-01-27T09:16:29.199182Z","gateway_id":null,"id":"0378b68c-940a-4ab7-94be-8c7e96350232","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"58-250-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:29.199182Z","zone":"fr-par-1"}' + body: '{"address":"51.15.196.151","created_at":"2025-03-21T14:20:49.196688Z","id":"ad711ee1-f684-42db-b57c-f4835a3e287d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"151-196-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:20:49.196688Z","zone":"fr-par-1"}' headers: Content-Length: - - "356" + - "340" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:30 GMT + - Fri, 21 Mar 2025 14:20:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -244,10 +244,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ae4429ca-b8c7-40a5-a6b7-cc9a405632c6 + - 79281122-2844-4ffb-ad87-bd42864e82e9 status: 200 OK code: 200 - duration: 42.163791ms + duration: 21.055995ms - id: 5 request: proto: HTTP/1.1 @@ -263,8 +263,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-gw/v1/zones/fr-par-1/ips/0378b68c-940a-4ab7-94be-8c7e96350232 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/ad711ee1-f684-42db-b57c-f4835a3e287d method: DELETE response: proto: HTTP/2.0 @@ -281,9 +281,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:32 GMT + - Fri, 21 Mar 2025 14:20:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -291,10 +291,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 69824866-2b2a-410c-9fb6-36dda2ece363 + - 80054c82-778d-41a3-838b-dd41c2d15d9a status: 204 No Content code: 204 - duration: 696.300417ms + duration: 572.102128ms - id: 6 request: proto: HTTP/1.1 @@ -306,14 +306,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[]}' + 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/ips + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/ips method: POST response: proto: HTTP/2.0 @@ -321,20 +321,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 360 + content_length: 336 uncompressed: false - body: '{"address":"51.158.173.124","created_at":"2025-01-27T09:16:33.284247Z","gateway_id":null,"id":"315b3539-5306-4530-9025-8e7c25528ec8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"124-173-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:33.284247Z","zone":"nl-ams-1"}' + body: '{"address":"51.15.98.45","created_at":"2025-03-21T14:20:52.529946Z","id":"393a06cd-1989-459e-b09b-16a809bca25b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"45-98-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:20:52.529946Z","zone":"nl-ams-1"}' headers: Content-Length: - - "360" + - "336" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:33 GMT + - Fri, 21 Mar 2025 14:20:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -342,10 +342,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 08cd19e2-84df-403f-9514-6115d91a9b6b + - af488413-be01-420c-9b7b-47bff0b5cd7a status: 200 OK code: 200 - duration: 739.096958ms + duration: 864.003947ms - 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-gw/v1/zones/nl-ams-1/ips/315b3539-5306-4530-9025-8e7c25528ec8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/ips/393a06cd-1989-459e-b09b-16a809bca25b method: GET response: proto: HTTP/2.0 @@ -370,20 +370,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 360 + content_length: 336 uncompressed: false - body: '{"address":"51.158.173.124","created_at":"2025-01-27T09:16:33.284247Z","gateway_id":null,"id":"315b3539-5306-4530-9025-8e7c25528ec8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"124-173-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:33.284247Z","zone":"nl-ams-1"}' + body: '{"address":"51.15.98.45","created_at":"2025-03-21T14:20:52.529946Z","id":"393a06cd-1989-459e-b09b-16a809bca25b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"45-98-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:20:52.529946Z","zone":"nl-ams-1"}' headers: Content-Length: - - "360" + - "336" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:33 GMT + - Fri, 21 Mar 2025 14:20:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -391,10 +391,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c3cfa50f-591c-4218-a0fa-90f5ff48d410 + - 4ee62e85-438d-45bc-9d07-206d600ed7ff status: 200 OK code: 200 - duration: 91.018417ms + duration: 78.385674ms - id: 8 request: proto: HTTP/1.1 @@ -410,8 +410,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-gw/v1/zones/nl-ams-1/ips/315b3539-5306-4530-9025-8e7c25528ec8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/ips/393a06cd-1989-459e-b09b-16a809bca25b method: GET response: proto: HTTP/2.0 @@ -419,20 +419,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 360 + content_length: 336 uncompressed: false - body: '{"address":"51.158.173.124","created_at":"2025-01-27T09:16:33.284247Z","gateway_id":null,"id":"315b3539-5306-4530-9025-8e7c25528ec8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"124-173-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:33.284247Z","zone":"nl-ams-1"}' + body: '{"address":"51.15.98.45","created_at":"2025-03-21T14:20:52.529946Z","id":"393a06cd-1989-459e-b09b-16a809bca25b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"45-98-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:20:52.529946Z","zone":"nl-ams-1"}' headers: Content-Length: - - "360" + - "336" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:33 GMT + - Fri, 21 Mar 2025 14:20:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -440,10 +440,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e3ca46df-8294-4b0f-8731-4ebb94ad51b2 + - 145a3220-a3f6-4b9b-8349-724c46f62396 status: 200 OK code: 200 - duration: 37.5715ms + duration: 43.88133ms - 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-gw/v1/zones/nl-ams-1/ips/315b3539-5306-4530-9025-8e7c25528ec8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/ips/393a06cd-1989-459e-b09b-16a809bca25b method: GET response: proto: HTTP/2.0 @@ -468,20 +468,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 360 + content_length: 336 uncompressed: false - body: '{"address":"51.158.173.124","created_at":"2025-01-27T09:16:33.284247Z","gateway_id":null,"id":"315b3539-5306-4530-9025-8e7c25528ec8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"124-173-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:33.284247Z","zone":"nl-ams-1"}' + body: '{"address":"51.15.98.45","created_at":"2025-03-21T14:20:52.529946Z","id":"393a06cd-1989-459e-b09b-16a809bca25b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"45-98-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:20:52.529946Z","zone":"nl-ams-1"}' headers: Content-Length: - - "360" + - "336" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:34 GMT + - Fri, 21 Mar 2025 14:20:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -489,10 +489,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d66279fc-07b3-4cfd-9410-70e543b7a23e + - 480298de-8b64-4581-b1da-7f3ee5900c0c status: 200 OK code: 200 - duration: 84.026666ms + duration: 66.959806ms - 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-gw/v1/zones/nl-ams-1/ips/315b3539-5306-4530-9025-8e7c25528ec8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/ips/393a06cd-1989-459e-b09b-16a809bca25b method: DELETE response: proto: HTTP/2.0 @@ -526,9 +526,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:35 GMT + - Fri, 21 Mar 2025 14:20:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -536,10 +536,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ccbba3a2-9898-433d-8b41-058450d86350 + - ceb938ba-2f38-4335-9bbe-d95c7bd1aaa3 status: 204 No Content code: 204 - duration: 595.425375ms + duration: 704.85919ms - id: 11 request: proto: HTTP/1.1 @@ -555,8 +555,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-gw/v1/zones/nl-ams-1/ips/315b3539-5306-4530-9025-8e7c25528ec8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/ips/393a06cd-1989-459e-b09b-16a809bca25b method: GET response: proto: HTTP/2.0 @@ -566,7 +566,7 @@ interactions: trailer: {} content_length: 123 uncompressed: false - body: '{"message":"resource is not found","resource":"ip","resource_id":"315b3539-5306-4530-9025-8e7c25528ec8","type":"not_found"}' + body: '{"message":"resource is not found","resource":"ip","resource_id":"393a06cd-1989-459e-b09b-16a809bca25b","type":"not_found"}' headers: Content-Length: - "123" @@ -575,9 +575,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:35 GMT + - Fri, 21 Mar 2025 14:20:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -585,7 +585,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c4a1e573-0446-4834-911a-c8276c5fac8f + - b0be77ca-3044-45e6-aa0c-157babeac1f8 status: 404 Not Found code: 404 - duration: 114.7835ms + duration: 39.440931ms diff --git a/internal/services/vpcgw/testdata/vpc-public-gateway-pat-rule-basic.cassette.yaml b/internal/services/vpcgw/testdata/vpc-public-gateway-pat-rule-basic.cassette.yaml index d83c63cf18..9792e6bc29 100644 --- a/internal/services/vpcgw/testdata/vpc-public-gateway-pat-rule-basic.cassette.yaml +++ b/internal/services/vpcgw/testdata/vpc-public-gateway-pat-rule-basic.cassette.yaml @@ -6,20 +6,20 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 79 + content_length: 106 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"192.168.1.0/24"}' + body: '{"name":"My Private Network","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":null}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: proto: HTTP/2.0 @@ -27,20 +27,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 568 + content_length: 1022 uncompressed: false - body: '{"address":"192.168.1.1","created_at":"2025-01-27T09:16:28.024730Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"f10e58bf-ffdc-4e95-aec6-db5d6f259f84","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:28.024730Z","valid_lifetime":"3600s","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-21T14:11:57.123890Z","dhcp_enabled":true,"id":"2349f7dc-7faa-4e9b-9555-211cc8e75b09","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-03-21T14:11:57.123890Z","id":"f50b6a53-1f1e-40e0-8b6a-b6b40b8f95e7","private_network_id":"2349f7dc-7faa-4e9b-9555-211cc8e75b09","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.60.0/22","updated_at":"2025-03-21T14:11:57.123890Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-03-21T14:11:57.123890Z","id":"fdaeab25-c543-48a3-b6ce-a12dd1510fdf","private_network_id":"2349f7dc-7faa-4e9b-9555-211cc8e75b09","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:dbe1::/64","updated_at":"2025-03-21T14:11:57.123890Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-03-21T14:11:57.123890Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "568" + - "1022" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:28 GMT + - Fri, 21 Mar 2025 14:11:57 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b31bdc9a-4005-420c-8197-bef8ba3a79a8 + - 8730edb3-957f-482e-9112-26f8b6d85af7 status: 200 OK code: 200 - duration: 158.917042ms + duration: 690.103327ms - 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-gw/v1/zones/fr-par-1/dhcps/f10e58bf-ffdc-4e95-aec6-db5d6f259f84 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2349f7dc-7faa-4e9b-9555-211cc8e75b09 method: GET response: proto: HTTP/2.0 @@ -76,20 +76,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 568 + content_length: 1022 uncompressed: false - body: '{"address":"192.168.1.1","created_at":"2025-01-27T09:16:28.024730Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"f10e58bf-ffdc-4e95-aec6-db5d6f259f84","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:28.024730Z","valid_lifetime":"3600s","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-21T14:11:57.123890Z","dhcp_enabled":true,"id":"2349f7dc-7faa-4e9b-9555-211cc8e75b09","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-03-21T14:11:57.123890Z","id":"f50b6a53-1f1e-40e0-8b6a-b6b40b8f95e7","private_network_id":"2349f7dc-7faa-4e9b-9555-211cc8e75b09","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.60.0/22","updated_at":"2025-03-21T14:11:57.123890Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-03-21T14:11:57.123890Z","id":"fdaeab25-c543-48a3-b6ce-a12dd1510fdf","private_network_id":"2349f7dc-7faa-4e9b-9555-211cc8e75b09","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:dbe1::/64","updated_at":"2025-03-21T14:11:57.123890Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-03-21T14:11:57.123890Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "568" + - "1022" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:28 GMT + - Fri, 21 Mar 2025 14:11:57 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,50 +97,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 06e12e87-2998-4125-a2ca-2aa34d757e41 + - dda7293e-338b-4c38-81fd-37e38e417c0b status: 200 OK code: 200 - duration: 23.861ms + duration: 53.626122ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 103 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"pn_test_network","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null}' + 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 - method: POST + - 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/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: 1018 + content_length: 38958 uncompressed: false - body: '{"created_at":"2025-01-27T09:16:28.054538Z","dhcp_enabled":true,"id":"83c51f71-1f95-4294-b386-ab79277bd543","name":"pn_test_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-27T09:16:28.054538Z","id":"1283f8de-d3f3-4a95-9a28-cf78ddc27aa6","private_network_id":"83c51f71-1f95-4294-b386-ab79277bd543","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.20.0/22","updated_at":"2025-01-27T09:16:28.054538Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-01-27T09:16:28.054538Z","id":"e815901f-9e08-45ec-a028-93213a8777b7","private_network_id":"83c51f71-1f95-4294-b386-ab79277bd543","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:f96::/64","updated_at":"2025-01-27T09:16:28.054538Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-01-27T09:16:28.054538Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + 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":2,"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":1,"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":4,"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":1,"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":1,"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":6710886400,"capabilities":{"block_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":13421772800,"capabilities":{"block_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":6710886400,"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":6710886400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_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":10066329600,"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":13421772800,"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":6710886400,"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":10066329600,"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":13421772800,"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":0,"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":6710886400,"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":10066329600,"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":13421772800,"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}}}}' headers: Content-Length: - - "1018" + - "38958" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:28 GMT + - Fri, 21 Mar 2025 14:11:57 GMT + Link: + - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -148,10 +148,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 514b072f-cdf4-4a80-b320-b93fe6521a42 + - 9126d4ec-a8d2-4cf4-ab13-87e1a3475fa3 + X-Total-Count: + - "71" status: 200 OK code: 200 - duration: 495.208625ms + duration: 36.57599ms - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/83c51f71-1f95-4294-b386-ab79277bd543 + - 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/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: proto: HTTP/2.0 @@ -176,20 +178,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1018 + content_length: 16732 uncompressed: false - body: '{"created_at":"2025-01-27T09:16:28.054538Z","dhcp_enabled":true,"id":"83c51f71-1f95-4294-b386-ab79277bd543","name":"pn_test_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-27T09:16:28.054538Z","id":"1283f8de-d3f3-4a95-9a28-cf78ddc27aa6","private_network_id":"83c51f71-1f95-4294-b386-ab79277bd543","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.20.0/22","updated_at":"2025-01-27T09:16:28.054538Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-01-27T09:16:28.054538Z","id":"e815901f-9e08-45ec-a028-93213a8777b7","private_network_id":"83c51f71-1f95-4294-b386-ab79277bd543","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:f96::/64","updated_at":"2025-01-27T09:16:28.054538Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-01-27T09:16:28.054538Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + 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":5,"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":2,"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":1,"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}}}}' headers: Content-Length: - - "1018" + - "16732" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:28 GMT + - Fri, 21 Mar 2025 14:11:57 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,50 +201,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 227f828f-4acf-463e-9cbc-e165b3fa8b8b + - 0b1881ea-0176-4b44-bc39-35e4470cb347 + X-Total-Count: + - "71" status: 200 OK code: 200 - duration: 25.810208ms + duration: 46.813041ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 182 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"tf-pn-blissful-solomon","tags":[],"type":"VPC-GW-S","upstream_dns_servers":[],"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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways - method: POST + - 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/marketplace/v2/local-images?image_label=debian_bullseye&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: 986 + content_length: 1275 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:28.665368Z","gateway_networks":[],"id":"96a4883f-2b9a-4654-a533-c80799700bd4","ip":{"address":"212.47.239.248","created_at":"2025-01-27T09:16:28.645733Z","gateway_id":"96a4883f-2b9a-4654-a533-c80799700bd4","id":"5560876a-dac5-4715-a633-4e347b940af0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"248-239-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:28.645733Z","zone":"fr-par-1"},"ip_mobility_enabled":false,"is_legacy":false,"name":"tf-pn-blissful-solomon","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:28.665368Z","upstream_dns_servers":[],"version":null,"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-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}' headers: Content-Length: - - "986" + - "1275" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:28 GMT + - Fri, 21 Mar 2025 14:11:57 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -248,48 +252,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 381835a6-90f4-4a4b-9d39-b19e8c97c5b2 + - bc8021ea-030d-40f4-9bcd-36934693dabc status: 200 OK code: 200 - duration: 721.753917ms + duration: 69.915573ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 63 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/96a4883f-2b9a-4654-a533-c80799700bd4 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 988 + content_length: 338 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:28.665368Z","gateway_networks":[],"id":"96a4883f-2b9a-4654-a533-c80799700bd4","ip":{"address":"212.47.239.248","created_at":"2025-01-27T09:16:28.645733Z","gateway_id":"96a4883f-2b9a-4654-a533-c80799700bd4","id":"5560876a-dac5-4715-a633-4e347b940af0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"248-239-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:28.645733Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"tf-pn-blissful-solomon","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:28.709137Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"address":"51.15.212.27","created_at":"2025-03-21T14:11:58.311645Z","id":"bbcad05c-f663-46c5-9a96-0411b7ef45d5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"27-212-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:11:58.311645Z","zone":"fr-par-1"}' headers: Content-Length: - - "988" + - "338" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:28 GMT + - Fri, 21 Mar 2025 14:11:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -297,10 +303,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bf43b5e0-09c9-4603-b67e-521088719e72 + - 70ca3950-f445-4362-8255-bd0b46fdc884 status: 200 OK code: 200 - duration: 57.755792ms + duration: 1.358123263s - id: 6 request: proto: HTTP/1.1 @@ -316,8 +322,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-gw/v1/zones/fr-par-1/gateways/96a4883f-2b9a-4654-a533-c80799700bd4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/bbcad05c-f663-46c5-9a96-0411b7ef45d5 method: GET response: proto: HTTP/2.0 @@ -325,20 +331,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 985 + content_length: 338 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:28.665368Z","gateway_networks":[],"id":"96a4883f-2b9a-4654-a533-c80799700bd4","ip":{"address":"212.47.239.248","created_at":"2025-01-27T09:16:28.645733Z","gateway_id":"96a4883f-2b9a-4654-a533-c80799700bd4","id":"5560876a-dac5-4715-a633-4e347b940af0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"248-239-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:28.645733Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"tf-pn-blissful-solomon","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:33.624936Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"address":"51.15.212.27","created_at":"2025-03-21T14:11:58.311645Z","id":"bbcad05c-f663-46c5-9a96-0411b7ef45d5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"27-212-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:11:58.311645Z","zone":"fr-par-1"}' headers: Content-Length: - - "985" + - "338" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:33 GMT + - Fri, 21 Mar 2025 14:11:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -346,48 +352,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b48a3b67-2d08-4aa0-933b-4b4ddcd23a2f + - ba183430-e5c9-45fa-af96-b3bb96f46b2c status: 200 OK code: 200 - duration: 32.945917ms + duration: 23.10678ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 199 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"The Public Gateway","tags":[],"type":"VPC-GW-S","ip_id":"bbcad05c-f663-46c5-9a96-0411b7ef45d5","enable_smtp":false,"enable_bastion":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-gw/v1/zones/fr-par-1/gateways/96a4883f-2b9a-4654-a533-c80799700bd4 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-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: 985 + content_length: 892 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:28.665368Z","gateway_networks":[],"id":"96a4883f-2b9a-4654-a533-c80799700bd4","ip":{"address":"212.47.239.248","created_at":"2025-01-27T09:16:28.645733Z","gateway_id":"96a4883f-2b9a-4654-a533-c80799700bd4","id":"5560876a-dac5-4715-a633-4e347b940af0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"248-239-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:28.645733Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"tf-pn-blissful-solomon","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:33.624936Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:11:58.519233Z","gateway_networks":[],"id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","ipv4":{"address":"51.15.212.27","created_at":"2025-03-21T14:11:58.311645Z","gateway_id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","id":"bbcad05c-f663-46c5-9a96-0411b7ef45d5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"27-212-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:11:58.311645Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","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-03-21T14:11:58.519233Z","zone":"fr-par-1"}' headers: Content-Length: - - "985" + - "892" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:33 GMT + - Fri, 21 Mar 2025 14:11:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -395,10 +403,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 44d6cf7b-3085-41f2-ad02-c7ccd27e1465 + - 4a590c59-e439-4f33-8ebe-f97cb361c7c4 status: 200 OK code: 200 - duration: 30.093ms + duration: 117.868321ms - id: 8 request: proto: HTTP/1.1 @@ -414,8 +422,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-gw/v1/zones/fr-par-1/dhcps/f10e58bf-ffdc-4e95-aec6-db5d6f259f84 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/ee871877-a16b-4ff6-8589-334a5a07d3e0 method: GET response: proto: HTTP/2.0 @@ -423,20 +431,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 568 + content_length: 910 uncompressed: false - body: '{"address":"192.168.1.1","created_at":"2025-01-27T09:16:28.024730Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"f10e58bf-ffdc-4e95-aec6-db5d6f259f84","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:28.024730Z","valid_lifetime":"3600s","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:11:58.519233Z","gateway_networks":[],"id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","ipv4":{"address":"51.15.212.27","created_at":"2025-03-21T14:11:58.311645Z","gateway_id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","id":"bbcad05c-f663-46c5-9a96-0411b7ef45d5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"27-212-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:11:58.311645Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","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-03-21T14:11:58.563618Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "568" + - "910" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:34 GMT + - Fri, 21 Mar 2025 14:11:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -444,48 +452,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 519836d5-91bf-4404-8dda-16fad50ff50b + - 37cc8bdf-3d5e-4167-9d19-8bcad70cc6d9 status: 200 OK code: 200 - duration: 28.841542ms + duration: 53.607471ms - id: 9 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":"Scaleway Instance","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"6465cef1-374a-451c-bc2d-e2d179625dad","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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/96a4883f-2b9a-4654-a533-c80799700bd4 - method: GET + - 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/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: 985 + content_length: 1674 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:28.665368Z","gateway_networks":[],"id":"96a4883f-2b9a-4654-a533-c80799700bd4","ip":{"address":"212.47.239.248","created_at":"2025-01-27T09:16:28.645733Z","gateway_id":"96a4883f-2b9a-4654-a533-c80799700bd4","id":"5560876a-dac5-4715-a633-4e347b940af0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"248-239-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:28.645733Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"tf-pn-blissful-solomon","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:33.624936Z","upstream_dns_servers":[],"version":"0.7.3","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-03-21T14:11:58.196970+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"cc561dfa-1765-43be-9c45-7cd661260076","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:9d:eb:9d","maintenances":[],"modification_date":"2025-03-21T14:11:58.196970+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":"97cc3c6c-f528-4192-a733-1b98c17c3e1d","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"7017e119-8d53-4af3-ae9f-d7daf0931bf3","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "985" + - "1674" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:34 GMT + - Fri, 21 Mar 2025 14:11:59 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cc561dfa-1765-43be-9c45-7cd661260076 Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -493,10 +505,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1676d5fc-0f23-4943-9660-be510a69b96d - status: 200 OK - code: 200 - duration: 30.055791ms + - 55d06fd2-a08a-42c6-b3b3-6abf253424f6 + status: 201 Created + code: 201 + duration: 1.333365656s - id: 10 request: proto: HTTP/1.1 @@ -512,8 +524,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/83c51f71-1f95-4294-b386-ab79277bd543 + - 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/instance/v1/zones/fr-par-1/servers/cc561dfa-1765-43be-9c45-7cd661260076 method: GET response: proto: HTTP/2.0 @@ -521,20 +533,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1018 + content_length: 1674 uncompressed: false - body: '{"created_at":"2025-01-27T09:16:28.054538Z","dhcp_enabled":true,"id":"83c51f71-1f95-4294-b386-ab79277bd543","name":"pn_test_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-27T09:16:28.054538Z","id":"1283f8de-d3f3-4a95-9a28-cf78ddc27aa6","private_network_id":"83c51f71-1f95-4294-b386-ab79277bd543","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.20.0/22","updated_at":"2025-01-27T09:16:28.054538Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-01-27T09:16:28.054538Z","id":"e815901f-9e08-45ec-a028-93213a8777b7","private_network_id":"83c51f71-1f95-4294-b386-ab79277bd543","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:f96::/64","updated_at":"2025-01-27T09:16:28.054538Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-01-27T09:16:28.054538Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-03-21T14:11:58.196970+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"cc561dfa-1765-43be-9c45-7cd661260076","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:9d:eb:9d","maintenances":[],"modification_date":"2025-03-21T14:11:58.196970+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":"97cc3c6c-f528-4192-a733-1b98c17c3e1d","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"7017e119-8d53-4af3-ae9f-d7daf0931bf3","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1018" + - "1674" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:34 GMT + - Fri, 21 Mar 2025 14:11:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -542,10 +554,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7a123479-f056-4bad-9782-29331b7e8f81 + - 28ac6491-e2a7-4fa7-a85d-be037853c508 status: 200 OK code: 200 - duration: 29.866708ms + duration: 171.958118ms - id: 11 request: proto: HTTP/1.1 @@ -561,8 +573,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-gw/v1/zones/fr-par-1/dhcps/f10e58bf-ffdc-4e95-aec6-db5d6f259f84 + - 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/instance/v1/zones/fr-par-1/servers/cc561dfa-1765-43be-9c45-7cd661260076 method: GET response: proto: HTTP/2.0 @@ -570,20 +582,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 568 + content_length: 1674 uncompressed: false - body: '{"address":"192.168.1.1","created_at":"2025-01-27T09:16:28.024730Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"f10e58bf-ffdc-4e95-aec6-db5d6f259f84","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:28.024730Z","valid_lifetime":"3600s","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-03-21T14:11:58.196970+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"cc561dfa-1765-43be-9c45-7cd661260076","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:9d:eb:9d","maintenances":[],"modification_date":"2025-03-21T14:11:58.196970+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":"97cc3c6c-f528-4192-a733-1b98c17c3e1d","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"7017e119-8d53-4af3-ae9f-d7daf0931bf3","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "568" + - "1674" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:35 GMT + - Fri, 21 Mar 2025 14:11:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -591,10 +603,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3f1b9e7f-8875-4ea2-af30-da33ab748cb4 + - 8d5605ad-8658-424b-9b05-796fb4091989 status: 200 OK code: 200 - duration: 24.40125ms + duration: 158.575403ms - id: 12 request: proto: HTTP/1.1 @@ -610,8 +622,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-gw/v1/zones/fr-par-1/gateways/96a4883f-2b9a-4654-a533-c80799700bd4 + - 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/block/v1alpha1/zones/fr-par-1/volumes/7017e119-8d53-4af3-ae9f-d7daf0931bf3 method: GET response: proto: HTTP/2.0 @@ -619,20 +631,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 985 + content_length: 673 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:28.665368Z","gateway_networks":[],"id":"96a4883f-2b9a-4654-a533-c80799700bd4","ip":{"address":"212.47.239.248","created_at":"2025-01-27T09:16:28.645733Z","gateway_id":"96a4883f-2b9a-4654-a533-c80799700bd4","id":"5560876a-dac5-4715-a633-4e347b940af0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"248-239-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:28.645733Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"tf-pn-blissful-solomon","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:33.624936Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-21T14:11:58.342345Z","id":"7017e119-8d53-4af3-ae9f-d7daf0931bf3","last_detached_at":null,"name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"6ba10234-492c-443d-9f5d-2bea203f4fb2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-03-21T14:11:58.342345Z","id":"95d43f8b-03eb-4a52-886a-6c9b77d0586a","product_resource_id":"cc561dfa-1765-43be-9c45-7cd661260076","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-03-21T14:11:58.342345Z","zone":"fr-par-1"}' headers: Content-Length: - - "985" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:35 GMT + - Fri, 21 Mar 2025 14:11:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -640,48 +652,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bc18fc91-8be4-45f9-8480-11b6e1e9d0e6 + - 74f41491-fa84-4148-b920-d865d32bfb4f status: 200 OK code: 200 - duration: 27.21425ms + duration: 50.980188ms - id: 13 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/83c51f71-1f95-4294-b386-ab79277bd543 - method: GET + - 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/instance/v1/zones/fr-par-1/servers/cc561dfa-1765-43be-9c45-7cd661260076/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1018 + content_length: 357 uncompressed: false - body: '{"created_at":"2025-01-27T09:16:28.054538Z","dhcp_enabled":true,"id":"83c51f71-1f95-4294-b386-ab79277bd543","name":"pn_test_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-27T09:16:28.054538Z","id":"1283f8de-d3f3-4a95-9a28-cf78ddc27aa6","private_network_id":"83c51f71-1f95-4294-b386-ab79277bd543","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.20.0/22","updated_at":"2025-01-27T09:16:28.054538Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-01-27T09:16:28.054538Z","id":"e815901f-9e08-45ec-a028-93213a8777b7","private_network_id":"83c51f71-1f95-4294-b386-ab79277bd543","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:f96::/64","updated_at":"2025-01-27T09:16:28.054538Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-01-27T09:16:28.054538Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/cc561dfa-1765-43be-9c45-7cd661260076/action","href_result":"/servers/cc561dfa-1765-43be-9c45-7cd661260076","id":"bedcccdf-d7ea-41fb-9fe1-a9d40ca21780","progress":0,"started_at":"2025-03-21T14:11:59.937384+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "1018" + - "357" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:35 GMT + - Fri, 21 Mar 2025 14:11:59 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/bedcccdf-d7ea-41fb-9fe1-a9d40ca21780 Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -689,10 +705,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d79da31c-23bd-46a8-a53d-6cc7da3e7207 - status: 200 OK - code: 200 - duration: 26.223583ms + - 3aa0fe64-ac0f-4842-b399-71bf62e98c8a + status: 202 Accepted + code: 202 + duration: 333.59806ms - id: 14 request: proto: HTTP/1.1 @@ -708,8 +724,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-gw/v1/zones/fr-par-1/gateways/96a4883f-2b9a-4654-a533-c80799700bd4 + - 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/instance/v1/zones/fr-par-1/servers/cc561dfa-1765-43be-9c45-7cd661260076 method: GET response: proto: HTTP/2.0 @@ -717,20 +733,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 985 + content_length: 1696 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:28.665368Z","gateway_networks":[],"id":"96a4883f-2b9a-4654-a533-c80799700bd4","ip":{"address":"212.47.239.248","created_at":"2025-01-27T09:16:28.645733Z","gateway_id":"96a4883f-2b9a-4654-a533-c80799700bd4","id":"5560876a-dac5-4715-a633-4e347b940af0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"248-239-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:28.645733Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"tf-pn-blissful-solomon","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:33.624936Z","upstream_dns_servers":[],"version":"0.7.3","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-03-21T14:11:58.196970+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"cc561dfa-1765-43be-9c45-7cd661260076","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:9d:eb:9d","maintenances":[],"modification_date":"2025-03-21T14:11:59.716414+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":"97cc3c6c-f528-4192-a733-1b98c17c3e1d","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"7017e119-8d53-4af3-ae9f-d7daf0931bf3","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "985" + - "1696" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:36 GMT + - Fri, 21 Mar 2025 14:12:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -738,50 +754,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5cd1fee1-13d7-4e7e-ae99-4673851d3536 + - 473fbb1b-8210-45b1-a186-d6ed0a7605ec status: 200 OK code: 200 - duration: 27.095458ms + duration: 170.11528ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 206 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"gateway_id":"96a4883f-2b9a-4654-a533-c80799700bd4","private_network_id":"83c51f71-1f95-4294-b386-ab79277bd543","enable_masquerade":true,"enable_dhcp":true,"dhcp_id":"f10e58bf-ffdc-4e95-aec6-db5d6f259f84"}' + 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-gw/v1/zones/fr-par-1/gateway-networks - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/ee871877-a16b-4ff6-8589-334a5a07d3e0 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 953 + content_length: 907 uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:38.699371Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:28.024730Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"f10e58bf-ffdc-4e95-aec6-db5d6f259f84","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:28.024730Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"96a4883f-2b9a-4654-a533-c80799700bd4","id":"a0ac31d0-658f-4093-a045-9a7cc63dcf50","ipam_config":null,"mac_address":null,"private_network_id":"83c51f71-1f95-4294-b386-ab79277bd543","status":"created","updated_at":"2025-01-27T09:16:38.699371Z","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:11:58.519233Z","gateway_networks":[],"id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","ipv4":{"address":"51.15.212.27","created_at":"2025-03-21T14:11:58.311645Z","gateway_id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","id":"bbcad05c-f663-46c5-9a96-0411b7ef45d5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"27-212-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:11:58.311645Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","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-03-21T14:12:03.473641Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "953" + - "907" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:38 GMT + - Fri, 21 Mar 2025 14:12:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -789,10 +803,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5e355da7-796f-4005-852f-aad7af59c3a1 + - ea80f083-81f8-4687-a060-30861b8d86ec status: 200 OK code: 200 - duration: 2.325045791s + duration: 58.573362ms - id: 16 request: proto: HTTP/1.1 @@ -808,8 +822,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-gw/v1/zones/fr-par-1/gateways/96a4883f-2b9a-4654-a533-c80799700bd4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/ee871877-a16b-4ff6-8589-334a5a07d3e0 method: GET response: proto: HTTP/2.0 @@ -817,20 +831,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1941 + content_length: 907 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:28.665368Z","gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:38.699371Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:28.024730Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"f10e58bf-ffdc-4e95-aec6-db5d6f259f84","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:28.024730Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"96a4883f-2b9a-4654-a533-c80799700bd4","id":"a0ac31d0-658f-4093-a045-9a7cc63dcf50","ipam_config":null,"mac_address":null,"private_network_id":"83c51f71-1f95-4294-b386-ab79277bd543","status":"created","updated_at":"2025-01-27T09:16:38.699371Z","zone":"fr-par-1"}],"id":"96a4883f-2b9a-4654-a533-c80799700bd4","ip":{"address":"212.47.239.248","created_at":"2025-01-27T09:16:28.645733Z","gateway_id":"96a4883f-2b9a-4654-a533-c80799700bd4","id":"5560876a-dac5-4715-a633-4e347b940af0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"248-239-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:28.645733Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"tf-pn-blissful-solomon","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:38.862732Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:11:58.519233Z","gateway_networks":[],"id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","ipv4":{"address":"51.15.212.27","created_at":"2025-03-21T14:11:58.311645Z","gateway_id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","id":"bbcad05c-f663-46c5-9a96-0411b7ef45d5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"27-212-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:11:58.311645Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","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-03-21T14:12:03.473641Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "1941" + - "907" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:38 GMT + - Fri, 21 Mar 2025 14:12:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -838,10 +852,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 555669ca-4a18-45fb-a7fe-402c28e7ba0b + - a3a3088a-e54f-4745-a05a-30e45e3722b9 status: 200 OK code: 200 - duration: 25.049209ms + duration: 33.93989ms - id: 17 request: proto: HTTP/1.1 @@ -857,8 +871,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-gw/v1/zones/fr-par-1/gateways/96a4883f-2b9a-4654-a533-c80799700bd4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/ee871877-a16b-4ff6-8589-334a5a07d3e0 method: GET response: proto: HTTP/2.0 @@ -866,20 +880,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1960 + content_length: 907 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:28.665368Z","gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:38.699371Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:28.024730Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"f10e58bf-ffdc-4e95-aec6-db5d6f259f84","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:28.024730Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"96a4883f-2b9a-4654-a533-c80799700bd4","id":"a0ac31d0-658f-4093-a045-9a7cc63dcf50","ipam_config":null,"mac_address":"02:00:00:1B:D5:FC","private_network_id":"83c51f71-1f95-4294-b386-ab79277bd543","status":"configuring","updated_at":"2025-01-27T09:16:44.427781Z","zone":"fr-par-1"}],"id":"96a4883f-2b9a-4654-a533-c80799700bd4","ip":{"address":"212.47.239.248","created_at":"2025-01-27T09:16:28.645733Z","gateway_id":"96a4883f-2b9a-4654-a533-c80799700bd4","id":"5560876a-dac5-4715-a633-4e347b940af0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"248-239-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:28.645733Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"tf-pn-blissful-solomon","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:38.862732Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:11:58.519233Z","gateway_networks":[],"id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","ipv4":{"address":"51.15.212.27","created_at":"2025-03-21T14:11:58.311645Z","gateway_id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","id":"bbcad05c-f663-46c5-9a96-0411b7ef45d5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"27-212-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:11:58.311645Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","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-03-21T14:12:03.473641Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "1960" + - "907" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:44 GMT + - Fri, 21 Mar 2025 14:12:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -887,48 +901,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d54d6bc-9573-41c3-8ad8-976ee0b2e3c6 + - e6f8ff38-61ef-422b-b3b9-1bef15210004 status: 200 OK code: 200 - duration: 645.34275ms + duration: 26.697555ms - id: 18 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 165 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"gateway_id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","private_network_id":"2349f7dc-7faa-4e9b-9555-211cc8e75b09","enable_masquerade":true,"push_default_route":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-gw/v1/zones/fr-par-1/gateways/96a4883f-2b9a-4654-a533-c80799700bd4 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-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: 1950 + content_length: 385 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:28.665368Z","gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:38.699371Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:28.024730Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"f10e58bf-ffdc-4e95-aec6-db5d6f259f84","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:28.024730Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"96a4883f-2b9a-4654-a533-c80799700bd4","id":"a0ac31d0-658f-4093-a045-9a7cc63dcf50","ipam_config":null,"mac_address":"02:00:00:1B:D5:FC","private_network_id":"83c51f71-1f95-4294-b386-ab79277bd543","status":"ready","updated_at":"2025-01-27T09:16:49.284436Z","zone":"fr-par-1"}],"id":"96a4883f-2b9a-4654-a533-c80799700bd4","ip":{"address":"212.47.239.248","created_at":"2025-01-27T09:16:28.645733Z","gateway_id":"96a4883f-2b9a-4654-a533-c80799700bd4","id":"5560876a-dac5-4715-a633-4e347b940af0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"248-239-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:28.645733Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"tf-pn-blissful-solomon","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:49.476024Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-21T14:12:04.695257Z","gateway_id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","id":"1b428ef2-f5e5-4b36-80d4-523aaf0870e1","ipam_ip_id":"021703ef-ada0-48aa-9215-329edce63c71","masquerade_enabled":true,"private_network_id":"2349f7dc-7faa-4e9b-9555-211cc8e75b09","push_default_route":false,"status":"created","updated_at":"2025-03-21T14:12:04.695257Z","zone":"fr-par-1"}' headers: Content-Length: - - "1950" + - "385" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:49 GMT + - Fri, 21 Mar 2025 14:12:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -936,10 +952,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e9e26929-e63b-4bea-a030-a31893641af4 + - e793bf1b-2cf2-4e43-a151-76aa9d76791f status: 200 OK code: 200 - duration: 26.517209ms + duration: 1.053894913s - id: 19 request: proto: HTTP/1.1 @@ -955,8 +971,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-gw/v1/zones/fr-par-1/gateway-networks/a0ac31d0-658f-4093-a045-9a7cc63dcf50 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/ee871877-a16b-4ff6-8589-334a5a07d3e0 method: GET response: proto: HTTP/2.0 @@ -964,20 +980,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 966 + content_length: 1296 uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:38.699371Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:28.024730Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"f10e58bf-ffdc-4e95-aec6-db5d6f259f84","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:28.024730Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"96a4883f-2b9a-4654-a533-c80799700bd4","id":"a0ac31d0-658f-4093-a045-9a7cc63dcf50","ipam_config":null,"mac_address":"02:00:00:1B:D5:FC","private_network_id":"83c51f71-1f95-4294-b386-ab79277bd543","status":"ready","updated_at":"2025-01-27T09:16:49.284436Z","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:11:58.519233Z","gateway_networks":[{"created_at":"2025-03-21T14:12:04.695257Z","gateway_id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","id":"1b428ef2-f5e5-4b36-80d4-523aaf0870e1","ipam_ip_id":"021703ef-ada0-48aa-9215-329edce63c71","masquerade_enabled":true,"private_network_id":"2349f7dc-7faa-4e9b-9555-211cc8e75b09","push_default_route":false,"status":"created","updated_at":"2025-03-21T14:12:04.695257Z","zone":"fr-par-1"}],"id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","ipv4":{"address":"51.15.212.27","created_at":"2025-03-21T14:11:58.311645Z","gateway_id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","id":"bbcad05c-f663-46c5-9a96-0411b7ef45d5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"27-212-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:11:58.311645Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","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-03-21T14:12:04.809479Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "966" + - "1296" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:49 GMT + - Fri, 21 Mar 2025 14:12:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -985,10 +1001,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e09fa3ca-cc47-4377-8cc4-9fe9a3c121ff + - 032758cc-d66b-4818-85e6-1e37b41c49e7 status: 200 OK code: 200 - duration: 45.946084ms + duration: 25.688558ms - id: 20 request: proto: HTTP/1.1 @@ -1004,8 +1020,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-gw/v1/zones/fr-par-1/gateway-networks/a0ac31d0-658f-4093-a045-9a7cc63dcf50 + - 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/instance/v1/zones/fr-par-1/servers/cc561dfa-1765-43be-9c45-7cd661260076 method: GET response: proto: HTTP/2.0 @@ -1013,20 +1029,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 966 + content_length: 1830 uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:38.699371Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:28.024730Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"f10e58bf-ffdc-4e95-aec6-db5d6f259f84","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:28.024730Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"96a4883f-2b9a-4654-a533-c80799700bd4","id":"a0ac31d0-658f-4093-a045-9a7cc63dcf50","ipam_config":null,"mac_address":"02:00:00:1B:D5:FC","private_network_id":"83c51f71-1f95-4294-b386-ab79277bd543","status":"ready","updated_at":"2025-01-27T09:16:49.284436Z","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-03-21T14:11:58.196970+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"cc561dfa-1765-43be-9c45-7cd661260076","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":"32","hypervisor_id":"702","node_id":"10","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:9d:eb:9d","maintenances":[],"modification_date":"2025-03-21T14:12:03.141299+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":"97cc3c6c-f528-4192-a733-1b98c17c3e1d","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"7017e119-8d53-4af3-ae9f-d7daf0931bf3","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "966" + - "1830" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:49 GMT + - Fri, 21 Mar 2025 14:12:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1034,10 +1050,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6e4b88de-b3ab-4cb0-a8d5-7326cb2d2402 + - 4d1d6b66-3369-44d1-a882-beb9ce273532 status: 200 OK code: 200 - duration: 45.98725ms + duration: 185.717143ms - id: 21 request: proto: HTTP/1.1 @@ -1053,8 +1069,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-gw/v1/zones/fr-par-1/gateways/96a4883f-2b9a-4654-a533-c80799700bd4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2349f7dc-7faa-4e9b-9555-211cc8e75b09 method: GET response: proto: HTTP/2.0 @@ -1062,20 +1078,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1950 + content_length: 1022 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:28.665368Z","gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:38.699371Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:28.024730Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"f10e58bf-ffdc-4e95-aec6-db5d6f259f84","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:28.024730Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"96a4883f-2b9a-4654-a533-c80799700bd4","id":"a0ac31d0-658f-4093-a045-9a7cc63dcf50","ipam_config":null,"mac_address":"02:00:00:1B:D5:FC","private_network_id":"83c51f71-1f95-4294-b386-ab79277bd543","status":"ready","updated_at":"2025-01-27T09:16:49.284436Z","zone":"fr-par-1"}],"id":"96a4883f-2b9a-4654-a533-c80799700bd4","ip":{"address":"212.47.239.248","created_at":"2025-01-27T09:16:28.645733Z","gateway_id":"96a4883f-2b9a-4654-a533-c80799700bd4","id":"5560876a-dac5-4715-a633-4e347b940af0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"248-239-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:28.645733Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"tf-pn-blissful-solomon","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:49.476024Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-21T14:11:57.123890Z","dhcp_enabled":true,"id":"2349f7dc-7faa-4e9b-9555-211cc8e75b09","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-03-21T14:11:57.123890Z","id":"f50b6a53-1f1e-40e0-8b6a-b6b40b8f95e7","private_network_id":"2349f7dc-7faa-4e9b-9555-211cc8e75b09","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.60.0/22","updated_at":"2025-03-21T14:11:57.123890Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-03-21T14:11:57.123890Z","id":"fdaeab25-c543-48a3-b6ce-a12dd1510fdf","private_network_id":"2349f7dc-7faa-4e9b-9555-211cc8e75b09","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:dbe1::/64","updated_at":"2025-03-21T14:11:57.123890Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-03-21T14:11:57.123890Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1950" + - "1022" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:49 GMT + - Fri, 21 Mar 2025 14:12:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1083,10 +1099,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - edece7de-eab9-498d-b73d-1a043c7df90e + - 85ab44a6-8e5c-42a6-a944-56f7493db415 status: 200 OK code: 200 - duration: 26.515875ms + duration: 53.792734ms - id: 22 request: proto: HTTP/1.1 @@ -1102,8 +1118,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-gw/v1/zones/fr-par-1/gateway-networks/a0ac31d0-658f-4093-a045-9a7cc63dcf50 + - 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/instance/v1/zones/fr-par-1/servers/cc561dfa-1765-43be-9c45-7cd661260076 method: GET response: proto: HTTP/2.0 @@ -1111,20 +1127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 966 + content_length: 1830 uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:38.699371Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:28.024730Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"f10e58bf-ffdc-4e95-aec6-db5d6f259f84","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:28.024730Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"96a4883f-2b9a-4654-a533-c80799700bd4","id":"a0ac31d0-658f-4093-a045-9a7cc63dcf50","ipam_config":null,"mac_address":"02:00:00:1B:D5:FC","private_network_id":"83c51f71-1f95-4294-b386-ab79277bd543","status":"ready","updated_at":"2025-01-27T09:16:49.284436Z","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-03-21T14:11:58.196970+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"cc561dfa-1765-43be-9c45-7cd661260076","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":"32","hypervisor_id":"702","node_id":"10","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:9d:eb:9d","maintenances":[],"modification_date":"2025-03-21T14:12:03.141299+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":"97cc3c6c-f528-4192-a733-1b98c17c3e1d","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"7017e119-8d53-4af3-ae9f-d7daf0931bf3","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "966" + - "1830" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:49 GMT + - Fri, 21 Mar 2025 14:12:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1132,48 +1148,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 29b716ed-209d-4805-97ca-0ae7d56316e8 + - c0fff72b-459c-40d0-8399-142d42ae7613 status: 200 OK code: 200 - duration: 43.956708ms + duration: 195.164818ms - id: 23 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":"2349f7dc-7faa-4e9b-9555-211cc8e75b09"}' 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-gw/v1/zones/fr-par-1/gateways/96a4883f-2b9a-4654-a533-c80799700bd4 - method: GET + - 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/instance/v1/zones/fr-par-1/servers/cc561dfa-1765-43be-9c45-7cd661260076/private_nics + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1950 + content_length: 473 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:28.665368Z","gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:38.699371Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:28.024730Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"f10e58bf-ffdc-4e95-aec6-db5d6f259f84","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:28.024730Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"96a4883f-2b9a-4654-a533-c80799700bd4","id":"a0ac31d0-658f-4093-a045-9a7cc63dcf50","ipam_config":null,"mac_address":"02:00:00:1B:D5:FC","private_network_id":"83c51f71-1f95-4294-b386-ab79277bd543","status":"ready","updated_at":"2025-01-27T09:16:49.284436Z","zone":"fr-par-1"}],"id":"96a4883f-2b9a-4654-a533-c80799700bd4","ip":{"address":"212.47.239.248","created_at":"2025-01-27T09:16:28.645733Z","gateway_id":"96a4883f-2b9a-4654-a533-c80799700bd4","id":"5560876a-dac5-4715-a633-4e347b940af0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"248-239-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:28.645733Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"tf-pn-blissful-solomon","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:49.476024Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"private_nic":{"creation_date":"2025-03-21T14:12:05.654796+00:00","id":"dc9fb8c5-82fd-4142-b628-a2f6db1f2779","ipam_ip_ids":["55322b2a-973a-49ef-a743-13ecfcc63924","c7482886-8d40-4ec2-8490-6344f2cc0000"],"mac_address":"02:00:00:19:f5:2c","modification_date":"2025-03-21T14:12:05.873123+00:00","private_network_id":"2349f7dc-7faa-4e9b-9555-211cc8e75b09","server_id":"cc561dfa-1765-43be-9c45-7cd661260076","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "1950" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:49 GMT + - Fri, 21 Mar 2025 14:12:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1181,10 +1199,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d6cfc509-29a6-445e-98a3-a78759f844cf - status: 200 OK - code: 200 - duration: 29.237333ms + - 99d28e4a-0e3b-40ce-b47a-8190cfd4fabb + status: 201 Created + code: 201 + duration: 1.276202749s - id: 24 request: proto: HTTP/1.1 @@ -1200,8 +1218,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-gw/v1/zones/fr-par-1/gateways/96a4883f-2b9a-4654-a533-c80799700bd4 + - 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/instance/v1/zones/fr-par-1/servers/cc561dfa-1765-43be-9c45-7cd661260076/private_nics/dc9fb8c5-82fd-4142-b628-a2f6db1f2779 method: GET response: proto: HTTP/2.0 @@ -1209,20 +1227,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1950 + content_length: 473 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:28.665368Z","gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:38.699371Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:28.024730Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"f10e58bf-ffdc-4e95-aec6-db5d6f259f84","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:28.024730Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"96a4883f-2b9a-4654-a533-c80799700bd4","id":"a0ac31d0-658f-4093-a045-9a7cc63dcf50","ipam_config":null,"mac_address":"02:00:00:1B:D5:FC","private_network_id":"83c51f71-1f95-4294-b386-ab79277bd543","status":"ready","updated_at":"2025-01-27T09:16:49.284436Z","zone":"fr-par-1"}],"id":"96a4883f-2b9a-4654-a533-c80799700bd4","ip":{"address":"212.47.239.248","created_at":"2025-01-27T09:16:28.645733Z","gateway_id":"96a4883f-2b9a-4654-a533-c80799700bd4","id":"5560876a-dac5-4715-a633-4e347b940af0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"248-239-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:28.645733Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"tf-pn-blissful-solomon","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:49.476024Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"private_nic":{"creation_date":"2025-03-21T14:12:05.654796+00:00","id":"dc9fb8c5-82fd-4142-b628-a2f6db1f2779","ipam_ip_ids":["55322b2a-973a-49ef-a743-13ecfcc63924","c7482886-8d40-4ec2-8490-6344f2cc0000"],"mac_address":"02:00:00:19:f5:2c","modification_date":"2025-03-21T14:12:05.873123+00:00","private_network_id":"2349f7dc-7faa-4e9b-9555-211cc8e75b09","server_id":"cc561dfa-1765-43be-9c45-7cd661260076","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "1950" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:49 GMT + - Fri, 21 Mar 2025 14:12:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1230,50 +1248,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 540b2fe3-5135-4df3-9aed-f8d860d9381b + - 25cd99a1-7f6e-499c-b4b5-880312880e3d status: 200 OK code: 200 - duration: 24.478958ms + duration: 54.782429ms - id: 25 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 133 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"gateway_id":"96a4883f-2b9a-4654-a533-c80799700bd4","public_port":42,"private_ip":"192.168.1.1","private_port":42,"protocol":"both"}' + 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-gw/v1/zones/fr-par-1/pat-rules - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/ee871877-a16b-4ff6-8589-334a5a07d3e0 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 281 + content_length: 1296 uncompressed: false - body: '{"created_at":"2025-01-27T09:16:49.837882Z","gateway_id":"96a4883f-2b9a-4654-a533-c80799700bd4","id":"26f81719-bbc8-4035-8da6-cb8e877a0594","private_ip":"192.168.1.1","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-01-27T09:16:49.837882Z","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:11:58.519233Z","gateway_networks":[{"created_at":"2025-03-21T14:12:04.695257Z","gateway_id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","id":"1b428ef2-f5e5-4b36-80d4-523aaf0870e1","ipam_ip_id":"021703ef-ada0-48aa-9215-329edce63c71","masquerade_enabled":true,"private_network_id":"2349f7dc-7faa-4e9b-9555-211cc8e75b09","push_default_route":false,"status":"created","updated_at":"2025-03-21T14:12:04.695257Z","zone":"fr-par-1"}],"id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","ipv4":{"address":"51.15.212.27","created_at":"2025-03-21T14:11:58.311645Z","gateway_id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","id":"bbcad05c-f663-46c5-9a96-0411b7ef45d5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"27-212-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:11:58.311645Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","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-03-21T14:12:04.809479Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "281" + - "1296" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:49 GMT + - Fri, 21 Mar 2025 14:12:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1281,10 +1297,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c27262a9-88da-488d-a46f-9664e0f43f38 + - 03c11bd9-da50-4f43-8257-0359e66994c2 status: 200 OK code: 200 - duration: 90.456708ms + duration: 30.523671ms - id: 26 request: proto: HTTP/1.1 @@ -1300,8 +1316,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-gw/v1/zones/fr-par-1/gateways/96a4883f-2b9a-4654-a533-c80799700bd4 + - 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/instance/v1/zones/fr-par-1/servers/cc561dfa-1765-43be-9c45-7cd661260076/private_nics/dc9fb8c5-82fd-4142-b628-a2f6db1f2779 method: GET response: proto: HTTP/2.0 @@ -1309,20 +1325,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1950 + content_length: 473 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:28.665368Z","gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:38.699371Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:28.024730Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"f10e58bf-ffdc-4e95-aec6-db5d6f259f84","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:28.024730Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"96a4883f-2b9a-4654-a533-c80799700bd4","id":"a0ac31d0-658f-4093-a045-9a7cc63dcf50","ipam_config":null,"mac_address":"02:00:00:1B:D5:FC","private_network_id":"83c51f71-1f95-4294-b386-ab79277bd543","status":"ready","updated_at":"2025-01-27T09:16:49.284436Z","zone":"fr-par-1"}],"id":"96a4883f-2b9a-4654-a533-c80799700bd4","ip":{"address":"212.47.239.248","created_at":"2025-01-27T09:16:28.645733Z","gateway_id":"96a4883f-2b9a-4654-a533-c80799700bd4","id":"5560876a-dac5-4715-a633-4e347b940af0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"248-239-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:28.645733Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"tf-pn-blissful-solomon","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:49.476024Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"private_nic":{"creation_date":"2025-03-21T14:12:05.654796+00:00","id":"dc9fb8c5-82fd-4142-b628-a2f6db1f2779","ipam_ip_ids":["55322b2a-973a-49ef-a743-13ecfcc63924","c7482886-8d40-4ec2-8490-6344f2cc0000"],"mac_address":"02:00:00:19:f5:2c","modification_date":"2025-03-21T14:12:05.873123+00:00","private_network_id":"2349f7dc-7faa-4e9b-9555-211cc8e75b09","server_id":"cc561dfa-1765-43be-9c45-7cd661260076","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "1950" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:49 GMT + - Fri, 21 Mar 2025 14:12:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1330,10 +1346,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3a55ef05-80de-4bd6-a7e7-fb7d74ab2d91 + - 3a479f26-e75d-4fd1-892b-68c5c53dc6e7 status: 200 OK code: 200 - duration: 26.82725ms + duration: 62.609174ms - id: 27 request: proto: HTTP/1.1 @@ -1349,8 +1365,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-gw/v1/zones/fr-par-1/pat-rules/26f81719-bbc8-4035-8da6-cb8e877a0594 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/ee871877-a16b-4ff6-8589-334a5a07d3e0 method: GET response: proto: HTTP/2.0 @@ -1358,20 +1374,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 281 + content_length: 1334 uncompressed: false - body: '{"created_at":"2025-01-27T09:16:49.837882Z","gateway_id":"96a4883f-2b9a-4654-a533-c80799700bd4","id":"26f81719-bbc8-4035-8da6-cb8e877a0594","private_ip":"192.168.1.1","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-01-27T09:16:49.837882Z","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:11:58.519233Z","gateway_networks":[{"created_at":"2025-03-21T14:12:04.695257Z","gateway_id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","id":"1b428ef2-f5e5-4b36-80d4-523aaf0870e1","ipam_ip_id":"021703ef-ada0-48aa-9215-329edce63c71","mac_address":"02:00:00:1F:D8:8C","masquerade_enabled":true,"private_network_id":"2349f7dc-7faa-4e9b-9555-211cc8e75b09","push_default_route":false,"status":"configuring","updated_at":"2025-03-21T14:12:10.624022Z","zone":"fr-par-1"}],"id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","ipv4":{"address":"51.15.212.27","created_at":"2025-03-21T14:11:58.311645Z","gateway_id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","id":"bbcad05c-f663-46c5-9a96-0411b7ef45d5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"27-212-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:11:58.311645Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","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-03-21T14:12:04.809479Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "281" + - "1334" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:49 GMT + - Fri, 21 Mar 2025 14:12:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1379,10 +1395,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 82d6feac-1a3b-4812-ace5-99148b733ab5 + - 9a8a2401-90db-48a7-8da8-826904c907a7 status: 200 OK code: 200 - duration: 22.478584ms + duration: 24.501823ms - id: 28 request: proto: HTTP/1.1 @@ -1398,8 +1414,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-gw/v1/zones/fr-par-1/pat-rules/26f81719-bbc8-4035-8da6-cb8e877a0594 + - 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/instance/v1/zones/fr-par-1/servers/cc561dfa-1765-43be-9c45-7cd661260076/private_nics/dc9fb8c5-82fd-4142-b628-a2f6db1f2779 method: GET response: proto: HTTP/2.0 @@ -1407,20 +1423,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 281 + content_length: 473 uncompressed: false - body: '{"created_at":"2025-01-27T09:16:49.837882Z","gateway_id":"96a4883f-2b9a-4654-a533-c80799700bd4","id":"26f81719-bbc8-4035-8da6-cb8e877a0594","private_ip":"192.168.1.1","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-01-27T09:16:49.837882Z","zone":"fr-par-1"}' + body: '{"private_nic":{"creation_date":"2025-03-21T14:12:05.654796+00:00","id":"dc9fb8c5-82fd-4142-b628-a2f6db1f2779","ipam_ip_ids":["55322b2a-973a-49ef-a743-13ecfcc63924","c7482886-8d40-4ec2-8490-6344f2cc0000"],"mac_address":"02:00:00:19:f5:2c","modification_date":"2025-03-21T14:12:05.873123+00:00","private_network_id":"2349f7dc-7faa-4e9b-9555-211cc8e75b09","server_id":"cc561dfa-1765-43be-9c45-7cd661260076","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "281" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:50 GMT + - Fri, 21 Mar 2025 14:12:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1428,10 +1444,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6610fdbd-1f43-403a-a87c-aab221c1f398 + - b51d2c6b-48d9-42de-bb7e-883ad81b7706 status: 200 OK code: 200 - duration: 20.44725ms + duration: 69.64209ms - id: 29 request: proto: HTTP/1.1 @@ -1447,8 +1463,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-gw/v1/zones/fr-par-1/dhcps/f10e58bf-ffdc-4e95-aec6-db5d6f259f84 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/ee871877-a16b-4ff6-8589-334a5a07d3e0 method: GET response: proto: HTTP/2.0 @@ -1456,20 +1472,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 568 + content_length: 1324 uncompressed: false - body: '{"address":"192.168.1.1","created_at":"2025-01-27T09:16:28.024730Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"f10e58bf-ffdc-4e95-aec6-db5d6f259f84","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:28.024730Z","valid_lifetime":"3600s","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:11:58.519233Z","gateway_networks":[{"created_at":"2025-03-21T14:12:04.695257Z","gateway_id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","id":"1b428ef2-f5e5-4b36-80d4-523aaf0870e1","ipam_ip_id":"021703ef-ada0-48aa-9215-329edce63c71","mac_address":"02:00:00:1F:D8:8C","masquerade_enabled":true,"private_network_id":"2349f7dc-7faa-4e9b-9555-211cc8e75b09","push_default_route":false,"status":"ready","updated_at":"2025-03-21T14:12:15.695445Z","zone":"fr-par-1"}],"id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","ipv4":{"address":"51.15.212.27","created_at":"2025-03-21T14:11:58.311645Z","gateway_id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","id":"bbcad05c-f663-46c5-9a96-0411b7ef45d5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"27-212-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:11:58.311645Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","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-03-21T14:12:15.821318Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "568" + - "1324" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:50 GMT + - Fri, 21 Mar 2025 14:12:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1477,10 +1493,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ea115306-7cf3-4c81-8785-a7f733535fcc + - a30f1bd7-8fcc-4a47-b1d5-b707f0f4d78e status: 200 OK code: 200 - duration: 22.217375ms + duration: 34.081358ms - id: 30 request: proto: HTTP/1.1 @@ -1496,8 +1512,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-gw/v1/zones/fr-par-1/gateways/96a4883f-2b9a-4654-a533-c80799700bd4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/1b428ef2-f5e5-4b36-80d4-523aaf0870e1 method: GET response: proto: HTTP/2.0 @@ -1505,20 +1521,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1950 + content_length: 417 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:28.665368Z","gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:38.699371Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:28.024730Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"f10e58bf-ffdc-4e95-aec6-db5d6f259f84","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:28.024730Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"96a4883f-2b9a-4654-a533-c80799700bd4","id":"a0ac31d0-658f-4093-a045-9a7cc63dcf50","ipam_config":null,"mac_address":"02:00:00:1B:D5:FC","private_network_id":"83c51f71-1f95-4294-b386-ab79277bd543","status":"ready","updated_at":"2025-01-27T09:16:49.284436Z","zone":"fr-par-1"}],"id":"96a4883f-2b9a-4654-a533-c80799700bd4","ip":{"address":"212.47.239.248","created_at":"2025-01-27T09:16:28.645733Z","gateway_id":"96a4883f-2b9a-4654-a533-c80799700bd4","id":"5560876a-dac5-4715-a633-4e347b940af0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"248-239-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:28.645733Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"tf-pn-blissful-solomon","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:49.476024Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-21T14:12:04.695257Z","gateway_id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","id":"1b428ef2-f5e5-4b36-80d4-523aaf0870e1","ipam_ip_id":"021703ef-ada0-48aa-9215-329edce63c71","mac_address":"02:00:00:1F:D8:8C","masquerade_enabled":true,"private_network_id":"2349f7dc-7faa-4e9b-9555-211cc8e75b09","push_default_route":false,"status":"ready","updated_at":"2025-03-21T14:12:15.695445Z","zone":"fr-par-1"}' headers: Content-Length: - - "1950" + - "417" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:50 GMT + - Fri, 21 Mar 2025 14:12:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1526,10 +1542,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 712b48ce-6515-4077-baf6-62e4968097d4 + - e17137bb-fc19-4a01-a7af-74e998193181 status: 200 OK code: 200 - duration: 25.617292ms + duration: 81.092609ms - id: 31 request: proto: HTTP/1.1 @@ -1545,8 +1561,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/83c51f71-1f95-4294-b386-ab79277bd543 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/1b428ef2-f5e5-4b36-80d4-523aaf0870e1 method: GET response: proto: HTTP/2.0 @@ -1554,20 +1570,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1018 + content_length: 417 uncompressed: false - body: '{"created_at":"2025-01-27T09:16:28.054538Z","dhcp_enabled":true,"id":"83c51f71-1f95-4294-b386-ab79277bd543","name":"pn_test_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-27T09:16:28.054538Z","id":"1283f8de-d3f3-4a95-9a28-cf78ddc27aa6","private_network_id":"83c51f71-1f95-4294-b386-ab79277bd543","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:36.861136Z","vpc_id":"285c0d95-506b-4eff-a163-7fd24fdd9685"},{"created_at":"2025-01-27T09:16:28.054538Z","id":"e815901f-9e08-45ec-a028-93213a8777b7","private_network_id":"83c51f71-1f95-4294-b386-ab79277bd543","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:f96::/64","updated_at":"2025-01-27T09:16:36.865307Z","vpc_id":"285c0d95-506b-4eff-a163-7fd24fdd9685"}],"tags":[],"updated_at":"2025-01-27T09:16:45.319415Z","vpc_id":"285c0d95-506b-4eff-a163-7fd24fdd9685"}' + body: '{"created_at":"2025-03-21T14:12:04.695257Z","gateway_id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","id":"1b428ef2-f5e5-4b36-80d4-523aaf0870e1","ipam_ip_id":"021703ef-ada0-48aa-9215-329edce63c71","mac_address":"02:00:00:1F:D8:8C","masquerade_enabled":true,"private_network_id":"2349f7dc-7faa-4e9b-9555-211cc8e75b09","push_default_route":false,"status":"ready","updated_at":"2025-03-21T14:12:15.695445Z","zone":"fr-par-1"}' headers: Content-Length: - - "1018" + - "417" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:50 GMT + - Fri, 21 Mar 2025 14:12:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1575,10 +1591,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5fbf6ceb-8cbb-4cef-8fd1-cce162192770 + - adfcf6ac-1f85-4ab4-919b-713150aa017a status: 200 OK code: 200 - duration: 24.502416ms + duration: 53.53421ms - id: 32 request: proto: HTTP/1.1 @@ -1594,8 +1610,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-gw/v1/zones/fr-par-1/gateway-networks/a0ac31d0-658f-4093-a045-9a7cc63dcf50 + - 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/instance/v1/zones/fr-par-1/servers/cc561dfa-1765-43be-9c45-7cd661260076/private_nics/dc9fb8c5-82fd-4142-b628-a2f6db1f2779 method: GET response: proto: HTTP/2.0 @@ -1603,20 +1619,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 966 + content_length: 473 uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:38.699371Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:28.024730Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"f10e58bf-ffdc-4e95-aec6-db5d6f259f84","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:28.024730Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"96a4883f-2b9a-4654-a533-c80799700bd4","id":"a0ac31d0-658f-4093-a045-9a7cc63dcf50","ipam_config":null,"mac_address":"02:00:00:1B:D5:FC","private_network_id":"83c51f71-1f95-4294-b386-ab79277bd543","status":"ready","updated_at":"2025-01-27T09:16:49.284436Z","zone":"fr-par-1"}' + body: '{"private_nic":{"creation_date":"2025-03-21T14:12:05.654796+00:00","id":"dc9fb8c5-82fd-4142-b628-a2f6db1f2779","ipam_ip_ids":["55322b2a-973a-49ef-a743-13ecfcc63924","c7482886-8d40-4ec2-8490-6344f2cc0000"],"mac_address":"02:00:00:19:f5:2c","modification_date":"2025-03-21T14:12:05.873123+00:00","private_network_id":"2349f7dc-7faa-4e9b-9555-211cc8e75b09","server_id":"cc561dfa-1765-43be-9c45-7cd661260076","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "966" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:50 GMT + - Fri, 21 Mar 2025 14:12:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1624,10 +1640,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a5603139-d6a1-48ff-8bcc-fc8107c4d559 + - 052360c2-f9d1-457b-82de-915a1fe68dde status: 200 OK code: 200 - duration: 46.4555ms + duration: 61.063298ms - id: 33 request: proto: HTTP/1.1 @@ -1643,8 +1659,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-gw/v1/zones/fr-par-1/gateways/96a4883f-2b9a-4654-a533-c80799700bd4 + - 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/instance/v1/zones/fr-par-1/servers/cc561dfa-1765-43be-9c45-7cd661260076/private_nics/dc9fb8c5-82fd-4142-b628-a2f6db1f2779 method: GET response: proto: HTTP/2.0 @@ -1652,20 +1668,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1950 + content_length: 473 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:28.665368Z","gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:38.699371Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:28.024730Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"f10e58bf-ffdc-4e95-aec6-db5d6f259f84","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:28.024730Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"96a4883f-2b9a-4654-a533-c80799700bd4","id":"a0ac31d0-658f-4093-a045-9a7cc63dcf50","ipam_config":null,"mac_address":"02:00:00:1B:D5:FC","private_network_id":"83c51f71-1f95-4294-b386-ab79277bd543","status":"ready","updated_at":"2025-01-27T09:16:49.284436Z","zone":"fr-par-1"}],"id":"96a4883f-2b9a-4654-a533-c80799700bd4","ip":{"address":"212.47.239.248","created_at":"2025-01-27T09:16:28.645733Z","gateway_id":"96a4883f-2b9a-4654-a533-c80799700bd4","id":"5560876a-dac5-4715-a633-4e347b940af0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"248-239-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:28.645733Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"tf-pn-blissful-solomon","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:49.476024Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"private_nic":{"creation_date":"2025-03-21T14:12:05.654796+00:00","id":"dc9fb8c5-82fd-4142-b628-a2f6db1f2779","ipam_ip_ids":["55322b2a-973a-49ef-a743-13ecfcc63924","c7482886-8d40-4ec2-8490-6344f2cc0000"],"mac_address":"02:00:00:19:f5:2c","modification_date":"2025-03-21T14:12:05.873123+00:00","private_network_id":"2349f7dc-7faa-4e9b-9555-211cc8e75b09","server_id":"cc561dfa-1765-43be-9c45-7cd661260076","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "1950" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:50 GMT + - Fri, 21 Mar 2025 14:12:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1673,10 +1689,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6556a269-f57f-49e5-bc28-3cd04cae520a + - 119fd34c-9ff2-4f5b-afc7-d93b8d44bade status: 200 OK code: 200 - duration: 29.018709ms + duration: 74.525477ms - id: 34 request: proto: HTTP/1.1 @@ -1692,8 +1708,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-gw/v1/zones/fr-par-1/gateway-networks/a0ac31d0-658f-4093-a045-9a7cc63dcf50 + - 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/instance/v1/zones/fr-par-1/servers/cc561dfa-1765-43be-9c45-7cd661260076/private_nics/dc9fb8c5-82fd-4142-b628-a2f6db1f2779 method: GET response: proto: HTTP/2.0 @@ -1701,20 +1717,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 966 + content_length: 473 uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:38.699371Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:28.024730Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"f10e58bf-ffdc-4e95-aec6-db5d6f259f84","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:28.024730Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"96a4883f-2b9a-4654-a533-c80799700bd4","id":"a0ac31d0-658f-4093-a045-9a7cc63dcf50","ipam_config":null,"mac_address":"02:00:00:1B:D5:FC","private_network_id":"83c51f71-1f95-4294-b386-ab79277bd543","status":"ready","updated_at":"2025-01-27T09:16:49.284436Z","zone":"fr-par-1"}' + body: '{"private_nic":{"creation_date":"2025-03-21T14:12:05.654796+00:00","id":"dc9fb8c5-82fd-4142-b628-a2f6db1f2779","ipam_ip_ids":["55322b2a-973a-49ef-a743-13ecfcc63924","c7482886-8d40-4ec2-8490-6344f2cc0000"],"mac_address":"02:00:00:19:f5:2c","modification_date":"2025-03-21T14:12:05.873123+00:00","private_network_id":"2349f7dc-7faa-4e9b-9555-211cc8e75b09","server_id":"cc561dfa-1765-43be-9c45-7cd661260076","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "966" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:50 GMT + - Fri, 21 Mar 2025 14:12:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1722,10 +1738,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 342ad72c-75b1-43d3-938a-54cb0843d5dc + - 2a508111-6d73-4392-8384-e061323dfdd3 status: 200 OK code: 200 - duration: 44.541125ms + duration: 72.287824ms - id: 35 request: proto: HTTP/1.1 @@ -1741,8 +1757,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-gw/v1/zones/fr-par-1/pat-rules/26f81719-bbc8-4035-8da6-cb8e877a0594 + - 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/instance/v1/zones/fr-par-1/servers/cc561dfa-1765-43be-9c45-7cd661260076/private_nics/dc9fb8c5-82fd-4142-b628-a2f6db1f2779 method: GET response: proto: HTTP/2.0 @@ -1750,20 +1766,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 281 + content_length: 473 uncompressed: false - body: '{"created_at":"2025-01-27T09:16:49.837882Z","gateway_id":"96a4883f-2b9a-4654-a533-c80799700bd4","id":"26f81719-bbc8-4035-8da6-cb8e877a0594","private_ip":"192.168.1.1","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-01-27T09:16:49.837882Z","zone":"fr-par-1"}' + body: '{"private_nic":{"creation_date":"2025-03-21T14:12:05.654796+00:00","id":"dc9fb8c5-82fd-4142-b628-a2f6db1f2779","ipam_ip_ids":["55322b2a-973a-49ef-a743-13ecfcc63924","c7482886-8d40-4ec2-8490-6344f2cc0000"],"mac_address":"02:00:00:19:f5:2c","modification_date":"2025-03-21T14:12:05.873123+00:00","private_network_id":"2349f7dc-7faa-4e9b-9555-211cc8e75b09","server_id":"cc561dfa-1765-43be-9c45-7cd661260076","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "281" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:50 GMT + - Fri, 21 Mar 2025 14:12:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1771,10 +1787,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 172feb6d-5bce-4000-9309-8718d4441627 + - 4be64bc8-a44e-4fdf-bbfb-b59c906807dd status: 200 OK code: 200 - duration: 27.917791ms + duration: 88.216961ms - id: 36 request: proto: HTTP/1.1 @@ -1790,8 +1806,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-gw/v1/zones/fr-par-1/pat-rules/26f81719-bbc8-4035-8da6-cb8e877a0594 + - 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/instance/v1/zones/fr-par-1/servers/cc561dfa-1765-43be-9c45-7cd661260076/private_nics/dc9fb8c5-82fd-4142-b628-a2f6db1f2779 method: GET response: proto: HTTP/2.0 @@ -1799,20 +1815,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 281 + content_length: 475 uncompressed: false - body: '{"created_at":"2025-01-27T09:16:49.837882Z","gateway_id":"96a4883f-2b9a-4654-a533-c80799700bd4","id":"26f81719-bbc8-4035-8da6-cb8e877a0594","private_ip":"192.168.1.1","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-01-27T09:16:49.837882Z","zone":"fr-par-1"}' + body: '{"private_nic":{"creation_date":"2025-03-21T14:12:05.654796+00:00","id":"dc9fb8c5-82fd-4142-b628-a2f6db1f2779","ipam_ip_ids":["55322b2a-973a-49ef-a743-13ecfcc63924","c7482886-8d40-4ec2-8490-6344f2cc0000"],"mac_address":"02:00:00:19:f5:2c","modification_date":"2025-03-21T14:12:37.709828+00:00","private_network_id":"2349f7dc-7faa-4e9b-9555-211cc8e75b09","server_id":"cc561dfa-1765-43be-9c45-7cd661260076","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "281" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:51 GMT + - Fri, 21 Mar 2025 14:12:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1820,10 +1836,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5d970c9f-4225-445d-804d-490d5cef6fc5 + - ae434aa8-0240-42e6-9092-0f0293b894af status: 200 OK code: 200 - duration: 28.213208ms + duration: 64.329509ms - id: 37 request: proto: HTTP/1.1 @@ -1839,8 +1855,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-gw/v1/zones/fr-par-1/gateways/96a4883f-2b9a-4654-a533-c80799700bd4 + - 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/instance/v1/zones/fr-par-1/servers/cc561dfa-1765-43be-9c45-7cd661260076/private_nics/dc9fb8c5-82fd-4142-b628-a2f6db1f2779 method: GET response: proto: HTTP/2.0 @@ -1848,20 +1864,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1950 + content_length: 475 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:28.665368Z","gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:38.699371Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:28.024730Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"f10e58bf-ffdc-4e95-aec6-db5d6f259f84","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:28.024730Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"96a4883f-2b9a-4654-a533-c80799700bd4","id":"a0ac31d0-658f-4093-a045-9a7cc63dcf50","ipam_config":null,"mac_address":"02:00:00:1B:D5:FC","private_network_id":"83c51f71-1f95-4294-b386-ab79277bd543","status":"ready","updated_at":"2025-01-27T09:16:49.284436Z","zone":"fr-par-1"}],"id":"96a4883f-2b9a-4654-a533-c80799700bd4","ip":{"address":"212.47.239.248","created_at":"2025-01-27T09:16:28.645733Z","gateway_id":"96a4883f-2b9a-4654-a533-c80799700bd4","id":"5560876a-dac5-4715-a633-4e347b940af0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"248-239-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:28.645733Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"tf-pn-blissful-solomon","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:49.476024Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"private_nic":{"creation_date":"2025-03-21T14:12:05.654796+00:00","id":"dc9fb8c5-82fd-4142-b628-a2f6db1f2779","ipam_ip_ids":["55322b2a-973a-49ef-a743-13ecfcc63924","c7482886-8d40-4ec2-8490-6344f2cc0000"],"mac_address":"02:00:00:19:f5:2c","modification_date":"2025-03-21T14:12:37.709828+00:00","private_network_id":"2349f7dc-7faa-4e9b-9555-211cc8e75b09","server_id":"cc561dfa-1765-43be-9c45-7cd661260076","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "1950" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:51 GMT + - Fri, 21 Mar 2025 14:12:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1869,10 +1885,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 92109405-f42c-4d29-a6c1-81416f4b5840 + - 1213ea58-ed57-4e04-91f5-7df9e4d4c707 status: 200 OK code: 200 - duration: 32.891708ms + duration: 80.920994ms - id: 38 request: proto: HTTP/1.1 @@ -1888,27 +1904,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/pat-rules/26f81719-bbc8-4035-8da6-cb8e877a0594 - method: DELETE + - 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/instance/v1/zones/fr-par-1/servers/cc561dfa-1765-43be-9c45-7cd661260076 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 2288 uncompressed: false - body: "" + 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-03-21T14:11:58.196970+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"cc561dfa-1765-43be-9c45-7cd661260076","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":"32","hypervisor_id":"702","node_id":"10","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:9d:eb:9d","maintenances":[],"modification_date":"2025-03-21T14:12:03.141299+00:00","name":"Scaleway Instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-03-21T14:12:05.654796+00:00","id":"dc9fb8c5-82fd-4142-b628-a2f6db1f2779","ipam_ip_ids":["55322b2a-973a-49ef-a743-13ecfcc63924","c7482886-8d40-4ec2-8490-6344f2cc0000"],"mac_address":"02:00:00:19:f5:2c","modification_date":"2025-03-21T14:12:37.709828+00:00","private_network_id":"2349f7dc-7faa-4e9b-9555-211cc8e75b09","server_id":"cc561dfa-1765-43be-9c45-7cd661260076","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":"97cc3c6c-f528-4192-a733-1b98c17c3e1d","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"7017e119-8d53-4af3-ae9f-d7daf0931bf3","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: + Content-Length: + - "2288" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:51 GMT + - Fri, 21 Mar 2025 14:12:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1916,10 +1934,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a34d89c9-210f-45de-ac42-af408393e51e - status: 204 No Content - code: 204 - duration: 45.420042ms + - 9b70010a-3328-4d05-ac1c-ac654363fbc9 + status: 200 OK + code: 200 + duration: 138.867239ms - id: 39 request: proto: HTTP/1.1 @@ -1935,8 +1953,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-gw/v1/zones/fr-par-1/gateways/96a4883f-2b9a-4654-a533-c80799700bd4 + - 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/instance/v1/zones/fr-par-1/volumes/7017e119-8d53-4af3-ae9f-d7daf0931bf3 method: GET response: proto: HTTP/2.0 @@ -1944,20 +1962,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1950 + content_length: 143 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:28.665368Z","gateway_networks":[{"address":null,"created_at":"2025-01-27T09:16:38.699371Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:28.024730Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"f10e58bf-ffdc-4e95-aec6-db5d6f259f84","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:28.024730Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"96a4883f-2b9a-4654-a533-c80799700bd4","id":"a0ac31d0-658f-4093-a045-9a7cc63dcf50","ipam_config":null,"mac_address":"02:00:00:1B:D5:FC","private_network_id":"83c51f71-1f95-4294-b386-ab79277bd543","status":"ready","updated_at":"2025-01-27T09:16:49.284436Z","zone":"fr-par-1"}],"id":"96a4883f-2b9a-4654-a533-c80799700bd4","ip":{"address":"212.47.239.248","created_at":"2025-01-27T09:16:28.645733Z","gateway_id":"96a4883f-2b9a-4654-a533-c80799700bd4","id":"5560876a-dac5-4715-a633-4e347b940af0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"248-239-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:28.645733Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"tf-pn-blissful-solomon","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:49.476024Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"7017e119-8d53-4af3-ae9f-d7daf0931bf3","type":"not_found"}' headers: Content-Length: - - "1950" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:51 GMT + - Fri, 21 Mar 2025 14:12:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1965,10 +1983,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 589fa9be-2076-44a6-a9e1-bce8cf2714d9 - status: 200 OK - code: 200 - duration: 32.518833ms + - 48ba1d1f-7488-4974-be0a-c2299a01033d + status: 404 Not Found + code: 404 + duration: 31.143951ms - id: 40 request: proto: HTTP/1.1 @@ -1984,8 +2002,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-gw/v1/zones/fr-par-1/gateway-networks/a0ac31d0-658f-4093-a045-9a7cc63dcf50 + - 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/block/v1alpha1/zones/fr-par-1/volumes/7017e119-8d53-4af3-ae9f-d7daf0931bf3 method: GET response: proto: HTTP/2.0 @@ -1993,20 +2011,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 966 + content_length: 673 uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:38.699371Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:28.024730Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"f10e58bf-ffdc-4e95-aec6-db5d6f259f84","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:28.024730Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"96a4883f-2b9a-4654-a533-c80799700bd4","id":"a0ac31d0-658f-4093-a045-9a7cc63dcf50","ipam_config":null,"mac_address":"02:00:00:1B:D5:FC","private_network_id":"83c51f71-1f95-4294-b386-ab79277bd543","status":"ready","updated_at":"2025-01-27T09:16:49.284436Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-03-21T14:11:58.342345Z","id":"7017e119-8d53-4af3-ae9f-d7daf0931bf3","last_detached_at":null,"name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"6ba10234-492c-443d-9f5d-2bea203f4fb2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-03-21T14:11:58.342345Z","id":"95d43f8b-03eb-4a52-886a-6c9b77d0586a","product_resource_id":"cc561dfa-1765-43be-9c45-7cd661260076","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-03-21T14:11:58.342345Z","zone":"fr-par-1"}' headers: Content-Length: - - "966" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:52 GMT + - Fri, 21 Mar 2025 14:12:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2014,10 +2032,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 34bd823b-d260-4515-b061-d5becf1c91e7 + - 28c4b17a-e138-458c-9db0-145cf89927c5 status: 200 OK code: 200 - duration: 51.970292ms + duration: 51.666583ms - id: 41 request: proto: HTTP/1.1 @@ -2033,27 +2051,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/a0ac31d0-658f-4093-a045-9a7cc63dcf50?cleanup_dhcp=true - method: DELETE + - 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/instance/v1/zones/fr-par-1/servers/cc561dfa-1765-43be-9c45-7cd661260076/user_data + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 17 uncompressed: false - body: "" + body: '{"user_data":[]}' headers: + Content-Length: + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:52 GMT + - Fri, 21 Mar 2025 14:12:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2061,10 +2081,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 243df5f6-e3a6-4baf-9ef7-a19b5ef2a3a2 - status: 204 No Content - code: 204 - duration: 80.689ms + - 205b52d3-8dad-4086-b54b-3cbcbf48d131 + status: 200 OK + code: 200 + duration: 73.716119ms - id: 42 request: proto: HTTP/1.1 @@ -2080,8 +2100,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-gw/v1/zones/fr-par-1/gateway-networks/a0ac31d0-658f-4093-a045-9a7cc63dcf50 + - 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/instance/v1/zones/fr-par-1/servers/cc561dfa-1765-43be-9c45-7cd661260076/private_nics method: GET response: proto: HTTP/2.0 @@ -2089,20 +2109,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 970 + content_length: 478 uncompressed: false - body: '{"address":null,"created_at":"2025-01-27T09:16:38.699371Z","dhcp":{"address":"192.168.1.1","created_at":"2025-01-27T09:16:28.024730Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"f10e58bf-ffdc-4e95-aec6-db5d6f259f84","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2025-01-27T09:16:28.024730Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"96a4883f-2b9a-4654-a533-c80799700bd4","id":"a0ac31d0-658f-4093-a045-9a7cc63dcf50","ipam_config":null,"mac_address":"02:00:00:1B:D5:FC","private_network_id":"83c51f71-1f95-4294-b386-ab79277bd543","status":"detaching","updated_at":"2025-01-27T09:16:52.076158Z","zone":"fr-par-1"}' + body: '{"private_nics":[{"creation_date":"2025-03-21T14:12:05.654796+00:00","id":"dc9fb8c5-82fd-4142-b628-a2f6db1f2779","ipam_ip_ids":["55322b2a-973a-49ef-a743-13ecfcc63924","c7482886-8d40-4ec2-8490-6344f2cc0000"],"mac_address":"02:00:00:19:f5:2c","modification_date":"2025-03-21T14:12:37.709828+00:00","private_network_id":"2349f7dc-7faa-4e9b-9555-211cc8e75b09","server_id":"cc561dfa-1765-43be-9c45-7cd661260076","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "970" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:52 GMT + - Fri, 21 Mar 2025 14:12:42 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2110,10 +2132,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9ab91281-2a4f-49e2-8759-92cf57b0fa5a + - c559ebc0-69e2-4ccb-b998-af4e7d3dd478 + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 42.7005ms + duration: 62.251904ms - id: 43 request: proto: HTTP/1.1 @@ -2129,8 +2153,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-gw/v1/zones/fr-par-1/gateway-networks/a0ac31d0-658f-4093-a045-9a7cc63dcf50 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A19%3Af5%3A2c&order_by=created_at_desc&page=1&resource_type=unknown_type method: GET response: proto: HTTP/2.0 @@ -2138,20 +2162,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 136 + content_length: 516 uncompressed: false - body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"a0ac31d0-658f-4093-a045-9a7cc63dcf50","type":"not_found"}' + body: '{"ips":[{"address":"172.16.60.3/22","created_at":"2025-03-21T14:12:06.205402Z","id":"55322b2a-973a-49ef-a743-13ecfcc63924","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"dc9fb8c5-82fd-4142-b628-a2f6db1f2779","mac_address":"02:00:00:19:F5:2C","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"f50b6a53-1f1e-40e0-8b6a-b6b40b8f95e7"},"tags":[],"updated_at":"2025-03-21T14:12:06.205402Z","zone":null}],"total_count":1}' headers: Content-Length: - - "136" + - "516" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:57 GMT + - Fri, 21 Mar 2025 14:12:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2159,10 +2183,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c4e2ad34-3969-4d72-95ea-d7286a5a122a - status: 404 Not Found - code: 404 - duration: 27.375417ms + - d61006c6-25c0-41d0-bf70-84b0d3f60a8e + status: 200 OK + code: 200 + duration: 65.172011ms - id: 44 request: proto: HTTP/1.1 @@ -2178,8 +2202,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-gw/v1/zones/fr-par-1/gateways/96a4883f-2b9a-4654-a533-c80799700bd4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/ee871877-a16b-4ff6-8589-334a5a07d3e0 method: GET response: proto: HTTP/2.0 @@ -2187,20 +2211,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 984 + content_length: 1324 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:28.665368Z","gateway_networks":[],"id":"96a4883f-2b9a-4654-a533-c80799700bd4","ip":{"address":"212.47.239.248","created_at":"2025-01-27T09:16:28.645733Z","gateway_id":"96a4883f-2b9a-4654-a533-c80799700bd4","id":"5560876a-dac5-4715-a633-4e347b940af0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"248-239-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:28.645733Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"tf-pn-blissful-solomon","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:49.476024Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:11:58.519233Z","gateway_networks":[{"created_at":"2025-03-21T14:12:04.695257Z","gateway_id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","id":"1b428ef2-f5e5-4b36-80d4-523aaf0870e1","ipam_ip_id":"021703ef-ada0-48aa-9215-329edce63c71","mac_address":"02:00:00:1F:D8:8C","masquerade_enabled":true,"private_network_id":"2349f7dc-7faa-4e9b-9555-211cc8e75b09","push_default_route":false,"status":"ready","updated_at":"2025-03-21T14:12:15.695445Z","zone":"fr-par-1"}],"id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","ipv4":{"address":"51.15.212.27","created_at":"2025-03-21T14:11:58.311645Z","gateway_id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","id":"bbcad05c-f663-46c5-9a96-0411b7ef45d5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"27-212-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:11:58.311645Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","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-03-21T14:12:15.821318Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "984" + - "1324" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:57 GMT + - Fri, 21 Mar 2025 14:12:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2208,10 +2232,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 53a9b553-79f0-4f1e-b34a-dc3f210911ba + - 2a786595-1355-4306-ad69-eb711b9b7ccd status: 200 OK code: 200 - duration: 25.678334ms + duration: 37.433286ms - id: 45 request: proto: HTTP/1.1 @@ -2227,29 +2251,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/f10e58bf-ffdc-4e95-aec6-db5d6f259f84 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/ee871877-a16b-4ff6-8589-334a5a07d3e0 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 125 + content_length: 1324 uncompressed: false - body: '{"message":"resource is not found","resource":"dhcp","resource_id":"f10e58bf-ffdc-4e95-aec6-db5d6f259f84","type":"not_found"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:11:58.519233Z","gateway_networks":[{"created_at":"2025-03-21T14:12:04.695257Z","gateway_id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","id":"1b428ef2-f5e5-4b36-80d4-523aaf0870e1","ipam_ip_id":"021703ef-ada0-48aa-9215-329edce63c71","mac_address":"02:00:00:1F:D8:8C","masquerade_enabled":true,"private_network_id":"2349f7dc-7faa-4e9b-9555-211cc8e75b09","push_default_route":false,"status":"ready","updated_at":"2025-03-21T14:12:15.695445Z","zone":"fr-par-1"}],"id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","ipv4":{"address":"51.15.212.27","created_at":"2025-03-21T14:11:58.311645Z","gateway_id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","id":"bbcad05c-f663-46c5-9a96-0411b7ef45d5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"27-212-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:11:58.311645Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","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-03-21T14:12:15.821318Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "125" + - "1324" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:57 GMT + - Fri, 21 Mar 2025 14:12:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2257,11 +2281,62 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9a284004-d0bd-49eb-b34b-0f81e4a123a4 - status: 404 Not Found - code: 404 - duration: 25.660125ms + - 0f909d22-192d-45d4-9c6c-26d21e5731df + status: 200 OK + code: 200 + duration: 28.124779ms - id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 134 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"gateway_id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","public_port":2023,"private_ip":"172.16.60.3","private_port":22,"protocol":"tcp"}' + 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/vpc-gw/v2/zones/fr-par-1/pat-rules + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 282 + uncompressed: false + body: '{"created_at":"2025-03-21T14:12:43.224118Z","gateway_id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","id":"dfc80e7d-8e93-4d47-8a2b-14b86fc6eb5d","private_ip":"172.16.60.3","private_port":22,"protocol":"tcp","public_port":2023,"updated_at":"2025-03-21T14:12:43.224118Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "282" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 21 Mar 2025 14:12:43 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: + - b1c81375-c4fe-4095-a3c6-cd281a5a65fa + status: 200 OK + code: 200 + duration: 92.889533ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -2276,8 +2351,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-gw/v1/zones/fr-par-1/gateways/96a4883f-2b9a-4654-a533-c80799700bd4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/ee871877-a16b-4ff6-8589-334a5a07d3e0 method: GET response: proto: HTTP/2.0 @@ -2285,20 +2360,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 984 + content_length: 1324 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:28.665368Z","gateway_networks":[],"id":"96a4883f-2b9a-4654-a533-c80799700bd4","ip":{"address":"212.47.239.248","created_at":"2025-01-27T09:16:28.645733Z","gateway_id":"96a4883f-2b9a-4654-a533-c80799700bd4","id":"5560876a-dac5-4715-a633-4e347b940af0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"248-239-47-212.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:28.645733Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"tf-pn-blissful-solomon","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:49.476024Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:11:58.519233Z","gateway_networks":[{"created_at":"2025-03-21T14:12:04.695257Z","gateway_id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","id":"1b428ef2-f5e5-4b36-80d4-523aaf0870e1","ipam_ip_id":"021703ef-ada0-48aa-9215-329edce63c71","mac_address":"02:00:00:1F:D8:8C","masquerade_enabled":true,"private_network_id":"2349f7dc-7faa-4e9b-9555-211cc8e75b09","push_default_route":false,"status":"ready","updated_at":"2025-03-21T14:12:15.695445Z","zone":"fr-par-1"}],"id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","ipv4":{"address":"51.15.212.27","created_at":"2025-03-21T14:11:58.311645Z","gateway_id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","id":"bbcad05c-f663-46c5-9a96-0411b7ef45d5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"27-212-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:11:58.311645Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","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-03-21T14:12:15.821318Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "984" + - "1324" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:57 GMT + - Fri, 21 Mar 2025 14:12:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2306,11 +2381,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 733ac04a-1f5b-4655-948d-e83c14424757 + - ba9e1ffc-0a08-49a7-aa0b-fd0722e10b3d status: 200 OK code: 200 - duration: 29.265792ms - - id: 47 + duration: 33.423386ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -2325,27 +2400,127 @@ interactions: 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-gw/v1/zones/fr-par-1/gateways/96a4883f-2b9a-4654-a533-c80799700bd4?cleanup_dhcp=false - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/dfc80e7d-8e93-4d47-8a2b-14b86fc6eb5d + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} + content_length: 282 + uncompressed: false + body: '{"created_at":"2025-03-21T14:12:43.224118Z","gateway_id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","id":"dfc80e7d-8e93-4d47-8a2b-14b86fc6eb5d","private_ip":"172.16.60.3","private_port":22,"protocol":"tcp","public_port":2023,"updated_at":"2025-03-21T14:12:43.224118Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "282" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 21 Mar 2025 14:12:43 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: + - 9e08ce0e-3dc2-4213-bbf5-0f350e82d580 + status: 200 OK + code: 200 + duration: 52.585163ms + - 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/dfc80e7d-8e93-4d47-8a2b-14b86fc6eb5d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 282 uncompressed: false + body: '{"created_at":"2025-03-21T14:12:43.224118Z","gateway_id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","id":"dfc80e7d-8e93-4d47-8a2b-14b86fc6eb5d","private_ip":"172.16.60.3","private_port":22,"protocol":"tcp","public_port":2023,"updated_at":"2025-03-21T14:12:43.224118Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "282" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 21 Mar 2025 14:12:43 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: + - 42c4a0b6-e1fd-405e-8d39-794aad13f64b + status: 200 OK + code: 200 + duration: 29.696532ms + - 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.0; darwin; 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%3A19%3Af5%3A2c&order_by=created_at_desc&page=1&resource_type=unknown_type + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 516 + uncompressed: false + body: '{"ips":[{"address":"172.16.60.3/22","created_at":"2025-03-21T14:12:06.205402Z","id":"55322b2a-973a-49ef-a743-13ecfcc63924","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"dc9fb8c5-82fd-4142-b628-a2f6db1f2779","mac_address":"02:00:00:19:F5:2C","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"f50b6a53-1f1e-40e0-8b6a-b6b40b8f95e7"},"tags":[],"updated_at":"2025-03-21T14:12:06.205402Z","zone":null}],"total_count":1}' headers: + Content-Length: + - "516" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:57 GMT + - Fri, 21 Mar 2025 14:12:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2353,11 +2528,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 29cd3b45-a9f0-4267-8205-19d565ddfa48 - status: 204 No Content - code: 204 - duration: 43.782334ms - - id: 48 + - 0ca6f716-a936-47d3-9b14-e58972677e35 + status: 200 OK + code: 200 + duration: 46.603008ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -2372,8 +2547,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-gw/v1/zones/fr-par-1/gateways/96a4883f-2b9a-4654-a533-c80799700bd4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2349f7dc-7faa-4e9b-9555-211cc8e75b09 method: GET response: proto: HTTP/2.0 @@ -2381,20 +2556,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 128 + content_length: 1022 uncompressed: false - body: '{"message":"resource is not found","resource":"gateway","resource_id":"96a4883f-2b9a-4654-a533-c80799700bd4","type":"not_found"}' + body: '{"created_at":"2025-03-21T14:11:57.123890Z","dhcp_enabled":true,"id":"2349f7dc-7faa-4e9b-9555-211cc8e75b09","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-03-21T14:11:57.123890Z","id":"f50b6a53-1f1e-40e0-8b6a-b6b40b8f95e7","private_network_id":"2349f7dc-7faa-4e9b-9555-211cc8e75b09","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.60.0/22","updated_at":"2025-03-21T14:11:57.123890Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-03-21T14:11:57.123890Z","id":"fdaeab25-c543-48a3-b6ce-a12dd1510fdf","private_network_id":"2349f7dc-7faa-4e9b-9555-211cc8e75b09","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:dbe1::/64","updated_at":"2025-03-21T14:11:57.123890Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-03-21T14:12:11.878202Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "128" + - "1022" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:57 GMT + - Fri, 21 Mar 2025 14:12:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2402,11 +2577,2022 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a1fef65-9fbf-4a96-8897-be174019f4bd - status: 404 Not Found - code: 404 - duration: 21.88225ms - - id: 49 + - c31f590b-2246-442e-b6d5-ab45df59350f + status: 200 OK + code: 200 + duration: 29.741065ms + - 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/bbcad05c-f663-46c5-9a96-0411b7ef45d5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 390 + uncompressed: false + body: '{"address":"51.15.212.27","created_at":"2025-03-21T14:11:58.311645Z","gateway_id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","id":"bbcad05c-f663-46c5-9a96-0411b7ef45d5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"27-212-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:11:58.311645Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "390" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 21 Mar 2025 14:12:44 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: + - cc0db5b9-3634-4731-b666-e9b20d8893aa + status: 200 OK + code: 200 + duration: 47.516789ms + - 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/ee871877-a16b-4ff6-8589-334a5a07d3e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1324 + uncompressed: false + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:11:58.519233Z","gateway_networks":[{"created_at":"2025-03-21T14:12:04.695257Z","gateway_id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","id":"1b428ef2-f5e5-4b36-80d4-523aaf0870e1","ipam_ip_id":"021703ef-ada0-48aa-9215-329edce63c71","mac_address":"02:00:00:1F:D8:8C","masquerade_enabled":true,"private_network_id":"2349f7dc-7faa-4e9b-9555-211cc8e75b09","push_default_route":false,"status":"ready","updated_at":"2025-03-21T14:12:15.695445Z","zone":"fr-par-1"}],"id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","ipv4":{"address":"51.15.212.27","created_at":"2025-03-21T14:11:58.311645Z","gateway_id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","id":"bbcad05c-f663-46c5-9a96-0411b7ef45d5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"27-212-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:11:58.311645Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","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-03-21T14:12:15.821318Z","version":"0.7.3","zone":"fr-par-1"}' + headers: + Content-Length: + - "1324" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 21 Mar 2025 14:12:44 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: + - 523532d9-f009-482b-8204-c9049a352cc9 + status: 200 OK + code: 200 + duration: 29.311384ms + - 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/1b428ef2-f5e5-4b36-80d4-523aaf0870e1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 417 + uncompressed: false + body: '{"created_at":"2025-03-21T14:12:04.695257Z","gateway_id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","id":"1b428ef2-f5e5-4b36-80d4-523aaf0870e1","ipam_ip_id":"021703ef-ada0-48aa-9215-329edce63c71","mac_address":"02:00:00:1F:D8:8C","masquerade_enabled":true,"private_network_id":"2349f7dc-7faa-4e9b-9555-211cc8e75b09","push_default_route":false,"status":"ready","updated_at":"2025-03-21T14:12:15.695445Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "417" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 21 Mar 2025 14:12:44 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: + - 7fc98c5a-07ed-4610-902e-f48dd6a1096e + status: 200 OK + code: 200 + duration: 52.212986ms + - 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cc561dfa-1765-43be-9c45-7cd661260076 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2288 + 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-03-21T14:11:58.196970+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"cc561dfa-1765-43be-9c45-7cd661260076","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":"32","hypervisor_id":"702","node_id":"10","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:9d:eb:9d","maintenances":[],"modification_date":"2025-03-21T14:12:03.141299+00:00","name":"Scaleway Instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-03-21T14:12:05.654796+00:00","id":"dc9fb8c5-82fd-4142-b628-a2f6db1f2779","ipam_ip_ids":["55322b2a-973a-49ef-a743-13ecfcc63924","c7482886-8d40-4ec2-8490-6344f2cc0000"],"mac_address":"02:00:00:19:f5:2c","modification_date":"2025-03-21T14:12:37.709828+00:00","private_network_id":"2349f7dc-7faa-4e9b-9555-211cc8e75b09","server_id":"cc561dfa-1765-43be-9c45-7cd661260076","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":"97cc3c6c-f528-4192-a733-1b98c17c3e1d","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"7017e119-8d53-4af3-ae9f-d7daf0931bf3","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2288" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 21 Mar 2025 14:12:44 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: + - b30e4d33-5f00-4091-8fd3-edd7c45a76d7 + status: 200 OK + code: 200 + duration: 137.121586ms + - 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7017e119-8d53-4af3-ae9f-d7daf0931bf3 + 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":"7017e119-8d53-4af3-ae9f-d7daf0931bf3","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 21 Mar 2025 14:12:44 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: + - 46ddd471-1178-465a-bcb4-d048f8303601 + status: 404 Not Found + code: 404 + duration: 34.236041ms + - 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7017e119-8d53-4af3-ae9f-d7daf0931bf3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 673 + uncompressed: false + body: '{"created_at":"2025-03-21T14:11:58.342345Z","id":"7017e119-8d53-4af3-ae9f-d7daf0931bf3","last_detached_at":null,"name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"6ba10234-492c-443d-9f5d-2bea203f4fb2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-03-21T14:11:58.342345Z","id":"95d43f8b-03eb-4a52-886a-6c9b77d0586a","product_resource_id":"cc561dfa-1765-43be-9c45-7cd661260076","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-03-21T14:11:58.342345Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 21 Mar 2025 14:12:44 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: + - 3ad4fd6c-34ab-42d0-9d9f-00569855bf7d + status: 200 OK + code: 200 + duration: 37.967244ms + - 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cc561dfa-1765-43be-9c45-7cd661260076/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 17 + uncompressed: false + body: '{"user_data":[]}' + headers: + Content-Length: + - "17" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 21 Mar 2025 14:12:44 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: + - df55d1fa-e31b-41ee-8991-33e181e50d37 + status: 200 OK + code: 200 + duration: 73.322482ms + - 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cc561dfa-1765-43be-9c45-7cd661260076/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 478 + uncompressed: false + body: '{"private_nics":[{"creation_date":"2025-03-21T14:12:05.654796+00:00","id":"dc9fb8c5-82fd-4142-b628-a2f6db1f2779","ipam_ip_ids":["55322b2a-973a-49ef-a743-13ecfcc63924","c7482886-8d40-4ec2-8490-6344f2cc0000"],"mac_address":"02:00:00:19:f5:2c","modification_date":"2025-03-21T14:12:37.709828+00:00","private_network_id":"2349f7dc-7faa-4e9b-9555-211cc8e75b09","server_id":"cc561dfa-1765-43be-9c45-7cd661260076","state":"available","tags":[],"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "478" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 21 Mar 2025 14:12:44 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: + - b66db894-45d6-4f73-9ae4-c6c7e0eff7ed + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 66.759788ms + - 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.0; darwin; 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%3A19%3Af5%3A2c&order_by=created_at_desc&page=1&resource_type=unknown_type + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 516 + uncompressed: false + body: '{"ips":[{"address":"172.16.60.3/22","created_at":"2025-03-21T14:12:06.205402Z","id":"55322b2a-973a-49ef-a743-13ecfcc63924","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"dc9fb8c5-82fd-4142-b628-a2f6db1f2779","mac_address":"02:00:00:19:F5:2C","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"f50b6a53-1f1e-40e0-8b6a-b6b40b8f95e7"},"tags":[],"updated_at":"2025-03-21T14:12:06.205402Z","zone":null}],"total_count":1}' + headers: + Content-Length: + - "516" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 21 Mar 2025 14:12:44 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: + - 9c736fed-ecfc-428a-879c-5822cefc9fcd + status: 200 OK + code: 200 + duration: 46.569133ms + - 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/dfc80e7d-8e93-4d47-8a2b-14b86fc6eb5d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 282 + uncompressed: false + body: '{"created_at":"2025-03-21T14:12:43.224118Z","gateway_id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","id":"dfc80e7d-8e93-4d47-8a2b-14b86fc6eb5d","private_ip":"172.16.60.3","private_port":22,"protocol":"tcp","public_port":2023,"updated_at":"2025-03-21T14:12:43.224118Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "282" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 21 Mar 2025 14:12:44 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: + - ecf1d144-cb1c-48e1-bea4-38e3862352dd + status: 200 OK + code: 200 + duration: 22.146594ms + - 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.0; darwin; 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%3A19%3Af5%3A2c&order_by=created_at_desc&page=1&resource_type=unknown_type + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 516 + uncompressed: false + body: '{"ips":[{"address":"172.16.60.3/22","created_at":"2025-03-21T14:12:06.205402Z","id":"55322b2a-973a-49ef-a743-13ecfcc63924","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"dc9fb8c5-82fd-4142-b628-a2f6db1f2779","mac_address":"02:00:00:19:F5:2C","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"f50b6a53-1f1e-40e0-8b6a-b6b40b8f95e7"},"tags":[],"updated_at":"2025-03-21T14:12:06.205402Z","zone":null}],"total_count":1}' + headers: + Content-Length: + - "516" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 21 Mar 2025 14:12:45 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: + - 5958df6a-b38f-40cf-be7a-fd2a87c88be4 + status: 200 OK + code: 200 + duration: 51.093347ms + - 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/dfc80e7d-8e93-4d47-8a2b-14b86fc6eb5d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 282 + uncompressed: false + body: '{"created_at":"2025-03-21T14:12:43.224118Z","gateway_id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","id":"dfc80e7d-8e93-4d47-8a2b-14b86fc6eb5d","private_ip":"172.16.60.3","private_port":22,"protocol":"tcp","public_port":2023,"updated_at":"2025-03-21T14:12:43.224118Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "282" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 21 Mar 2025 14:12:45 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: + - 6f0aca99-0d1c-4afe-92ad-c0138b60b920 + status: 200 OK + code: 200 + duration: 22.761587ms + - 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/ee871877-a16b-4ff6-8589-334a5a07d3e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1324 + uncompressed: false + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:11:58.519233Z","gateway_networks":[{"created_at":"2025-03-21T14:12:04.695257Z","gateway_id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","id":"1b428ef2-f5e5-4b36-80d4-523aaf0870e1","ipam_ip_id":"021703ef-ada0-48aa-9215-329edce63c71","mac_address":"02:00:00:1F:D8:8C","masquerade_enabled":true,"private_network_id":"2349f7dc-7faa-4e9b-9555-211cc8e75b09","push_default_route":false,"status":"ready","updated_at":"2025-03-21T14:12:15.695445Z","zone":"fr-par-1"}],"id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","ipv4":{"address":"51.15.212.27","created_at":"2025-03-21T14:11:58.311645Z","gateway_id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","id":"bbcad05c-f663-46c5-9a96-0411b7ef45d5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"27-212-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:11:58.311645Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","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-03-21T14:12:15.821318Z","version":"0.7.3","zone":"fr-par-1"}' + headers: + Content-Length: + - "1324" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 21 Mar 2025 14:12:45 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: + - e3e540c4-5ba9-45d9-8c73-ad166f3880dc + status: 200 OK + code: 200 + duration: 23.51372ms + - 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/1b428ef2-f5e5-4b36-80d4-523aaf0870e1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 417 + uncompressed: false + body: '{"created_at":"2025-03-21T14:12:04.695257Z","gateway_id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","id":"1b428ef2-f5e5-4b36-80d4-523aaf0870e1","ipam_ip_id":"021703ef-ada0-48aa-9215-329edce63c71","mac_address":"02:00:00:1F:D8:8C","masquerade_enabled":true,"private_network_id":"2349f7dc-7faa-4e9b-9555-211cc8e75b09","push_default_route":false,"status":"ready","updated_at":"2025-03-21T14:12:15.695445Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "417" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 21 Mar 2025 14:12:45 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: + - 570cf455-7f01-444c-9cf3-6a8ff834c6f3 + status: 200 OK + code: 200 + duration: 79.946334ms + - 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/dfc80e7d-8e93-4d47-8a2b-14b86fc6eb5d + 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: + - Fri, 21 Mar 2025 14:12:45 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: + - e9902332-8078-49af-90a8-d30bcebdec13 + status: 204 No Content + code: 204 + duration: 42.091275ms + - 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/ee871877-a16b-4ff6-8589-334a5a07d3e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1324 + uncompressed: false + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:11:58.519233Z","gateway_networks":[{"created_at":"2025-03-21T14:12:04.695257Z","gateway_id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","id":"1b428ef2-f5e5-4b36-80d4-523aaf0870e1","ipam_ip_id":"021703ef-ada0-48aa-9215-329edce63c71","mac_address":"02:00:00:1F:D8:8C","masquerade_enabled":true,"private_network_id":"2349f7dc-7faa-4e9b-9555-211cc8e75b09","push_default_route":false,"status":"ready","updated_at":"2025-03-21T14:12:15.695445Z","zone":"fr-par-1"}],"id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","ipv4":{"address":"51.15.212.27","created_at":"2025-03-21T14:11:58.311645Z","gateway_id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","id":"bbcad05c-f663-46c5-9a96-0411b7ef45d5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"27-212-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:11:58.311645Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","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-03-21T14:12:15.821318Z","version":"0.7.3","zone":"fr-par-1"}' + headers: + Content-Length: + - "1324" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 21 Mar 2025 14:12:45 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: + - d005e7a1-594a-4cda-b97c-b094e8655a55 + status: 200 OK + code: 200 + duration: 34.925574ms + - 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/1b428ef2-f5e5-4b36-80d4-523aaf0870e1 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 421 + uncompressed: false + body: '{"created_at":"2025-03-21T14:12:04.695257Z","gateway_id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","id":"1b428ef2-f5e5-4b36-80d4-523aaf0870e1","ipam_ip_id":"021703ef-ada0-48aa-9215-329edce63c71","mac_address":"02:00:00:1F:D8:8C","masquerade_enabled":true,"private_network_id":"2349f7dc-7faa-4e9b-9555-211cc8e75b09","push_default_route":false,"status":"detaching","updated_at":"2025-03-21T14:12:45.894531Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "421" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 21 Mar 2025 14:12:45 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: + - 6eb24e57-cec6-4470-b90a-39de1829dbcd + status: 200 OK + code: 200 + duration: 72.981217ms + - 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/1b428ef2-f5e5-4b36-80d4-523aaf0870e1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 421 + uncompressed: false + body: '{"created_at":"2025-03-21T14:12:04.695257Z","gateway_id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","id":"1b428ef2-f5e5-4b36-80d4-523aaf0870e1","ipam_ip_id":"021703ef-ada0-48aa-9215-329edce63c71","mac_address":"02:00:00:1F:D8:8C","masquerade_enabled":true,"private_network_id":"2349f7dc-7faa-4e9b-9555-211cc8e75b09","push_default_route":false,"status":"detaching","updated_at":"2025-03-21T14:12:45.894531Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "421" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 21 Mar 2025 14:12:45 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: + - 5adac6e0-e2c7-479e-8dbd-fb5125e07ebd + status: 200 OK + code: 200 + duration: 47.494099ms + - 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cc561dfa-1765-43be-9c45-7cd661260076 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2288 + 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-03-21T14:11:58.196970+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"cc561dfa-1765-43be-9c45-7cd661260076","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":"32","hypervisor_id":"702","node_id":"10","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:9d:eb:9d","maintenances":[],"modification_date":"2025-03-21T14:12:03.141299+00:00","name":"Scaleway Instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-03-21T14:12:05.654796+00:00","id":"dc9fb8c5-82fd-4142-b628-a2f6db1f2779","ipam_ip_ids":["55322b2a-973a-49ef-a743-13ecfcc63924","c7482886-8d40-4ec2-8490-6344f2cc0000"],"mac_address":"02:00:00:19:f5:2c","modification_date":"2025-03-21T14:12:37.709828+00:00","private_network_id":"2349f7dc-7faa-4e9b-9555-211cc8e75b09","server_id":"cc561dfa-1765-43be-9c45-7cd661260076","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":"97cc3c6c-f528-4192-a733-1b98c17c3e1d","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"7017e119-8d53-4af3-ae9f-d7daf0931bf3","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2288" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 21 Mar 2025 14:12:46 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: + - e73281f9-e0c4-4942-84a1-411ddf88a4bb + status: 200 OK + code: 200 + duration: 161.869412ms + - 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7017e119-8d53-4af3-ae9f-d7daf0931bf3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 673 + uncompressed: false + body: '{"created_at":"2025-03-21T14:11:58.342345Z","id":"7017e119-8d53-4af3-ae9f-d7daf0931bf3","last_detached_at":null,"name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"6ba10234-492c-443d-9f5d-2bea203f4fb2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-03-21T14:11:58.342345Z","id":"95d43f8b-03eb-4a52-886a-6c9b77d0586a","product_resource_id":"cc561dfa-1765-43be-9c45-7cd661260076","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-03-21T14:11:58.342345Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 21 Mar 2025 14:12:46 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: + - fb2362bf-0f3d-4ee7-bec0-d183bfccc98f + status: 200 OK + code: 200 + duration: 47.672615ms + - id: 72 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 21 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"action":"poweroff"}' + 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/instance/v1/zones/fr-par-1/servers/cc561dfa-1765-43be-9c45-7cd661260076/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 352 + uncompressed: false + body: '{"task":{"description":"server_poweroff","href_from":"/servers/cc561dfa-1765-43be-9c45-7cd661260076/action","href_result":"/servers/cc561dfa-1765-43be-9c45-7cd661260076","id":"6a8954c8-420c-4e9e-96b6-66272090a452","progress":0,"started_at":"2025-03-21T14:12:46.321856+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + headers: + Content-Length: + - "352" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 21 Mar 2025 14:12:46 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/6a8954c8-420c-4e9e-96b6-66272090a452 + 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: + - 50942dad-78ee-4b4c-91f0-a0c3479ef163 + status: 202 Accepted + code: 202 + duration: 204.300784ms + - 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cc561dfa-1765-43be-9c45-7cd661260076 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2248 + 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-03-21T14:11:58.196970+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"cc561dfa-1765-43be-9c45-7cd661260076","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":"32","hypervisor_id":"702","node_id":"10","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:9d:eb:9d","maintenances":[],"modification_date":"2025-03-21T14:12:46.164511+00:00","name":"Scaleway Instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-03-21T14:12:05.654796+00:00","id":"dc9fb8c5-82fd-4142-b628-a2f6db1f2779","ipam_ip_ids":["55322b2a-973a-49ef-a743-13ecfcc63924","c7482886-8d40-4ec2-8490-6344f2cc0000"],"mac_address":"02:00:00:19:f5:2c","modification_date":"2025-03-21T14:12:37.709828+00:00","private_network_id":"2349f7dc-7faa-4e9b-9555-211cc8e75b09","server_id":"cc561dfa-1765-43be-9c45-7cd661260076","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":"97cc3c6c-f528-4192-a733-1b98c17c3e1d","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"7017e119-8d53-4af3-ae9f-d7daf0931bf3","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2248" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 21 Mar 2025 14:12:46 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: + - 74adad2e-0e51-4348-a8be-298d80f309e3 + status: 200 OK + code: 200 + duration: 138.898785ms + - 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/1b428ef2-f5e5-4b36-80d4-523aaf0870e1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 136 + uncompressed: false + body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"1b428ef2-f5e5-4b36-80d4-523aaf0870e1","type":"not_found"}' + headers: + Content-Length: + - "136" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 21 Mar 2025 14:12:50 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: + - 5140ab6b-d151-44f0-be61-65fd5639673a + status: 404 Not Found + code: 404 + duration: 28.321817ms + - 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/ee871877-a16b-4ff6-8589-334a5a07d3e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 907 + uncompressed: false + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:11:58.519233Z","gateway_networks":[],"id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","ipv4":{"address":"51.15.212.27","created_at":"2025-03-21T14:11:58.311645Z","gateway_id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","id":"bbcad05c-f663-46c5-9a96-0411b7ef45d5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"27-212-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:11:58.311645Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","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-03-21T14:12:15.821318Z","version":"0.7.3","zone":"fr-par-1"}' + headers: + Content-Length: + - "907" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 21 Mar 2025 14:12:51 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: + - adfd2643-ddee-41d7-b10d-c49e221f7013 + status: 200 OK + code: 200 + duration: 24.014998ms + - 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/ee871877-a16b-4ff6-8589-334a5a07d3e0?delete_ip=false + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 908 + uncompressed: false + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:11:58.519233Z","gateway_networks":[],"id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","ipv4":{"address":"51.15.212.27","created_at":"2025-03-21T14:11:58.311645Z","gateway_id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","id":"bbcad05c-f663-46c5-9a96-0411b7ef45d5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"27-212-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:11:58.311645Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","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-03-21T14:12:51.059701Z","version":"0.7.3","zone":"fr-par-1"}' + headers: + Content-Length: + - "908" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 21 Mar 2025 14:12:51 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: + - e74c8bcd-2974-479f-b3b0-d8b34256ad65 + status: 200 OK + code: 200 + duration: 49.798181ms + - id: 77 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/ee871877-a16b-4ff6-8589-334a5a07d3e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 908 + uncompressed: false + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-21T14:11:58.519233Z","gateway_networks":[],"id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","ipv4":{"address":"51.15.212.27","created_at":"2025-03-21T14:11:58.311645Z","gateway_id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","id":"bbcad05c-f663-46c5-9a96-0411b7ef45d5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"27-212-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-03-21T14:11:58.311645Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","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-03-21T14:12:51.059701Z","version":"0.7.3","zone":"fr-par-1"}' + headers: + Content-Length: + - "908" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 21 Mar 2025 14:12:51 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: + - 6ba55689-17d9-4fdb-80ac-588e63fba4b0 + status: 200 OK + code: 200 + duration: 22.81745ms + - id: 78 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cc561dfa-1765-43be-9c45-7cd661260076 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2248 + 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-03-21T14:11:58.196970+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"cc561dfa-1765-43be-9c45-7cd661260076","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":"32","hypervisor_id":"702","node_id":"10","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:9d:eb:9d","maintenances":[],"modification_date":"2025-03-21T14:12:46.164511+00:00","name":"Scaleway Instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-03-21T14:12:05.654796+00:00","id":"dc9fb8c5-82fd-4142-b628-a2f6db1f2779","ipam_ip_ids":["55322b2a-973a-49ef-a743-13ecfcc63924","c7482886-8d40-4ec2-8490-6344f2cc0000"],"mac_address":"02:00:00:19:f5:2c","modification_date":"2025-03-21T14:12:37.709828+00:00","private_network_id":"2349f7dc-7faa-4e9b-9555-211cc8e75b09","server_id":"cc561dfa-1765-43be-9c45-7cd661260076","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":"97cc3c6c-f528-4192-a733-1b98c17c3e1d","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"7017e119-8d53-4af3-ae9f-d7daf0931bf3","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2248" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 21 Mar 2025 14:12:51 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: + - 9d6215e6-dcdd-4671-bb5a-e90973dc54aa + status: 200 OK + code: 200 + duration: 210.264139ms + - id: 79 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/ee871877-a16b-4ff6-8589-334a5a07d3e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 128 + uncompressed: false + body: '{"message":"resource is not found","resource":"gateway","resource_id":"ee871877-a16b-4ff6-8589-334a5a07d3e0","type":"not_found"}' + headers: + Content-Length: + - "128" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 21 Mar 2025 14:12:56 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: + - 60b64939-48f5-4829-95ae-3102f7cd3360 + status: 404 Not Found + code: 404 + duration: 19.119628ms + - id: 80 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/bbcad05c-f663-46c5-9a96-0411b7ef45d5 + 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: + - Fri, 21 Mar 2025 14:12:56 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: + - 561a903f-1357-4cd6-b161-45c2b12b1277 + status: 204 No Content + code: 204 + duration: 724.058575ms + - id: 81 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cc561dfa-1765-43be-9c45-7cd661260076 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2248 + 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-03-21T14:11:58.196970+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"cc561dfa-1765-43be-9c45-7cd661260076","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":"32","hypervisor_id":"702","node_id":"10","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:9d:eb:9d","maintenances":[],"modification_date":"2025-03-21T14:12:46.164511+00:00","name":"Scaleway Instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-03-21T14:12:05.654796+00:00","id":"dc9fb8c5-82fd-4142-b628-a2f6db1f2779","ipam_ip_ids":["55322b2a-973a-49ef-a743-13ecfcc63924","c7482886-8d40-4ec2-8490-6344f2cc0000"],"mac_address":"02:00:00:19:f5:2c","modification_date":"2025-03-21T14:12:37.709828+00:00","private_network_id":"2349f7dc-7faa-4e9b-9555-211cc8e75b09","server_id":"cc561dfa-1765-43be-9c45-7cd661260076","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":"97cc3c6c-f528-4192-a733-1b98c17c3e1d","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"7017e119-8d53-4af3-ae9f-d7daf0931bf3","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2248" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 21 Mar 2025 14:12:56 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: + - a5095155-2089-4c6c-a568-f93a0dda2e1c + status: 200 OK + code: 200 + duration: 193.510776ms + - id: 82 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cc561dfa-1765-43be-9c45-7cd661260076 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2132 + uncompressed: false + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-03-21T14:11:58.196970+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"cc561dfa-1765-43be-9c45-7cd661260076","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:9d:eb:9d","maintenances":[],"modification_date":"2025-03-21T14:12:59.323479+00:00","name":"Scaleway Instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-03-21T14:12:05.654796+00:00","id":"dc9fb8c5-82fd-4142-b628-a2f6db1f2779","ipam_ip_ids":["55322b2a-973a-49ef-a743-13ecfcc63924","c7482886-8d40-4ec2-8490-6344f2cc0000"],"mac_address":"02:00:00:19:f5:2c","modification_date":"2025-03-21T14:12:37.709828+00:00","private_network_id":"2349f7dc-7faa-4e9b-9555-211cc8e75b09","server_id":"cc561dfa-1765-43be-9c45-7cd661260076","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":"97cc3c6c-f528-4192-a733-1b98c17c3e1d","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"7017e119-8d53-4af3-ae9f-d7daf0931bf3","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2132" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 21 Mar 2025 14:13: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: + - da1438dd-a77f-494d-84cf-26d26548ba07 + status: 200 OK + code: 200 + duration: 127.317194ms + - 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cc561dfa-1765-43be-9c45-7cd661260076/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 478 + uncompressed: false + body: '{"private_nics":[{"creation_date":"2025-03-21T14:12:05.654796+00:00","id":"dc9fb8c5-82fd-4142-b628-a2f6db1f2779","ipam_ip_ids":["55322b2a-973a-49ef-a743-13ecfcc63924","c7482886-8d40-4ec2-8490-6344f2cc0000"],"mac_address":"02:00:00:19:f5:2c","modification_date":"2025-03-21T14:12:37.709828+00:00","private_network_id":"2349f7dc-7faa-4e9b-9555-211cc8e75b09","server_id":"cc561dfa-1765-43be-9c45-7cd661260076","state":"available","tags":[],"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "478" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 21 Mar 2025 14:13:02 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: + - d42e9bcd-224d-4f65-a208-83c0230bdc9e + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 76.804921ms + - id: 84 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cc561dfa-1765-43be-9c45-7cd661260076/private_nics/dc9fb8c5-82fd-4142-b628-a2f6db1f2779 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 475 + uncompressed: false + body: '{"private_nic":{"creation_date":"2025-03-21T14:12:05.654796+00:00","id":"dc9fb8c5-82fd-4142-b628-a2f6db1f2779","ipam_ip_ids":["55322b2a-973a-49ef-a743-13ecfcc63924","c7482886-8d40-4ec2-8490-6344f2cc0000"],"mac_address":"02:00:00:19:f5:2c","modification_date":"2025-03-21T14:12:37.709828+00:00","private_network_id":"2349f7dc-7faa-4e9b-9555-211cc8e75b09","server_id":"cc561dfa-1765-43be-9c45-7cd661260076","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: + - Fri, 21 Mar 2025 14:13: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: + - 93cf6db2-3868-4033-8954-680280f503dd + status: 200 OK + code: 200 + duration: 70.576187ms + - id: 85 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cc561dfa-1765-43be-9c45-7cd661260076/private_nics/dc9fb8c5-82fd-4142-b628-a2f6db1f2779 + 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: + - Fri, 21 Mar 2025 14:13: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: + - f36211d7-3131-4fe9-81dc-a9ba266c4d65 + status: 204 No Content + code: 204 + duration: 319.046027ms + - id: 86 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cc561dfa-1765-43be-9c45-7cd661260076/private_nics/dc9fb8c5-82fd-4142-b628-a2f6db1f2779 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 148 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"dc9fb8c5-82fd-4142-b628-a2f6db1f2779","type":"not_found"}' + headers: + Content-Length: + - "148" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 21 Mar 2025 14:13: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: + - faff9676-c48e-4cc6-a7e5-2f871ffda65d + status: 404 Not Found + code: 404 + duration: 144.315876ms + - id: 87 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cc561dfa-1765-43be-9c45-7cd661260076 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1674 + uncompressed: false + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-03-21T14:11:58.196970+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"cc561dfa-1765-43be-9c45-7cd661260076","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:9d:eb:9d","maintenances":[],"modification_date":"2025-03-21T14:12:59.323479+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":"97cc3c6c-f528-4192-a733-1b98c17c3e1d","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"7017e119-8d53-4af3-ae9f-d7daf0931bf3","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1674" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 21 Mar 2025 14:13: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: + - 3cf15475-8279-4491-b574-d3f47f496c35 + status: 200 OK + code: 200 + duration: 191.669932ms + - id: 88 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cc561dfa-1765-43be-9c45-7cd661260076 + 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: + - Fri, 21 Mar 2025 14:13: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: + - 64612e1d-c1db-42eb-85ca-f8a72fb07cfa + status: 204 No Content + code: 204 + duration: 275.725721ms + - 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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cc561dfa-1765-43be-9c45-7cd661260076 + 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_server","resource_id":"cc561dfa-1765-43be-9c45-7cd661260076","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 21 Mar 2025 14:13: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: + - d527c28f-b5c9-4138-8016-e84ada661ccc + status: 404 Not Found + code: 404 + duration: 206.985607ms + - id: 90 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7017e119-8d53-4af3-ae9f-d7daf0931bf3 + 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":"7017e119-8d53-4af3-ae9f-d7daf0931bf3","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 21 Mar 2025 14:13: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: + - d771f3ad-711a-4af4-bf1e-9008c09476bb + status: 404 Not Found + code: 404 + duration: 27.95637ms + - id: 91 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + 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/block/v1alpha1/zones/fr-par-1/volumes/7017e119-8d53-4af3-ae9f-d7daf0931bf3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 471 + uncompressed: false + body: '{"created_at":"2025-03-21T14:11:58.342345Z","id":"7017e119-8d53-4af3-ae9f-d7daf0931bf3","last_detached_at":"2025-03-21T14:13:03.127091Z","name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"6ba10234-492c-443d-9f5d-2bea203f4fb2","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-03-21T14:13:03.127091Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "471" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 21 Mar 2025 14:13: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: + - 9153abe5-5085-403e-ad30-1df14c8a2014 + status: 200 OK + code: 200 + duration: 47.335887ms + - id: 92 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + 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/block/v1alpha1/zones/fr-par-1/volumes/7017e119-8d53-4af3-ae9f-d7daf0931bf3 + 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: + - Fri, 21 Mar 2025 14:13: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: + - b979d4da-22ae-4ea9-9938-42a0dc65242d + status: 204 No Content + code: 204 + duration: 68.800025ms + - id: 93 request: proto: HTTP/1.1 proto_major: 1 @@ -2421,8 +4607,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/83c51f71-1f95-4294-b386-ab79277bd543 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2349f7dc-7faa-4e9b-9555-211cc8e75b09 method: DELETE response: proto: HTTP/2.0 @@ -2439,9 +4625,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:58 GMT + - Fri, 21 Mar 2025 14:13:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2449,7 +4635,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 20a2fc94-59cc-4413-8a14-e0acb48a15a3 + - e8813210-60b8-4de5-8e12-3f8490b89533 status: 204 No Content code: 204 - duration: 1.599891583s + duration: 1.26691639s diff --git a/internal/services/vpcgw/testdata/vpc-public-gateway-pat-rule-with-instance.cassette.yaml b/internal/services/vpcgw/testdata/vpc-public-gateway-pat-rule-with-instance.cassette.yaml deleted file mode 100644 index b3a9b6adc7..0000000000 --- a/internal/services/vpcgw/testdata/vpc-public-gateway-pat-rule-with-instance.cassette.yaml +++ /dev/null @@ -1,5276 +0,0 @@ ---- -version: 2 -interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 76 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"10.0.0.0/24"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 574 - uncompressed: false - body: '{"address":"10.0.0.1","created_at":"2025-02-12T16:24:15.738170Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"caa611d1-c0ae-4232-8a3e-1d7405c19b12","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2025-02-12T16:24:15.738170Z","valid_lifetime":"3600s","zone":"fr-par-1"}' - headers: - Content-Length: - - "574" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:24:15 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: - - d8ab0b79-936b-4cd3-a592-015a18a69d74 - status: 200 OK - code: 200 - duration: 282.138ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/caa611d1-c0ae-4232-8a3e-1d7405c19b12 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 574 - uncompressed: false - body: '{"address":"10.0.0.1","created_at":"2025-02-12T16:24:15.738170Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"caa611d1-c0ae-4232-8a3e-1d7405c19b12","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2025-02-12T16:24:15.738170Z","valid_lifetime":"3600s","zone":"fr-par-1"}' - headers: - Content-Length: - - "574" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:24:15 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: - - 21a6bc6a-203c-46dd-8e21-3ae6eda1c4fd - status: 200 OK - code: 200 - duration: 44.325959ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 106 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"My Private Network","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; 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: 1044 - uncompressed: false - body: '{"created_at":"2025-02-12T16:24:15.729901Z","dhcp_enabled":true,"id":"a100296c-6bde-43ca-bd37-960b05298469","name":"My Private Network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-02-12T16:24:15.729901Z","id":"bf902737-8d9f-4392-b904-74c271ab3f11","private_network_id":"a100296c-6bde-43ca-bd37-960b05298469","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.0.0/22","updated_at":"2025-02-12T16:24:15.729901Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-02-12T16:24:15.729901Z","id":"dff2513f-839c-4891-a6b6-90cf662a39d0","private_network_id":"a100296c-6bde-43ca-bd37-960b05298469","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:8a43::/64","updated_at":"2025-02-12T16:24:15.729901Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-02-12T16:24:15.729901Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' - headers: - Content-Length: - - "1044" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:24:16 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: - - 0b9d8899-5c5c-4115-8f3c-26093986a538 - status: 200 OK - code: 200 - duration: 897.417792ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a100296c-6bde-43ca-bd37-960b05298469 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1044 - uncompressed: false - body: '{"created_at":"2025-02-12T16:24:15.729901Z","dhcp_enabled":true,"id":"a100296c-6bde-43ca-bd37-960b05298469","name":"My Private Network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-02-12T16:24:15.729901Z","id":"bf902737-8d9f-4392-b904-74c271ab3f11","private_network_id":"a100296c-6bde-43ca-bd37-960b05298469","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.0.0/22","updated_at":"2025-02-12T16:24:15.729901Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-02-12T16:24:15.729901Z","id":"dff2513f-839c-4891-a6b6-90cf662a39d0","private_network_id":"a100296c-6bde-43ca-bd37-960b05298469","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:8a43::/64","updated_at":"2025-02-12T16:24:15.729901Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-02-12T16:24:15.729901Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' - headers: - Content-Length: - - "1044" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:24:16 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: - - 6831c3f2-0b67-4672-b3cf-f1d9578098d3 - status: 200 OK - code: 200 - duration: 46.994875ms - - 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":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 371 - uncompressed: false - body: '{"address":"163.172.162.186","created_at":"2025-02-12T16:24:16.504200Z","gateway_id":null,"id":"34cc7b82-72c0-4b4b-95a2-2cc0daebf1b8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"186-162-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-02-12T16:24:16.504200Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "371" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:24:16 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: - - 6c5e3a3d-b833-4c37-93a6-227816cfb65b - status: 200 OK - code: 200 - duration: 1.070742958s - - 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.23.5; 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: 35639 - 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,"placement_groups":true,"private_network":8},"gpu":0,"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,"placement_groups":true,"private_network":8},"gpu":0,"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,"placement_groups":true,"private_network":8},"gpu":0,"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,"placement_groups":true,"private_network":8},"gpu":0,"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,"placement_groups":true,"private_network":8},"gpu":0,"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,"placement_groups":true,"private_network":8},"gpu":0,"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,"placement_groups":true,"private_network":8},"gpu":0,"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,"placement_groups":true,"private_network":8},"gpu":0,"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,"placement_groups":true,"private_network":8},"gpu":0,"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,"placement_groups":true,"private_network":8},"gpu":0,"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":6710886400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"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,"placement_groups":true,"private_network":8},"gpu":0,"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,"placement_groups":true,"private_network":8},"gpu":0,"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":13421772800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"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,"placement_groups":true,"private_network":8},"gpu":0,"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,"placement_groups":true,"private_network":8},"gpu":0,"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,"placement_groups":true,"private_network":8},"gpu":0,"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,"placement_groups":true,"private_network":8},"gpu":0,"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,"placement_groups":true,"private_network":8},"gpu":0,"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,"placement_groups":true,"private_network":8},"gpu":0,"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,"placement_groups":true,"private_network":8},"gpu":0,"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,"placement_groups":true,"private_network":8},"gpu":0,"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,"placement_groups":true,"private_network":8},"gpu":0,"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,"placement_groups":true,"private_network":8},"gpu":0,"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,"placement_groups":true,"private_network":8},"gpu":0,"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,"placement_groups":true,"private_network":8},"gpu":0,"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,"placement_groups":true,"private_network":8},"gpu":0,"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,"placement_groups":true,"private_network":8},"gpu":0,"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":6710886400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"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":6710886400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"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-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"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,"placement_groups":true,"private_network":8},"gpu":0,"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":13421772800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"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,"placement_groups":true,"private_network":8},"gpu":0,"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,"placement_groups":true,"private_network":8},"gpu":0,"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,"placement_groups":true,"private_network":8},"gpu":0,"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,"placement_groups":true,"private_network":8},"gpu":0,"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":6710886400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"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-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"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":13421772800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"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,"placement_groups":true,"private_network":8},"gpu":0,"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,"placement_groups":true,"private_network":8},"gpu":0,"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,"placement_groups":true,"private_network":8},"gpu":0,"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":6710886400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"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-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"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":13421772800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"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,"placement_groups":true,"private_network":8},"gpu":0,"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,"placement_groups":true,"private_network":8},"gpu":0,"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,"placement_groups":true,"private_network":8},"gpu":0,"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,"placement_groups":true,"private_network":8},"gpu":0,"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}}}}' - headers: - Content-Length: - - "35639" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:24:16 GMT - Link: - - ; rel="next",; rel="last" - 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: - - dbbf7363-3763-4e6b-a0dc-931ad773621d - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 80.128167ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips/34cc7b82-72c0-4b4b-95a2-2cc0daebf1b8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 371 - uncompressed: false - body: '{"address":"163.172.162.186","created_at":"2025-02-12T16:24:16.504200Z","gateway_id":null,"id":"34cc7b82-72c0-4b4b-95a2-2cc0daebf1b8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"186-162-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-02-12T16:24:16.504200Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "371" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:24:16 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: - - 015f945b-9bac-492f-b8d5-346640204303 - status: 200 OK - code: 200 - duration: 41.568375ms - - 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.23.5; 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: 13164 - uncompressed: false - body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"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,"placement_groups":true,"private_network":8},"gpu":0,"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,"placement_groups":true,"private_network":8},"gpu":0,"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,"placement_groups":true,"private_network":8},"gpu":0,"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,"placement_groups":true,"private_network":8},"gpu":0,"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,"placement_groups":true,"private_network":8},"gpu":1,"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,"placement_groups":true,"private_network":8},"gpu":0,"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,"placement_groups":true,"private_network":8},"gpu":0,"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,"placement_groups":true,"private_network":8},"gpu":0,"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,"placement_groups":true,"private_network":8},"gpu":0,"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,"placement_groups":true,"private_network":8},"gpu":0,"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,"placement_groups":true,"private_network":8},"gpu":0,"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,"placement_groups":true,"private_network":8},"gpu":0,"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,"placement_groups":true,"private_network":8},"gpu":0,"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,"placement_groups":true,"private_network":8},"gpu":0,"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,"placement_groups":true,"private_network":8},"gpu":0,"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,"placement_groups":true,"private_network":8},"gpu":0,"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,"placement_groups":true,"private_network":8},"gpu":0,"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}}}}' - headers: - Content-Length: - - "13164" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:24:16 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - 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: - - 9cac7057-b5ff-457d-b39e-1cf601a53586 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 58.152208ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 225 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"The Public Gateway","tags":[],"type":"VPC-GW-S","upstream_dns_servers":[],"ip_id":"34cc7b82-72c0-4b4b-95a2-2cc0daebf1b8","enable_smtp":false,"enable_bastion":false}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1014 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-02-12T16:24:16.671456Z","gateway_networks":[],"id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","ip":{"address":"163.172.162.186","created_at":"2025-02-12T16:24:16.504200Z","gateway_id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","id":"34cc7b82-72c0-4b4b-95a2-2cc0daebf1b8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"186-162-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-02-12T16:24:16.504200Z","zone":"fr-par-1"},"ip_mobility_enabled":false,"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-02-12T16:24:16.671456Z","upstream_dns_servers":[],"version":null,"zone":"fr-par-1"}' - headers: - Content-Length: - - "1014" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:24:16 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: - - c20df0c2-ded6-4955-9b11-3c8a7efc66af - status: 200 OK - code: 200 - duration: 100.202ms - - 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.23.5; 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: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1302 - 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"],"id":"a805381b-7ce6-425f-a108-96d9ee019135","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":"ffd21d6b-939a-48b2-a100-ab0030fe0ec9","label":"debian_bullseye","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' - headers: - Content-Length: - - "1302" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:24:16 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: - - c8f67b08-b8a3-427c-b062-2deb0a6becb2 - status: 200 OK - code: 200 - duration: 98.179584ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/21853ec7-231b-4ed9-a7d4-4694e59a3f14 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1016 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-02-12T16:24:16.671456Z","gateway_networks":[],"id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","ip":{"address":"163.172.162.186","created_at":"2025-02-12T16:24:16.504200Z","gateway_id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","id":"34cc7b82-72c0-4b4b-95a2-2cc0daebf1b8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"186-162-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-02-12T16:24:16.504200Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-02-12T16:24:16.717454Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' - headers: - Content-Length: - - "1016" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:24:16 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: - - 5cbd48b4-a44c-4d43-9ad5-87bf39b132ab - status: 200 OK - code: 200 - duration: 47.127292ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 230 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"Scaleway Instance","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"a805381b-7ce6-425f-a108-96d9ee019135","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; 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: 1655 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-12T16:24:16.951639+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-instance","id":"23a1d963-1b47-45ca-8aeb-834d8d97d4f3","image":{"arch":"x86_64","creation_date":"2024-10-07T11:32:23.548676+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a805381b-7ce6-425f-a108-96d9ee019135","modification_date":"2024-10-07T11:32:23.548676+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"a50e6921-21b9-4a69-83cc-191359208d4c","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:93:c8:69","maintenances":[],"modification_date":"2025-02-12T16:24:16.951639+00:00","name":"Scaleway Instance","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":"811d24a7-f24f-48ca-a17a-8f6f1d80acf2","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1655" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:24:17 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/23a1d963-1b47-45ca-8aeb-834d8d97d4f3 - 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: - - 00491812-560a-48c9-8129-2a5b1bdaf3a2 - status: 201 Created - code: 201 - duration: 998.411417ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/23a1d963-1b47-45ca-8aeb-834d8d97d4f3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1655 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-12T16:24:16.951639+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-instance","id":"23a1d963-1b47-45ca-8aeb-834d8d97d4f3","image":{"arch":"x86_64","creation_date":"2024-10-07T11:32:23.548676+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a805381b-7ce6-425f-a108-96d9ee019135","modification_date":"2024-10-07T11:32:23.548676+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"a50e6921-21b9-4a69-83cc-191359208d4c","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:93:c8:69","maintenances":[],"modification_date":"2025-02-12T16:24:16.951639+00:00","name":"Scaleway Instance","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":"811d24a7-f24f-48ca-a17a-8f6f1d80acf2","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1655" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:24:17 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: - - d3089c1e-496e-475f-acb7-8abbea7b39de - status: 200 OK - code: 200 - duration: 305.138708ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/23a1d963-1b47-45ca-8aeb-834d8d97d4f3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1655 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-12T16:24:16.951639+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-instance","id":"23a1d963-1b47-45ca-8aeb-834d8d97d4f3","image":{"arch":"x86_64","creation_date":"2024-10-07T11:32:23.548676+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a805381b-7ce6-425f-a108-96d9ee019135","modification_date":"2024-10-07T11:32:23.548676+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"a50e6921-21b9-4a69-83cc-191359208d4c","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:93:c8:69","maintenances":[],"modification_date":"2025-02-12T16:24:16.951639+00:00","name":"Scaleway Instance","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":"811d24a7-f24f-48ca-a17a-8f6f1d80acf2","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1655" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:24:18 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: - - f36616e7-7935-44e0-a360-54687500b931 - status: 200 OK - code: 200 - duration: 176.058125ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/811d24a7-f24f-48ca-a17a-8f6f1d80acf2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 692 - uncompressed: false - body: '{"created_at":"2025-02-12T16:24:17.161631Z","id":"811d24a7-f24f-48ca-a17a-8f6f1d80acf2","last_detached_at":null,"name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"a50e6921-21b9-4a69-83cc-191359208d4c","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-02-12T16:24:17.161631Z","id":"a2055bef-d48d-44c0-9395-a15a3cafca8d","product_resource_id":"23a1d963-1b47-45ca-8aeb-834d8d97d4f3","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-02-12T16:24:17.161631Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "692" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:24:18 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: - - 5971f68f-0687-4fbc-9b68-51ffd4e66edc - status: 200 OK - code: 200 - duration: 86.219541ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 20 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"action":"poweron"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/23a1d963-1b47-45ca-8aeb-834d8d97d4f3/action - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 357 - uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/23a1d963-1b47-45ca-8aeb-834d8d97d4f3/action","href_result":"/servers/23a1d963-1b47-45ca-8aeb-834d8d97d4f3","id":"4f477f20-fa9a-4c2f-9c45-f6fe3410ed53","progress":0,"started_at":"2025-02-12T16:24:18.533539+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' - headers: - Content-Length: - - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:24:18 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/4f477f20-fa9a-4c2f-9c45-f6fe3410ed53 - 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: - - 8669ebcd-d6b0-434d-9259-09fac4d703e7 - status: 202 Accepted - code: 202 - duration: 350.326125ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/23a1d963-1b47-45ca-8aeb-834d8d97d4f3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1677 - 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-02-12T16:24:16.951639+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-instance","id":"23a1d963-1b47-45ca-8aeb-834d8d97d4f3","image":{"arch":"x86_64","creation_date":"2024-10-07T11:32:23.548676+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a805381b-7ce6-425f-a108-96d9ee019135","modification_date":"2024-10-07T11:32:23.548676+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"a50e6921-21b9-4a69-83cc-191359208d4c","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:93:c8:69","maintenances":[],"modification_date":"2025-02-12T16:24:18.329294+00:00","name":"Scaleway Instance","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":"811d24a7-f24f-48ca-a17a-8f6f1d80acf2","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1677" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:24:18 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: - - 0942654b-875b-40ca-8a53-e19746055474 - status: 200 OK - code: 200 - duration: 308.605042ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/21853ec7-231b-4ed9-a7d4-4694e59a3f14 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1013 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-02-12T16:24:16.671456Z","gateway_networks":[],"id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","ip":{"address":"163.172.162.186","created_at":"2025-02-12T16:24:16.504200Z","gateway_id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","id":"34cc7b82-72c0-4b4b-95a2-2cc0daebf1b8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"186-162-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-02-12T16:24:16.504200Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-02-12T16:24:21.669777Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' - headers: - Content-Length: - - "1013" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:24:21 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: - - 86ac6b32-d76d-4102-8907-dfbf1b85553d - status: 200 OK - code: 200 - duration: 57.628875ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/21853ec7-231b-4ed9-a7d4-4694e59a3f14 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1013 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-02-12T16:24:16.671456Z","gateway_networks":[],"id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","ip":{"address":"163.172.162.186","created_at":"2025-02-12T16:24:16.504200Z","gateway_id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","id":"34cc7b82-72c0-4b4b-95a2-2cc0daebf1b8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"186-162-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-02-12T16:24:16.504200Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-02-12T16:24:21.669777Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' - headers: - Content-Length: - - "1013" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:24:21 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: - - a136ebb5-f761-478d-8c6d-27ce151a0593 - status: 200 OK - code: 200 - duration: 48.262375ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/21853ec7-231b-4ed9-a7d4-4694e59a3f14 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1013 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-02-12T16:24:16.671456Z","gateway_networks":[],"id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","ip":{"address":"163.172.162.186","created_at":"2025-02-12T16:24:16.504200Z","gateway_id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","id":"34cc7b82-72c0-4b4b-95a2-2cc0daebf1b8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"186-162-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-02-12T16:24:16.504200Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-02-12T16:24:21.669777Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' - headers: - Content-Length: - - "1013" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:24:21 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: - - b6e15131-a4d5-4ac6-bb0d-af9fb28cf53c - status: 200 OK - code: 200 - duration: 46.987ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/23a1d963-1b47-45ca-8aeb-834d8d97d4f3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1780 - 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-02-12T16:24:16.951639+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-instance","id":"23a1d963-1b47-45ca-8aeb-834d8d97d4f3","image":{"arch":"x86_64","creation_date":"2024-10-07T11:32:23.548676+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a805381b-7ce6-425f-a108-96d9ee019135","modification_date":"2024-10-07T11:32:23.548676+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"a50e6921-21b9-4a69-83cc-191359208d4c","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"401","node_id":"14","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:c8:69","maintenances":[],"modification_date":"2025-02-12T16:24:18.329294+00:00","name":"Scaleway Instance","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":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"id":"811d24a7-f24f-48ca-a17a-8f6f1d80acf2","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1780" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:24:24 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: - - 21d4997f-21b6-45ad-a065-5b0c4c125f5f - status: 200 OK - code: 200 - duration: 188.489875ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 206 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"gateway_id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","private_network_id":"a100296c-6bde-43ca-bd37-960b05298469","enable_masquerade":true,"enable_dhcp":true,"dhcp_id":"caa611d1-c0ae-4232-8a3e-1d7405c19b12"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 971 - uncompressed: false - body: '{"address":null,"created_at":"2025-02-12T16:24:25.147240Z","dhcp":{"address":"10.0.0.1","created_at":"2025-02-12T16:24:15.738170Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"caa611d1-c0ae-4232-8a3e-1d7405c19b12","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2025-02-12T16:24:15.738170Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","id":"ca847b1f-dc9d-4d88-b58b-af1b39421b87","ipam_config":null,"mac_address":null,"private_network_id":"a100296c-6bde-43ca-bd37-960b05298469","status":"created","updated_at":"2025-02-12T16:24:25.147240Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "971" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:24:25 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: - - 349335cd-1a4d-4e75-9102-daa38ef1f94c - status: 200 OK - code: 200 - duration: 3.466775875s - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/21853ec7-231b-4ed9-a7d4-4694e59a3f14 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1987 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-02-12T16:24:16.671456Z","gateway_networks":[{"address":null,"created_at":"2025-02-12T16:24:25.147240Z","dhcp":{"address":"10.0.0.1","created_at":"2025-02-12T16:24:15.738170Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"caa611d1-c0ae-4232-8a3e-1d7405c19b12","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2025-02-12T16:24:15.738170Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","id":"ca847b1f-dc9d-4d88-b58b-af1b39421b87","ipam_config":null,"mac_address":null,"private_network_id":"a100296c-6bde-43ca-bd37-960b05298469","status":"created","updated_at":"2025-02-12T16:24:25.147240Z","zone":"fr-par-1"}],"id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","ip":{"address":"163.172.162.186","created_at":"2025-02-12T16:24:16.504200Z","gateway_id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","id":"34cc7b82-72c0-4b4b-95a2-2cc0daebf1b8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"186-162-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-02-12T16:24:16.504200Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-02-12T16:24:25.299167Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' - headers: - Content-Length: - - "1987" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:24:25 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: - - 93726423-1882-4602-9b74-266050c898a0 - status: 200 OK - code: 200 - duration: 49.717917ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/23a1d963-1b47-45ca-8aeb-834d8d97d4f3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1811 - 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-02-12T16:24:16.951639+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-instance","id":"23a1d963-1b47-45ca-8aeb-834d8d97d4f3","image":{"arch":"x86_64","creation_date":"2024-10-07T11:32:23.548676+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a805381b-7ce6-425f-a108-96d9ee019135","modification_date":"2024-10-07T11:32:23.548676+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"a50e6921-21b9-4a69-83cc-191359208d4c","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"401","node_id":"14","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:c8:69","maintenances":[],"modification_date":"2025-02-12T16:24:24.801877+00:00","name":"Scaleway Instance","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":"811d24a7-f24f-48ca-a17a-8f6f1d80acf2","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1811" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:24: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: - - 088a8b5d-fcf5-4375-a1df-54a7857e8831 - status: 200 OK - code: 200 - duration: 169.751084ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a100296c-6bde-43ca-bd37-960b05298469 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1042 - uncompressed: false - body: '{"created_at":"2025-02-12T16:24:15.729901Z","dhcp_enabled":true,"id":"a100296c-6bde-43ca-bd37-960b05298469","name":"My Private Network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-02-12T16:24:15.729901Z","id":"bf902737-8d9f-4392-b904-74c271ab3f11","private_network_id":"a100296c-6bde-43ca-bd37-960b05298469","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"10.0.0.0/24","updated_at":"2025-02-12T16:24:22.232802Z","vpc_id":"d096aa1f-515e-4175-8a7b-be9900ad158a"},{"created_at":"2025-02-12T16:24:15.729901Z","id":"dff2513f-839c-4891-a6b6-90cf662a39d0","private_network_id":"a100296c-6bde-43ca-bd37-960b05298469","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:8a43::/64","updated_at":"2025-02-12T16:24:22.236968Z","vpc_id":"d096aa1f-515e-4175-8a7b-be9900ad158a"}],"tags":[],"updated_at":"2025-02-12T16:24:22.230587Z","vpc_id":"d096aa1f-515e-4175-8a7b-be9900ad158a"}' - headers: - Content-Length: - - "1042" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:24:29 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: - - 59facd93-45cf-400c-991c-dbdaacc558e7 - status: 200 OK - code: 200 - duration: 66.072ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/23a1d963-1b47-45ca-8aeb-834d8d97d4f3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1811 - 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-02-12T16:24:16.951639+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-instance","id":"23a1d963-1b47-45ca-8aeb-834d8d97d4f3","image":{"arch":"x86_64","creation_date":"2024-10-07T11:32:23.548676+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a805381b-7ce6-425f-a108-96d9ee019135","modification_date":"2024-10-07T11:32:23.548676+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"a50e6921-21b9-4a69-83cc-191359208d4c","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"401","node_id":"14","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:c8:69","maintenances":[],"modification_date":"2025-02-12T16:24:24.801877+00:00","name":"Scaleway Instance","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":"811d24a7-f24f-48ca-a17a-8f6f1d80acf2","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1811" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:24:29 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: - - 7527ada9-4a7a-4dc8-b46c-3a20dd88cbca - status: 200 OK - code: 200 - duration: 254.899416ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/21853ec7-231b-4ed9-a7d4-4694e59a3f14 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1987 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-02-12T16:24:16.671456Z","gateway_networks":[{"address":null,"created_at":"2025-02-12T16:24:25.147240Z","dhcp":{"address":"10.0.0.1","created_at":"2025-02-12T16:24:15.738170Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"caa611d1-c0ae-4232-8a3e-1d7405c19b12","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2025-02-12T16:24:15.738170Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","id":"ca847b1f-dc9d-4d88-b58b-af1b39421b87","ipam_config":null,"mac_address":null,"private_network_id":"a100296c-6bde-43ca-bd37-960b05298469","status":"created","updated_at":"2025-02-12T16:24:25.147240Z","zone":"fr-par-1"}],"id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","ip":{"address":"163.172.162.186","created_at":"2025-02-12T16:24:16.504200Z","gateway_id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","id":"34cc7b82-72c0-4b4b-95a2-2cc0daebf1b8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"186-162-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-02-12T16:24:16.504200Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-02-12T16:24:25.299167Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' - headers: - Content-Length: - - "1987" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:24:30 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: - - 09b54893-b795-4fe3-b9af-6cc8dc45cf5e - status: 200 OK - code: 200 - duration: 57.682625ms - - id: 27 - 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":"a100296c-6bde-43ca-bd37-960b05298469"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/23a1d963-1b47-45ca-8aeb-834d8d97d4f3/private_nics - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 473 - uncompressed: false - body: '{"private_nic":{"creation_date":"2025-02-12T16:24:29.671381+00:00","id":"0611a4a0-e528-4ebf-8548-d635c01ca08a","ipam_ip_ids":["142df25d-25e2-4f18-8561-3f3f877891d3","96302d29-79b9-413b-a5bd-2d7c269891d9"],"mac_address":"02:00:00:1c:b1:e9","modification_date":"2025-02-12T16:24:29.884031+00:00","private_network_id":"a100296c-6bde-43ca-bd37-960b05298469","server_id":"23a1d963-1b47-45ca-8aeb-834d8d97d4f3","state":"syncing","tags":[],"zone":"fr-par-1"}}' - headers: - Content-Length: - - "473" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:24:30 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: - - d536e2e4-d9d2-446e-a5b8-124c2fee2206 - status: 201 Created - code: 201 - duration: 1.066914334s - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/23a1d963-1b47-45ca-8aeb-834d8d97d4f3/private_nics/0611a4a0-e528-4ebf-8548-d635c01ca08a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 473 - uncompressed: false - body: '{"private_nic":{"creation_date":"2025-02-12T16:24:29.671381+00:00","id":"0611a4a0-e528-4ebf-8548-d635c01ca08a","ipam_ip_ids":["142df25d-25e2-4f18-8561-3f3f877891d3","96302d29-79b9-413b-a5bd-2d7c269891d9"],"mac_address":"02:00:00:1c:b1:e9","modification_date":"2025-02-12T16:24:29.884031+00:00","private_network_id":"a100296c-6bde-43ca-bd37-960b05298469","server_id":"23a1d963-1b47-45ca-8aeb-834d8d97d4f3","state":"syncing","tags":[],"zone":"fr-par-1"}}' - headers: - Content-Length: - - "473" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:24:30 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: - - db6a92d6-9802-44b5-9a24-fff2ba4511c2 - status: 200 OK - code: 200 - duration: 102.546708ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/21853ec7-231b-4ed9-a7d4-4694e59a3f14 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1996 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-02-12T16:24:16.671456Z","gateway_networks":[{"address":null,"created_at":"2025-02-12T16:24:25.147240Z","dhcp":{"address":"10.0.0.1","created_at":"2025-02-12T16:24:15.738170Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"caa611d1-c0ae-4232-8a3e-1d7405c19b12","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2025-02-12T16:24:15.738170Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","id":"ca847b1f-dc9d-4d88-b58b-af1b39421b87","ipam_config":null,"mac_address":"02:00:00:1F:BF:5A","private_network_id":"a100296c-6bde-43ca-bd37-960b05298469","status":"ready","updated_at":"2025-02-12T16:24:35.344045Z","zone":"fr-par-1"}],"id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","ip":{"address":"163.172.162.186","created_at":"2025-02-12T16:24:16.504200Z","gateway_id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","id":"34cc7b82-72c0-4b4b-95a2-2cc0daebf1b8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"186-162-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-02-12T16:24:16.504200Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-02-12T16:24:35.474636Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' - headers: - Content-Length: - - "1996" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:24:35 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: - - 17d56b30-5193-45e1-a050-bdf8c44e15c3 - status: 200 OK - code: 200 - duration: 49.921083ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/ca847b1f-dc9d-4d88-b58b-af1b39421b87 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 984 - uncompressed: false - body: '{"address":null,"created_at":"2025-02-12T16:24:25.147240Z","dhcp":{"address":"10.0.0.1","created_at":"2025-02-12T16:24:15.738170Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"caa611d1-c0ae-4232-8a3e-1d7405c19b12","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2025-02-12T16:24:15.738170Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","id":"ca847b1f-dc9d-4d88-b58b-af1b39421b87","ipam_config":null,"mac_address":"02:00:00:1F:BF:5A","private_network_id":"a100296c-6bde-43ca-bd37-960b05298469","status":"ready","updated_at":"2025-02-12T16:24:35.344045Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "984" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:24:35 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: - - 18cdf0dc-fbc4-4e96-bd00-d4fcb16966d0 - status: 200 OK - code: 200 - duration: 70.990208ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/ca847b1f-dc9d-4d88-b58b-af1b39421b87 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 984 - uncompressed: false - body: '{"address":null,"created_at":"2025-02-12T16:24:25.147240Z","dhcp":{"address":"10.0.0.1","created_at":"2025-02-12T16:24:15.738170Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"caa611d1-c0ae-4232-8a3e-1d7405c19b12","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2025-02-12T16:24:15.738170Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","id":"ca847b1f-dc9d-4d88-b58b-af1b39421b87","ipam_config":null,"mac_address":"02:00:00:1F:BF:5A","private_network_id":"a100296c-6bde-43ca-bd37-960b05298469","status":"ready","updated_at":"2025-02-12T16:24:35.344045Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "984" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:24:35 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: - - cf4ad500-acf4-413b-91a0-db45efddede8 - status: 200 OK - code: 200 - duration: 64.888625ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/21853ec7-231b-4ed9-a7d4-4694e59a3f14 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1996 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-02-12T16:24:16.671456Z","gateway_networks":[{"address":null,"created_at":"2025-02-12T16:24:25.147240Z","dhcp":{"address":"10.0.0.1","created_at":"2025-02-12T16:24:15.738170Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"caa611d1-c0ae-4232-8a3e-1d7405c19b12","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2025-02-12T16:24:15.738170Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","id":"ca847b1f-dc9d-4d88-b58b-af1b39421b87","ipam_config":null,"mac_address":"02:00:00:1F:BF:5A","private_network_id":"a100296c-6bde-43ca-bd37-960b05298469","status":"ready","updated_at":"2025-02-12T16:24:35.344045Z","zone":"fr-par-1"}],"id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","ip":{"address":"163.172.162.186","created_at":"2025-02-12T16:24:16.504200Z","gateway_id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","id":"34cc7b82-72c0-4b4b-95a2-2cc0daebf1b8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"186-162-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-02-12T16:24:16.504200Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-02-12T16:24:35.474636Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' - headers: - Content-Length: - - "1996" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:24:35 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: - - 5c06a87a-2791-48b3-9e41-c8c927bb2821 - status: 200 OK - code: 200 - duration: 47.836958ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/ca847b1f-dc9d-4d88-b58b-af1b39421b87 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 984 - uncompressed: false - body: '{"address":null,"created_at":"2025-02-12T16:24:25.147240Z","dhcp":{"address":"10.0.0.1","created_at":"2025-02-12T16:24:15.738170Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"caa611d1-c0ae-4232-8a3e-1d7405c19b12","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2025-02-12T16:24:15.738170Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","id":"ca847b1f-dc9d-4d88-b58b-af1b39421b87","ipam_config":null,"mac_address":"02:00:00:1F:BF:5A","private_network_id":"a100296c-6bde-43ca-bd37-960b05298469","status":"ready","updated_at":"2025-02-12T16:24:35.344045Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "984" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:24:35 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: - - e1204e43-9e44-4306-9f8a-d117e4799d9b - status: 200 OK - code: 200 - duration: 70.788917ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/23a1d963-1b47-45ca-8aeb-834d8d97d4f3/private_nics/0611a4a0-e528-4ebf-8548-d635c01ca08a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 473 - uncompressed: false - body: '{"private_nic":{"creation_date":"2025-02-12T16:24:29.671381+00:00","id":"0611a4a0-e528-4ebf-8548-d635c01ca08a","ipam_ip_ids":["142df25d-25e2-4f18-8561-3f3f877891d3","96302d29-79b9-413b-a5bd-2d7c269891d9"],"mac_address":"02:00:00:1c:b1:e9","modification_date":"2025-02-12T16:24:29.884031+00:00","private_network_id":"a100296c-6bde-43ca-bd37-960b05298469","server_id":"23a1d963-1b47-45ca-8aeb-834d8d97d4f3","state":"syncing","tags":[],"zone":"fr-par-1"}}' - headers: - Content-Length: - - "473" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:24:35 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: - - b03c959f-bf22-40a7-a9c5-1c3861cbc0f4 - status: 200 OK - code: 200 - duration: 98.681875ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/23a1d963-1b47-45ca-8aeb-834d8d97d4f3/private_nics/0611a4a0-e528-4ebf-8548-d635c01ca08a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 473 - uncompressed: false - body: '{"private_nic":{"creation_date":"2025-02-12T16:24:29.671381+00:00","id":"0611a4a0-e528-4ebf-8548-d635c01ca08a","ipam_ip_ids":["142df25d-25e2-4f18-8561-3f3f877891d3","96302d29-79b9-413b-a5bd-2d7c269891d9"],"mac_address":"02:00:00:1c:b1:e9","modification_date":"2025-02-12T16:24:29.884031+00:00","private_network_id":"a100296c-6bde-43ca-bd37-960b05298469","server_id":"23a1d963-1b47-45ca-8aeb-834d8d97d4f3","state":"syncing","tags":[],"zone":"fr-par-1"}}' - headers: - Content-Length: - - "473" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:24:40 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: - - f4044de1-7480-4d35-9f1b-d36d00f56d04 - status: 200 OK - code: 200 - duration: 123.5405ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/23a1d963-1b47-45ca-8aeb-834d8d97d4f3/private_nics/0611a4a0-e528-4ebf-8548-d635c01ca08a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 473 - uncompressed: false - body: '{"private_nic":{"creation_date":"2025-02-12T16:24:29.671381+00:00","id":"0611a4a0-e528-4ebf-8548-d635c01ca08a","ipam_ip_ids":["142df25d-25e2-4f18-8561-3f3f877891d3","96302d29-79b9-413b-a5bd-2d7c269891d9"],"mac_address":"02:00:00:1c:b1:e9","modification_date":"2025-02-12T16:24:29.884031+00:00","private_network_id":"a100296c-6bde-43ca-bd37-960b05298469","server_id":"23a1d963-1b47-45ca-8aeb-834d8d97d4f3","state":"syncing","tags":[],"zone":"fr-par-1"}}' - headers: - Content-Length: - - "473" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:24:46 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: - - 8290095c-1f2d-4010-b98d-ca6174500195 - status: 200 OK - code: 200 - duration: 116.273792ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/23a1d963-1b47-45ca-8aeb-834d8d97d4f3/private_nics/0611a4a0-e528-4ebf-8548-d635c01ca08a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 473 - uncompressed: false - body: '{"private_nic":{"creation_date":"2025-02-12T16:24:29.671381+00:00","id":"0611a4a0-e528-4ebf-8548-d635c01ca08a","ipam_ip_ids":["142df25d-25e2-4f18-8561-3f3f877891d3","96302d29-79b9-413b-a5bd-2d7c269891d9"],"mac_address":"02:00:00:1c:b1:e9","modification_date":"2025-02-12T16:24:29.884031+00:00","private_network_id":"a100296c-6bde-43ca-bd37-960b05298469","server_id":"23a1d963-1b47-45ca-8aeb-834d8d97d4f3","state":"syncing","tags":[],"zone":"fr-par-1"}}' - headers: - Content-Length: - - "473" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:24:51 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: - - bc89872b-d985-4426-9626-807d368be2b9 - status: 200 OK - code: 200 - duration: 114.940458ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/23a1d963-1b47-45ca-8aeb-834d8d97d4f3/private_nics/0611a4a0-e528-4ebf-8548-d635c01ca08a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 473 - uncompressed: false - body: '{"private_nic":{"creation_date":"2025-02-12T16:24:29.671381+00:00","id":"0611a4a0-e528-4ebf-8548-d635c01ca08a","ipam_ip_ids":["142df25d-25e2-4f18-8561-3f3f877891d3","96302d29-79b9-413b-a5bd-2d7c269891d9"],"mac_address":"02:00:00:1c:b1:e9","modification_date":"2025-02-12T16:24:29.884031+00:00","private_network_id":"a100296c-6bde-43ca-bd37-960b05298469","server_id":"23a1d963-1b47-45ca-8aeb-834d8d97d4f3","state":"syncing","tags":[],"zone":"fr-par-1"}}' - headers: - Content-Length: - - "473" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:24:56 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: - - f2fa8f4b-b813-4193-b0f4-007380fefd80 - status: 200 OK - code: 200 - duration: 105.25575ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/23a1d963-1b47-45ca-8aeb-834d8d97d4f3/private_nics/0611a4a0-e528-4ebf-8548-d635c01ca08a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 473 - uncompressed: false - body: '{"private_nic":{"creation_date":"2025-02-12T16:24:29.671381+00:00","id":"0611a4a0-e528-4ebf-8548-d635c01ca08a","ipam_ip_ids":["142df25d-25e2-4f18-8561-3f3f877891d3","96302d29-79b9-413b-a5bd-2d7c269891d9"],"mac_address":"02:00:00:1c:b1:e9","modification_date":"2025-02-12T16:24:29.884031+00:00","private_network_id":"a100296c-6bde-43ca-bd37-960b05298469","server_id":"23a1d963-1b47-45ca-8aeb-834d8d97d4f3","state":"syncing","tags":[],"zone":"fr-par-1"}}' - headers: - Content-Length: - - "473" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:25:01 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: - - 0202b6e9-e34a-43af-95e9-4bf00eb38239 - status: 200 OK - code: 200 - duration: 110.362166ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/23a1d963-1b47-45ca-8aeb-834d8d97d4f3/private_nics/0611a4a0-e528-4ebf-8548-d635c01ca08a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - body: '{"private_nic":{"creation_date":"2025-02-12T16:24:29.671381+00:00","id":"0611a4a0-e528-4ebf-8548-d635c01ca08a","ipam_ip_ids":["142df25d-25e2-4f18-8561-3f3f877891d3","96302d29-79b9-413b-a5bd-2d7c269891d9"],"mac_address":"02:00:00:1c:b1:e9","modification_date":"2025-02-12T16:25:01.593495+00:00","private_network_id":"a100296c-6bde-43ca-bd37-960b05298469","server_id":"23a1d963-1b47-45ca-8aeb-834d8d97d4f3","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: - - Wed, 12 Feb 2025 16:25:06 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: - - 986dbf0b-4456-4ee2-b141-009ce40a78e1 - status: 200 OK - code: 200 - duration: 111.537875ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/23a1d963-1b47-45ca-8aeb-834d8d97d4f3/private_nics/0611a4a0-e528-4ebf-8548-d635c01ca08a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - body: '{"private_nic":{"creation_date":"2025-02-12T16:24:29.671381+00:00","id":"0611a4a0-e528-4ebf-8548-d635c01ca08a","ipam_ip_ids":["142df25d-25e2-4f18-8561-3f3f877891d3","96302d29-79b9-413b-a5bd-2d7c269891d9"],"mac_address":"02:00:00:1c:b1:e9","modification_date":"2025-02-12T16:25:01.593495+00:00","private_network_id":"a100296c-6bde-43ca-bd37-960b05298469","server_id":"23a1d963-1b47-45ca-8aeb-834d8d97d4f3","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: - - Wed, 12 Feb 2025 16:25:06 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: - - 63a5a5ee-db6a-4eef-b5f5-5a043e6489f2 - status: 200 OK - code: 200 - duration: 111.891ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/23a1d963-1b47-45ca-8aeb-834d8d97d4f3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2269 - 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-02-12T16:24:16.951639+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-instance","id":"23a1d963-1b47-45ca-8aeb-834d8d97d4f3","image":{"arch":"x86_64","creation_date":"2024-10-07T11:32:23.548676+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a805381b-7ce6-425f-a108-96d9ee019135","modification_date":"2024-10-07T11:32:23.548676+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"a50e6921-21b9-4a69-83cc-191359208d4c","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"401","node_id":"14","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:c8:69","maintenances":[],"modification_date":"2025-02-12T16:24:24.801877+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-02-12T16:24:29.671381+00:00","id":"0611a4a0-e528-4ebf-8548-d635c01ca08a","ipam_ip_ids":["142df25d-25e2-4f18-8561-3f3f877891d3","96302d29-79b9-413b-a5bd-2d7c269891d9"],"mac_address":"02:00:00:1c:b1:e9","modification_date":"2025-02-12T16:25:01.593495+00:00","private_network_id":"a100296c-6bde-43ca-bd37-960b05298469","server_id":"23a1d963-1b47-45ca-8aeb-834d8d97d4f3","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":"811d24a7-f24f-48ca-a17a-8f6f1d80acf2","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2269" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:25:06 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: - - 7b342b47-7f6e-4c0b-8f9f-ec54a365c1a0 - status: 200 OK - code: 200 - duration: 224.436916ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/811d24a7-f24f-48ca-a17a-8f6f1d80acf2 - 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":"811d24a7-f24f-48ca-a17a-8f6f1d80acf2","type":"not_found"}' - headers: - Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:25:06 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: - - a03cee26-0777-4576-b469-c894de7873e0 - status: 404 Not Found - code: 404 - duration: 54.395625ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/811d24a7-f24f-48ca-a17a-8f6f1d80acf2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 692 - uncompressed: false - body: '{"created_at":"2025-02-12T16:24:17.161631Z","id":"811d24a7-f24f-48ca-a17a-8f6f1d80acf2","last_detached_at":null,"name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"a50e6921-21b9-4a69-83cc-191359208d4c","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-02-12T16:24:17.161631Z","id":"a2055bef-d48d-44c0-9395-a15a3cafca8d","product_resource_id":"23a1d963-1b47-45ca-8aeb-834d8d97d4f3","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-02-12T16:24:17.161631Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "692" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:25:07 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: - - 96ef0738-cf6c-4239-bf7d-f6d91cc7a94a - status: 200 OK - code: 200 - duration: 82.677708ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/23a1d963-1b47-45ca-8aeb-834d8d97d4f3/user_data - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 17 - uncompressed: false - body: '{"user_data":[]}' - headers: - Content-Length: - - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:25:07 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: - - 0be8efd2-1d5c-4baf-8ddf-646d6cb87925 - status: 200 OK - code: 200 - duration: 98.489417ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/23a1d963-1b47-45ca-8aeb-834d8d97d4f3/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 478 - uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-02-12T16:24:29.671381+00:00","id":"0611a4a0-e528-4ebf-8548-d635c01ca08a","ipam_ip_ids":["142df25d-25e2-4f18-8561-3f3f877891d3","96302d29-79b9-413b-a5bd-2d7c269891d9"],"mac_address":"02:00:00:1c:b1:e9","modification_date":"2025-02-12T16:25:01.593495+00:00","private_network_id":"a100296c-6bde-43ca-bd37-960b05298469","server_id":"23a1d963-1b47-45ca-8aeb-834d8d97d4f3","state":"available","tags":[],"zone":"fr-par-1"}]}' - headers: - Content-Length: - - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:25:07 GMT - Link: - - ; rel="last" - 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: - - 10f3c7fc-6ea2-4ac3-a742-3581584e2fab - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 114.474375ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/ca847b1f-dc9d-4d88-b58b-af1b39421b87 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 984 - uncompressed: false - body: '{"address":null,"created_at":"2025-02-12T16:24:25.147240Z","dhcp":{"address":"10.0.0.1","created_at":"2025-02-12T16:24:15.738170Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"caa611d1-c0ae-4232-8a3e-1d7405c19b12","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2025-02-12T16:24:15.738170Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","id":"ca847b1f-dc9d-4d88-b58b-af1b39421b87","ipam_config":null,"mac_address":"02:00:00:1F:BF:5A","private_network_id":"a100296c-6bde-43ca-bd37-960b05298469","status":"ready","updated_at":"2025-02-12T16:24:35.344045Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "984" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:25:07 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: - - f213b071-0e9e-4140-aeb4-bad881677403 - status: 200 OK - code: 200 - duration: 77.077208ms - - id: 48 - 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: '{"gateway_network_id":"ca847b1f-dc9d-4d88-b58b-af1b39421b87","mac_address":"02:00:00:1c:b1:e9","ip_address":"10.0.0.3"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 327 - uncompressed: false - body: '{"created_at":"2025-02-12T16:24:30.117014Z","gateway_network_id":"ca847b1f-dc9d-4d88-b58b-af1b39421b87","hostname":"Scaleway Instance","id":"142df25d-25e2-4f18-8561-3f3f877891d3","ip_address":"10.0.0.3","mac_address":"02:00:00:1c:b1:e9","type":"reservation","updated_at":"2025-02-12T16:25:08.157021Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "327" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:25:08 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: - - ee7ae047-5b58-4691-a739-e9963b01f5df - status: 200 OK - code: 200 - duration: 803.782458ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/ca847b1f-dc9d-4d88-b58b-af1b39421b87 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 984 - uncompressed: false - body: '{"address":null,"created_at":"2025-02-12T16:24:25.147240Z","dhcp":{"address":"10.0.0.1","created_at":"2025-02-12T16:24:15.738170Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"caa611d1-c0ae-4232-8a3e-1d7405c19b12","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2025-02-12T16:24:15.738170Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","id":"ca847b1f-dc9d-4d88-b58b-af1b39421b87","ipam_config":null,"mac_address":"02:00:00:1F:BF:5A","private_network_id":"a100296c-6bde-43ca-bd37-960b05298469","status":"ready","updated_at":"2025-02-12T16:24:35.344045Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "984" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:25:08 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: - - 7f11801d-1666-416d-89f3-a0f7cbd3d2be - status: 200 OK - code: 200 - duration: 60.17775ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries/142df25d-25e2-4f18-8561-3f3f877891d3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 327 - uncompressed: false - body: '{"created_at":"2025-02-12T16:24:30.117014Z","gateway_network_id":"ca847b1f-dc9d-4d88-b58b-af1b39421b87","hostname":"Scaleway Instance","id":"142df25d-25e2-4f18-8561-3f3f877891d3","ip_address":"10.0.0.3","mac_address":"02:00:00:1c:b1:e9","type":"reservation","updated_at":"2025-02-12T16:25:08.157021Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "327" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:25:08 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: - - 8b61ef79-c571-45a4-9a71-6c17e4c4d1d7 - status: 200 OK - code: 200 - duration: 97.077917ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/21853ec7-231b-4ed9-a7d4-4694e59a3f14 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1996 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-02-12T16:24:16.671456Z","gateway_networks":[{"address":null,"created_at":"2025-02-12T16:24:25.147240Z","dhcp":{"address":"10.0.0.1","created_at":"2025-02-12T16:24:15.738170Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"caa611d1-c0ae-4232-8a3e-1d7405c19b12","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2025-02-12T16:24:15.738170Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","id":"ca847b1f-dc9d-4d88-b58b-af1b39421b87","ipam_config":null,"mac_address":"02:00:00:1F:BF:5A","private_network_id":"a100296c-6bde-43ca-bd37-960b05298469","status":"ready","updated_at":"2025-02-12T16:24:35.344045Z","zone":"fr-par-1"}],"id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","ip":{"address":"163.172.162.186","created_at":"2025-02-12T16:24:16.504200Z","gateway_id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","id":"34cc7b82-72c0-4b4b-95a2-2cc0daebf1b8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"186-162-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-02-12T16:24:16.504200Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-02-12T16:24:35.474636Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' - headers: - Content-Length: - - "1996" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:25:08 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: - - 645b4b96-a089-46a7-b4eb-b2203abe9dfe - status: 200 OK - code: 200 - duration: 49.006125ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/21853ec7-231b-4ed9-a7d4-4694e59a3f14 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1996 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-02-12T16:24:16.671456Z","gateway_networks":[{"address":null,"created_at":"2025-02-12T16:24:25.147240Z","dhcp":{"address":"10.0.0.1","created_at":"2025-02-12T16:24:15.738170Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"caa611d1-c0ae-4232-8a3e-1d7405c19b12","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2025-02-12T16:24:15.738170Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","id":"ca847b1f-dc9d-4d88-b58b-af1b39421b87","ipam_config":null,"mac_address":"02:00:00:1F:BF:5A","private_network_id":"a100296c-6bde-43ca-bd37-960b05298469","status":"ready","updated_at":"2025-02-12T16:24:35.344045Z","zone":"fr-par-1"}],"id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","ip":{"address":"163.172.162.186","created_at":"2025-02-12T16:24:16.504200Z","gateway_id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","id":"34cc7b82-72c0-4b4b-95a2-2cc0daebf1b8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"186-162-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-02-12T16:24:16.504200Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-02-12T16:24:35.474636Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' - headers: - Content-Length: - - "1996" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:25:08 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: - - 5c2c6f8c-84cf-4366-a620-97acf7ba9622 - status: 200 OK - code: 200 - duration: 48.978125ms - - id: 53 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 131 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"gateway_id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","public_port":2023,"private_ip":"10.0.0.3","private_port":22,"protocol":"tcp"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/pat-rules - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 287 - uncompressed: false - body: '{"created_at":"2025-02-12T16:25:08.511785Z","gateway_id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","id":"6a14aeef-2a7a-4b2c-bd05-7a490c0faec6","private_ip":"10.0.0.3","private_port":22,"protocol":"tcp","public_port":2023,"updated_at":"2025-02-12T16:25:08.511785Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "287" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:25:08 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: - - 698c3c3f-5097-4e6c-a969-d6365177fef4 - status: 200 OK - code: 200 - duration: 107.75775ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/21853ec7-231b-4ed9-a7d4-4694e59a3f14 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1996 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-02-12T16:24:16.671456Z","gateway_networks":[{"address":null,"created_at":"2025-02-12T16:24:25.147240Z","dhcp":{"address":"10.0.0.1","created_at":"2025-02-12T16:24:15.738170Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"caa611d1-c0ae-4232-8a3e-1d7405c19b12","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2025-02-12T16:24:15.738170Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","id":"ca847b1f-dc9d-4d88-b58b-af1b39421b87","ipam_config":null,"mac_address":"02:00:00:1F:BF:5A","private_network_id":"a100296c-6bde-43ca-bd37-960b05298469","status":"ready","updated_at":"2025-02-12T16:24:35.344045Z","zone":"fr-par-1"}],"id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","ip":{"address":"163.172.162.186","created_at":"2025-02-12T16:24:16.504200Z","gateway_id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","id":"34cc7b82-72c0-4b4b-95a2-2cc0daebf1b8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"186-162-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-02-12T16:24:16.504200Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-02-12T16:24:35.474636Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' - headers: - Content-Length: - - "1996" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:25:08 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: - - f57b32bc-fb23-44dd-9dd4-94b15fc281d8 - status: 200 OK - code: 200 - duration: 49.937042ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/pat-rules/6a14aeef-2a7a-4b2c-bd05-7a490c0faec6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 287 - uncompressed: false - body: '{"created_at":"2025-02-12T16:25:08.511785Z","gateway_id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","id":"6a14aeef-2a7a-4b2c-bd05-7a490c0faec6","private_ip":"10.0.0.3","private_port":22,"protocol":"tcp","public_port":2023,"updated_at":"2025-02-12T16:25:08.511785Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "287" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:25:08 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: - - 66128a59-b089-4ba7-87ca-e880ea9708a4 - status: 200 OK - code: 200 - duration: 41.116667ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/caa611d1-c0ae-4232-8a3e-1d7405c19b12 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 574 - uncompressed: false - body: '{"address":"10.0.0.1","created_at":"2025-02-12T16:24:15.738170Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"caa611d1-c0ae-4232-8a3e-1d7405c19b12","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2025-02-12T16:24:15.738170Z","valid_lifetime":"3600s","zone":"fr-par-1"}' - headers: - Content-Length: - - "574" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:25:08 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: - - ee98d4b6-aeeb-4f96-bad6-a0030f8869aa - status: 200 OK - code: 200 - duration: 40.7585ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/pat-rules/6a14aeef-2a7a-4b2c-bd05-7a490c0faec6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 287 - uncompressed: false - body: '{"created_at":"2025-02-12T16:25:08.511785Z","gateway_id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","id":"6a14aeef-2a7a-4b2c-bd05-7a490c0faec6","private_ip":"10.0.0.3","private_port":22,"protocol":"tcp","public_port":2023,"updated_at":"2025-02-12T16:25:08.511785Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "287" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:25:08 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: - - 03e6cc9d-fc88-45ec-811e-599feb76987b - status: 200 OK - code: 200 - duration: 63.179125ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips/34cc7b82-72c0-4b4b-95a2-2cc0daebf1b8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 405 - uncompressed: false - body: '{"address":"163.172.162.186","created_at":"2025-02-12T16:24:16.504200Z","gateway_id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","id":"34cc7b82-72c0-4b4b-95a2-2cc0daebf1b8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"186-162-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-02-12T16:24:16.504200Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "405" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:25:09 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: - - 6316bfaf-f403-4ce4-86db-78a48999b6d2 - status: 200 OK - code: 200 - duration: 43.005125ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/caa611d1-c0ae-4232-8a3e-1d7405c19b12 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 574 - uncompressed: false - body: '{"address":"10.0.0.1","created_at":"2025-02-12T16:24:15.738170Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"caa611d1-c0ae-4232-8a3e-1d7405c19b12","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2025-02-12T16:24:15.738170Z","valid_lifetime":"3600s","zone":"fr-par-1"}' - headers: - Content-Length: - - "574" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:25:09 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: - - f0b86cb1-060d-4e74-9e8c-8f1e333e6fe5 - status: 200 OK - code: 200 - duration: 42.725959ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a100296c-6bde-43ca-bd37-960b05298469 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1042 - uncompressed: false - body: '{"created_at":"2025-02-12T16:24:15.729901Z","dhcp_enabled":true,"id":"a100296c-6bde-43ca-bd37-960b05298469","name":"My Private Network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-02-12T16:24:15.729901Z","id":"bf902737-8d9f-4392-b904-74c271ab3f11","private_network_id":"a100296c-6bde-43ca-bd37-960b05298469","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"10.0.0.0/24","updated_at":"2025-02-12T16:24:22.232802Z","vpc_id":"d096aa1f-515e-4175-8a7b-be9900ad158a"},{"created_at":"2025-02-12T16:24:15.729901Z","id":"dff2513f-839c-4891-a6b6-90cf662a39d0","private_network_id":"a100296c-6bde-43ca-bd37-960b05298469","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:8a43::/64","updated_at":"2025-02-12T16:24:22.236968Z","vpc_id":"d096aa1f-515e-4175-8a7b-be9900ad158a"}],"tags":[],"updated_at":"2025-02-12T16:24:31.599629Z","vpc_id":"d096aa1f-515e-4175-8a7b-be9900ad158a"}' - headers: - Content-Length: - - "1042" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:25:09 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: - - cc585b18-0917-46cf-acf5-4ee0c4da9786 - status: 200 OK - code: 200 - duration: 47.325417ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/21853ec7-231b-4ed9-a7d4-4694e59a3f14 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1996 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-02-12T16:24:16.671456Z","gateway_networks":[{"address":null,"created_at":"2025-02-12T16:24:25.147240Z","dhcp":{"address":"10.0.0.1","created_at":"2025-02-12T16:24:15.738170Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"caa611d1-c0ae-4232-8a3e-1d7405c19b12","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2025-02-12T16:24:15.738170Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","id":"ca847b1f-dc9d-4d88-b58b-af1b39421b87","ipam_config":null,"mac_address":"02:00:00:1F:BF:5A","private_network_id":"a100296c-6bde-43ca-bd37-960b05298469","status":"ready","updated_at":"2025-02-12T16:24:35.344045Z","zone":"fr-par-1"}],"id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","ip":{"address":"163.172.162.186","created_at":"2025-02-12T16:24:16.504200Z","gateway_id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","id":"34cc7b82-72c0-4b4b-95a2-2cc0daebf1b8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"186-162-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-02-12T16:24:16.504200Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-02-12T16:24:35.474636Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' - headers: - Content-Length: - - "1996" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:25:09 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: - - 5755a5ab-f7bb-432b-a628-275ff836ad2d - status: 200 OK - code: 200 - duration: 47.064917ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/ca847b1f-dc9d-4d88-b58b-af1b39421b87 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 984 - uncompressed: false - body: '{"address":null,"created_at":"2025-02-12T16:24:25.147240Z","dhcp":{"address":"10.0.0.1","created_at":"2025-02-12T16:24:15.738170Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"caa611d1-c0ae-4232-8a3e-1d7405c19b12","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2025-02-12T16:24:15.738170Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","id":"ca847b1f-dc9d-4d88-b58b-af1b39421b87","ipam_config":null,"mac_address":"02:00:00:1F:BF:5A","private_network_id":"a100296c-6bde-43ca-bd37-960b05298469","status":"ready","updated_at":"2025-02-12T16:24:35.344045Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "984" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:25:09 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: - - 2cbbf860-8d4c-4ff0-8b5f-2efa73cd989f - status: 200 OK - code: 200 - duration: 61.259042ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/21853ec7-231b-4ed9-a7d4-4694e59a3f14 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1996 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-02-12T16:24:16.671456Z","gateway_networks":[{"address":null,"created_at":"2025-02-12T16:24:25.147240Z","dhcp":{"address":"10.0.0.1","created_at":"2025-02-12T16:24:15.738170Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"caa611d1-c0ae-4232-8a3e-1d7405c19b12","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2025-02-12T16:24:15.738170Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","id":"ca847b1f-dc9d-4d88-b58b-af1b39421b87","ipam_config":null,"mac_address":"02:00:00:1F:BF:5A","private_network_id":"a100296c-6bde-43ca-bd37-960b05298469","status":"ready","updated_at":"2025-02-12T16:24:35.344045Z","zone":"fr-par-1"}],"id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","ip":{"address":"163.172.162.186","created_at":"2025-02-12T16:24:16.504200Z","gateway_id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","id":"34cc7b82-72c0-4b4b-95a2-2cc0daebf1b8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"186-162-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-02-12T16:24:16.504200Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-02-12T16:24:35.474636Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' - headers: - Content-Length: - - "1996" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:25:09 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: - - f384ed28-b1b6-465f-809a-e6c8a248a1f4 - status: 200 OK - code: 200 - duration: 45.280792ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/23a1d963-1b47-45ca-8aeb-834d8d97d4f3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2269 - 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-02-12T16:24:16.951639+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-instance","id":"23a1d963-1b47-45ca-8aeb-834d8d97d4f3","image":{"arch":"x86_64","creation_date":"2024-10-07T11:32:23.548676+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a805381b-7ce6-425f-a108-96d9ee019135","modification_date":"2024-10-07T11:32:23.548676+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"a50e6921-21b9-4a69-83cc-191359208d4c","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"401","node_id":"14","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:c8:69","maintenances":[],"modification_date":"2025-02-12T16:24:24.801877+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-02-12T16:24:29.671381+00:00","id":"0611a4a0-e528-4ebf-8548-d635c01ca08a","ipam_ip_ids":["142df25d-25e2-4f18-8561-3f3f877891d3","96302d29-79b9-413b-a5bd-2d7c269891d9"],"mac_address":"02:00:00:1c:b1:e9","modification_date":"2025-02-12T16:25:01.593495+00:00","private_network_id":"a100296c-6bde-43ca-bd37-960b05298469","server_id":"23a1d963-1b47-45ca-8aeb-834d8d97d4f3","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":"811d24a7-f24f-48ca-a17a-8f6f1d80acf2","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2269" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:25:09 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: - - 64a65bbb-232c-4d2e-8b9d-5afc83e8c83e - status: 200 OK - code: 200 - duration: 186.078334ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/ca847b1f-dc9d-4d88-b58b-af1b39421b87 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 984 - uncompressed: false - body: '{"address":null,"created_at":"2025-02-12T16:24:25.147240Z","dhcp":{"address":"10.0.0.1","created_at":"2025-02-12T16:24:15.738170Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"caa611d1-c0ae-4232-8a3e-1d7405c19b12","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2025-02-12T16:24:15.738170Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","id":"ca847b1f-dc9d-4d88-b58b-af1b39421b87","ipam_config":null,"mac_address":"02:00:00:1F:BF:5A","private_network_id":"a100296c-6bde-43ca-bd37-960b05298469","status":"ready","updated_at":"2025-02-12T16:24:35.344045Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "984" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:25:09 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: - - b9b3638e-ab2a-4a7c-8b6d-8d8397fba783 - status: 200 OK - code: 200 - duration: 61.959625ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/811d24a7-f24f-48ca-a17a-8f6f1d80acf2 - 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":"811d24a7-f24f-48ca-a17a-8f6f1d80acf2","type":"not_found"}' - headers: - Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:25:08 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: - - f4683f25-aecc-49c2-813e-58841a890b61 - status: 404 Not Found - code: 404 - duration: 58.280375ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/811d24a7-f24f-48ca-a17a-8f6f1d80acf2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 692 - uncompressed: false - body: '{"created_at":"2025-02-12T16:24:17.161631Z","id":"811d24a7-f24f-48ca-a17a-8f6f1d80acf2","last_detached_at":null,"name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"a50e6921-21b9-4a69-83cc-191359208d4c","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-02-12T16:24:17.161631Z","id":"a2055bef-d48d-44c0-9395-a15a3cafca8d","product_resource_id":"23a1d963-1b47-45ca-8aeb-834d8d97d4f3","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-02-12T16:24:17.161631Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "692" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:25:09 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: - - 3ce26b6b-94fd-4bf2-bc00-45bb858aae9d - status: 200 OK - code: 200 - duration: 100.987208ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/23a1d963-1b47-45ca-8aeb-834d8d97d4f3/user_data - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 17 - uncompressed: false - body: '{"user_data":[]}' - headers: - Content-Length: - - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:25:09 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: - - a270625d-2d8f-4c94-839c-59b089e3cfe0 - status: 200 OK - code: 200 - duration: 125.368ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/23a1d963-1b47-45ca-8aeb-834d8d97d4f3/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 478 - uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-02-12T16:24:29.671381+00:00","id":"0611a4a0-e528-4ebf-8548-d635c01ca08a","ipam_ip_ids":["142df25d-25e2-4f18-8561-3f3f877891d3","96302d29-79b9-413b-a5bd-2d7c269891d9"],"mac_address":"02:00:00:1c:b1:e9","modification_date":"2025-02-12T16:25:01.593495+00:00","private_network_id":"a100296c-6bde-43ca-bd37-960b05298469","server_id":"23a1d963-1b47-45ca-8aeb-834d8d97d4f3","state":"available","tags":[],"zone":"fr-par-1"}]}' - headers: - Content-Length: - - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:25:09 GMT - Link: - - ; rel="last" - 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: - - b66d4ebf-3fd1-47d4-bdc8-e907ca97adf2 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 133.440708ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries/142df25d-25e2-4f18-8561-3f3f877891d3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 327 - uncompressed: false - body: '{"created_at":"2025-02-12T16:24:30.117014Z","gateway_network_id":"ca847b1f-dc9d-4d88-b58b-af1b39421b87","hostname":"Scaleway Instance","id":"142df25d-25e2-4f18-8561-3f3f877891d3","ip_address":"10.0.0.3","mac_address":"02:00:00:1c:b1:e9","type":"reservation","updated_at":"2025-02-12T16:25:08.157021Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "327" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:25:09 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: - - fd987990-7ed8-4c52-accc-2585feeb0e51 - status: 200 OK - code: 200 - duration: 78.485833ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/pat-rules/6a14aeef-2a7a-4b2c-bd05-7a490c0faec6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 287 - uncompressed: false - body: '{"created_at":"2025-02-12T16:25:08.511785Z","gateway_id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","id":"6a14aeef-2a7a-4b2c-bd05-7a490c0faec6","private_ip":"10.0.0.3","private_port":22,"protocol":"tcp","public_port":2023,"updated_at":"2025-02-12T16:25:08.511785Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "287" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:25:09 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: - - e4ec6c12-46bc-45f3-a35b-23574ed6b2b4 - status: 200 OK - code: 200 - duration: 48.421875ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/pat-rules/6a14aeef-2a7a-4b2c-bd05-7a490c0faec6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 287 - uncompressed: false - body: '{"created_at":"2025-02-12T16:25:08.511785Z","gateway_id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","id":"6a14aeef-2a7a-4b2c-bd05-7a490c0faec6","private_ip":"10.0.0.3","private_port":22,"protocol":"tcp","public_port":2023,"updated_at":"2025-02-12T16:25:08.511785Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "287" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:25:10 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: - - d26048a0-4285-4033-b41d-ca1decb5d527 - status: 200 OK - code: 200 - duration: 41.470584ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/21853ec7-231b-4ed9-a7d4-4694e59a3f14 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1996 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-02-12T16:24:16.671456Z","gateway_networks":[{"address":null,"created_at":"2025-02-12T16:24:25.147240Z","dhcp":{"address":"10.0.0.1","created_at":"2025-02-12T16:24:15.738170Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"caa611d1-c0ae-4232-8a3e-1d7405c19b12","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2025-02-12T16:24:15.738170Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","id":"ca847b1f-dc9d-4d88-b58b-af1b39421b87","ipam_config":null,"mac_address":"02:00:00:1F:BF:5A","private_network_id":"a100296c-6bde-43ca-bd37-960b05298469","status":"ready","updated_at":"2025-02-12T16:24:35.344045Z","zone":"fr-par-1"}],"id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","ip":{"address":"163.172.162.186","created_at":"2025-02-12T16:24:16.504200Z","gateway_id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","id":"34cc7b82-72c0-4b4b-95a2-2cc0daebf1b8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"186-162-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-02-12T16:24:16.504200Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-02-12T16:24:35.474636Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' - headers: - Content-Length: - - "1996" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:25:10 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: - - d13c50fb-ee7f-4e43-8067-318c8fa3e4da - status: 200 OK - code: 200 - duration: 45.118208ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/pat-rules/6a14aeef-2a7a-4b2c-bd05-7a490c0faec6 - 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: - - Wed, 12 Feb 2025 16:25:10 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: - - 5229ee87-da6f-4eb1-80fc-060565d9be3e - status: 204 No Content - code: 204 - duration: 65.910209ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/21853ec7-231b-4ed9-a7d4-4694e59a3f14 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1996 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-02-12T16:24:16.671456Z","gateway_networks":[{"address":null,"created_at":"2025-02-12T16:24:25.147240Z","dhcp":{"address":"10.0.0.1","created_at":"2025-02-12T16:24:15.738170Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"caa611d1-c0ae-4232-8a3e-1d7405c19b12","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2025-02-12T16:24:15.738170Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","id":"ca847b1f-dc9d-4d88-b58b-af1b39421b87","ipam_config":null,"mac_address":"02:00:00:1F:BF:5A","private_network_id":"a100296c-6bde-43ca-bd37-960b05298469","status":"ready","updated_at":"2025-02-12T16:24:35.344045Z","zone":"fr-par-1"}],"id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","ip":{"address":"163.172.162.186","created_at":"2025-02-12T16:24:16.504200Z","gateway_id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","id":"34cc7b82-72c0-4b4b-95a2-2cc0daebf1b8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"186-162-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-02-12T16:24:16.504200Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-02-12T16:24:35.474636Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' - headers: - Content-Length: - - "1996" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:25:10 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: - - 3990d9b9-1b5c-4e70-832d-90c153795bd6 - status: 200 OK - code: 200 - duration: 49.028917ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/ca847b1f-dc9d-4d88-b58b-af1b39421b87 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 984 - uncompressed: false - body: '{"address":null,"created_at":"2025-02-12T16:24:25.147240Z","dhcp":{"address":"10.0.0.1","created_at":"2025-02-12T16:24:15.738170Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"caa611d1-c0ae-4232-8a3e-1d7405c19b12","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2025-02-12T16:24:15.738170Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","id":"ca847b1f-dc9d-4d88-b58b-af1b39421b87","ipam_config":null,"mac_address":"02:00:00:1F:BF:5A","private_network_id":"a100296c-6bde-43ca-bd37-960b05298469","status":"ready","updated_at":"2025-02-12T16:24:35.344045Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "984" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:25:10 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: - - df4af14c-4176-4ec4-bec1-65e8d603b05b - status: 200 OK - code: 200 - duration: 70.111666ms - - id: 77 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries/142df25d-25e2-4f18-8561-3f3f877891d3 - 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: - - Wed, 12 Feb 2025 16:25:10 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: - - 8628e14e-b474-4dcb-b362-3ff96e7edac7 - status: 204 No Content - code: 204 - duration: 81.626208ms - - id: 78 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/ca847b1f-dc9d-4d88-b58b-af1b39421b87 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 984 - uncompressed: false - body: '{"address":null,"created_at":"2025-02-12T16:24:25.147240Z","dhcp":{"address":"10.0.0.1","created_at":"2025-02-12T16:24:15.738170Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"caa611d1-c0ae-4232-8a3e-1d7405c19b12","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2025-02-12T16:24:15.738170Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","id":"ca847b1f-dc9d-4d88-b58b-af1b39421b87","ipam_config":null,"mac_address":"02:00:00:1F:BF:5A","private_network_id":"a100296c-6bde-43ca-bd37-960b05298469","status":"ready","updated_at":"2025-02-12T16:24:35.344045Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "984" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:25:10 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: - - 33699ac5-eaf5-44b5-809a-c62cbb119f0a - status: 200 OK - code: 200 - duration: 63.394958ms - - id: 79 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/ca847b1f-dc9d-4d88-b58b-af1b39421b87 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 984 - uncompressed: false - body: '{"address":null,"created_at":"2025-02-12T16:24:25.147240Z","dhcp":{"address":"10.0.0.1","created_at":"2025-02-12T16:24:15.738170Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"caa611d1-c0ae-4232-8a3e-1d7405c19b12","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2025-02-12T16:24:15.738170Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","id":"ca847b1f-dc9d-4d88-b58b-af1b39421b87","ipam_config":null,"mac_address":"02:00:00:1F:BF:5A","private_network_id":"a100296c-6bde-43ca-bd37-960b05298469","status":"ready","updated_at":"2025-02-12T16:24:35.344045Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "984" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:25:10 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: - - 512be9d9-ec11-4dc2-833b-67ad75bbc11c - status: 200 OK - code: 200 - duration: 66.113ms - - id: 80 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/ca847b1f-dc9d-4d88-b58b-af1b39421b87?cleanup_dhcp=true - 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: - - Wed, 12 Feb 2025 16:25:10 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: - - 30a39a09-6d02-48c4-9efb-f41e1fc7a9f1 - status: 204 No Content - code: 204 - duration: 90.768375ms - - id: 81 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/23a1d963-1b47-45ca-8aeb-834d8d97d4f3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2269 - 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-02-12T16:24:16.951639+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-instance","id":"23a1d963-1b47-45ca-8aeb-834d8d97d4f3","image":{"arch":"x86_64","creation_date":"2024-10-07T11:32:23.548676+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a805381b-7ce6-425f-a108-96d9ee019135","modification_date":"2024-10-07T11:32:23.548676+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"a50e6921-21b9-4a69-83cc-191359208d4c","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"401","node_id":"14","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:c8:69","maintenances":[],"modification_date":"2025-02-12T16:24:24.801877+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-02-12T16:24:29.671381+00:00","id":"0611a4a0-e528-4ebf-8548-d635c01ca08a","ipam_ip_ids":["142df25d-25e2-4f18-8561-3f3f877891d3","96302d29-79b9-413b-a5bd-2d7c269891d9"],"mac_address":"02:00:00:1c:b1:e9","modification_date":"2025-02-12T16:25:01.593495+00:00","private_network_id":"a100296c-6bde-43ca-bd37-960b05298469","server_id":"23a1d963-1b47-45ca-8aeb-834d8d97d4f3","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":"811d24a7-f24f-48ca-a17a-8f6f1d80acf2","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2269" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:25:10 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: - - a1887156-ce61-4777-8d0d-7f1e381234e0 - status: 200 OK - code: 200 - duration: 183.29925ms - - id: 82 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/ca847b1f-dc9d-4d88-b58b-af1b39421b87 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 988 - uncompressed: false - body: '{"address":null,"created_at":"2025-02-12T16:24:25.147240Z","dhcp":{"address":"10.0.0.1","created_at":"2025-02-12T16:24:15.738170Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"caa611d1-c0ae-4232-8a3e-1d7405c19b12","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2025-02-12T16:24:15.738170Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","id":"ca847b1f-dc9d-4d88-b58b-af1b39421b87","ipam_config":null,"mac_address":"02:00:00:1F:BF:5A","private_network_id":"a100296c-6bde-43ca-bd37-960b05298469","status":"detaching","updated_at":"2025-02-12T16:25:10.693604Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "988" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:25:10 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: - - 6036e84c-fee7-4930-ae1b-395ef1be11cf - status: 200 OK - code: 200 - duration: 64.285375ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/811d24a7-f24f-48ca-a17a-8f6f1d80acf2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 692 - uncompressed: false - body: '{"created_at":"2025-02-12T16:24:17.161631Z","id":"811d24a7-f24f-48ca-a17a-8f6f1d80acf2","last_detached_at":null,"name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"a50e6921-21b9-4a69-83cc-191359208d4c","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-02-12T16:24:17.161631Z","id":"a2055bef-d48d-44c0-9395-a15a3cafca8d","product_resource_id":"23a1d963-1b47-45ca-8aeb-834d8d97d4f3","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-02-12T16:24:17.161631Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "692" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:25:10 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: - - 90635a40-bbc5-4a13-af42-18e58ebc73c9 - status: 200 OK - code: 200 - duration: 85.366ms - - id: 84 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 21 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"action":"poweroff"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/23a1d963-1b47-45ca-8aeb-834d8d97d4f3/action - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 352 - uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/23a1d963-1b47-45ca-8aeb-834d8d97d4f3/action","href_result":"/servers/23a1d963-1b47-45ca-8aeb-834d8d97d4f3","id":"d8a061e0-9ab7-4596-b5bf-12714cdd3a96","progress":0,"started_at":"2025-02-12T16:25:11.061795+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' - headers: - Content-Length: - - "352" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:25:11 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/d8a061e0-9ab7-4596-b5bf-12714cdd3a96 - 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: - - 10d3cc1b-5625-4b3e-b63e-d5802d569018 - status: 202 Accepted - code: 202 - duration: 255.97475ms - - id: 85 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/23a1d963-1b47-45ca-8aeb-834d8d97d4f3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2229 - 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-02-12T16:24:16.951639+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-instance","id":"23a1d963-1b47-45ca-8aeb-834d8d97d4f3","image":{"arch":"x86_64","creation_date":"2024-10-07T11:32:23.548676+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a805381b-7ce6-425f-a108-96d9ee019135","modification_date":"2024-10-07T11:32:23.548676+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"a50e6921-21b9-4a69-83cc-191359208d4c","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"401","node_id":"14","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:c8:69","maintenances":[],"modification_date":"2025-02-12T16:25:10.876534+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-02-12T16:24:29.671381+00:00","id":"0611a4a0-e528-4ebf-8548-d635c01ca08a","ipam_ip_ids":["142df25d-25e2-4f18-8561-3f3f877891d3","96302d29-79b9-413b-a5bd-2d7c269891d9"],"mac_address":"02:00:00:1c:b1:e9","modification_date":"2025-02-12T16:25:01.593495+00:00","private_network_id":"a100296c-6bde-43ca-bd37-960b05298469","server_id":"23a1d963-1b47-45ca-8aeb-834d8d97d4f3","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":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"811d24a7-f24f-48ca-a17a-8f6f1d80acf2","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2229" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:25:11 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: - - 2315d6db-c4be-488e-80e1-9c48d7fb2e1e - status: 200 OK - code: 200 - duration: 197.576667ms - - id: 86 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/ca847b1f-dc9d-4d88-b58b-af1b39421b87 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 136 - uncompressed: false - body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"ca847b1f-dc9d-4d88-b58b-af1b39421b87","type":"not_found"}' - headers: - Content-Length: - - "136" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:25:15 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: - - 622eeace-3ac8-481f-942b-eb2f53f3445b - status: 404 Not Found - code: 404 - duration: 50.59675ms - - id: 87 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/21853ec7-231b-4ed9-a7d4-4694e59a3f14 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1012 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-02-12T16:24:16.671456Z","gateway_networks":[],"id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","ip":{"address":"163.172.162.186","created_at":"2025-02-12T16:24:16.504200Z","gateway_id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","id":"34cc7b82-72c0-4b4b-95a2-2cc0daebf1b8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"186-162-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-02-12T16:24:16.504200Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-02-12T16:24:35.474636Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' - headers: - Content-Length: - - "1012" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:25:15 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: - - fd7537c4-0016-45ce-9e8f-7ebb7cff6d4f - status: 200 OK - code: 200 - duration: 55.3565ms - - id: 88 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/caa611d1-c0ae-4232-8a3e-1d7405c19b12 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 125 - uncompressed: false - body: '{"message":"resource is not found","resource":"dhcp","resource_id":"caa611d1-c0ae-4232-8a3e-1d7405c19b12","type":"not_found"}' - headers: - Content-Length: - - "125" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:25:15 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: - - 84cc2462-004e-481e-af92-29b96af59755 - status: 404 Not Found - code: 404 - duration: 47.870292ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/21853ec7-231b-4ed9-a7d4-4694e59a3f14 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1012 - uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-02-12T16:24:16.671456Z","gateway_networks":[],"id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","ip":{"address":"163.172.162.186","created_at":"2025-02-12T16:24:16.504200Z","gateway_id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","id":"34cc7b82-72c0-4b4b-95a2-2cc0daebf1b8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"186-162-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-02-12T16:24:16.504200Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-02-12T16:24:35.474636Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' - headers: - Content-Length: - - "1012" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:25:15 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: - - a9c5421b-e791-4adc-9d3c-c49f8a85ce9d - status: 200 OK - code: 200 - duration: 52.155667ms - - id: 90 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/21853ec7-231b-4ed9-a7d4-4694e59a3f14?cleanup_dhcp=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: - - Wed, 12 Feb 2025 16:25:16 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: - - 03279e74-0d9b-490e-8c62-0682a3784a0c - status: 204 No Content - code: 204 - duration: 70.659875ms - - id: 91 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/21853ec7-231b-4ed9-a7d4-4694e59a3f14 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 128 - uncompressed: false - body: '{"message":"resource is not found","resource":"gateway","resource_id":"21853ec7-231b-4ed9-a7d4-4694e59a3f14","type":"not_found"}' - headers: - Content-Length: - - "128" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:25:16 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: - - 23b3f8ba-3b79-4d02-bebc-ce94beabfebe - status: 404 Not Found - code: 404 - duration: 41.174792ms - - id: 92 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/23a1d963-1b47-45ca-8aeb-834d8d97d4f3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2229 - 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-02-12T16:24:16.951639+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-instance","id":"23a1d963-1b47-45ca-8aeb-834d8d97d4f3","image":{"arch":"x86_64","creation_date":"2024-10-07T11:32:23.548676+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a805381b-7ce6-425f-a108-96d9ee019135","modification_date":"2024-10-07T11:32:23.548676+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"a50e6921-21b9-4a69-83cc-191359208d4c","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"401","node_id":"14","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:c8:69","maintenances":[],"modification_date":"2025-02-12T16:25:10.876534+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-02-12T16:24:29.671381+00:00","id":"0611a4a0-e528-4ebf-8548-d635c01ca08a","ipam_ip_ids":["142df25d-25e2-4f18-8561-3f3f877891d3","96302d29-79b9-413b-a5bd-2d7c269891d9"],"mac_address":"02:00:00:1c:b1:e9","modification_date":"2025-02-12T16:25:01.593495+00:00","private_network_id":"a100296c-6bde-43ca-bd37-960b05298469","server_id":"23a1d963-1b47-45ca-8aeb-834d8d97d4f3","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":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"811d24a7-f24f-48ca-a17a-8f6f1d80acf2","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2229" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:25:16 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: - - 796250de-cd9e-4490-a086-55ef125f26fd - status: 200 OK - code: 200 - duration: 193.784667ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips/34cc7b82-72c0-4b4b-95a2-2cc0daebf1b8 - 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: - - Wed, 12 Feb 2025 16:25:17 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: - - 081ad7e1-3551-4af0-ac38-13e9b749f376 - status: 204 No Content - code: 204 - duration: 1.007284125s - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/23a1d963-1b47-45ca-8aeb-834d8d97d4f3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2229 - 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-02-12T16:24:16.951639+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-instance","id":"23a1d963-1b47-45ca-8aeb-834d8d97d4f3","image":{"arch":"x86_64","creation_date":"2024-10-07T11:32:23.548676+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a805381b-7ce6-425f-a108-96d9ee019135","modification_date":"2024-10-07T11:32:23.548676+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"a50e6921-21b9-4a69-83cc-191359208d4c","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"401","node_id":"14","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:c8:69","maintenances":[],"modification_date":"2025-02-12T16:25:10.876534+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-02-12T16:24:29.671381+00:00","id":"0611a4a0-e528-4ebf-8548-d635c01ca08a","ipam_ip_ids":["142df25d-25e2-4f18-8561-3f3f877891d3","96302d29-79b9-413b-a5bd-2d7c269891d9"],"mac_address":"02:00:00:1c:b1:e9","modification_date":"2025-02-12T16:25:01.593495+00:00","private_network_id":"a100296c-6bde-43ca-bd37-960b05298469","server_id":"23a1d963-1b47-45ca-8aeb-834d8d97d4f3","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":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"811d24a7-f24f-48ca-a17a-8f6f1d80acf2","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2229" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:25:21 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: - - 8cf43d83-2850-466a-896c-fca054f8d2c5 - status: 200 OK - code: 200 - duration: 267.04275ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/23a1d963-1b47-45ca-8aeb-834d8d97d4f3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2113 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-12T16:24:16.951639+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-instance","id":"23a1d963-1b47-45ca-8aeb-834d8d97d4f3","image":{"arch":"x86_64","creation_date":"2024-10-07T11:32:23.548676+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a805381b-7ce6-425f-a108-96d9ee019135","modification_date":"2024-10-07T11:32:23.548676+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"a50e6921-21b9-4a69-83cc-191359208d4c","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:93:c8:69","maintenances":[],"modification_date":"2025-02-12T16:25:26.495408+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-02-12T16:24:29.671381+00:00","id":"0611a4a0-e528-4ebf-8548-d635c01ca08a","ipam_ip_ids":["142df25d-25e2-4f18-8561-3f3f877891d3","96302d29-79b9-413b-a5bd-2d7c269891d9"],"mac_address":"02:00:00:1c:b1:e9","modification_date":"2025-02-12T16:25:01.593495+00:00","private_network_id":"a100296c-6bde-43ca-bd37-960b05298469","server_id":"23a1d963-1b47-45ca-8aeb-834d8d97d4f3","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":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"811d24a7-f24f-48ca-a17a-8f6f1d80acf2","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2113" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:25:26 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: - - 1af454b6-6835-4cc4-8334-f83cb5f9fa93 - status: 200 OK - code: 200 - duration: 184.634916ms - - id: 96 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/23a1d963-1b47-45ca-8aeb-834d8d97d4f3/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 478 - uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-02-12T16:24:29.671381+00:00","id":"0611a4a0-e528-4ebf-8548-d635c01ca08a","ipam_ip_ids":["142df25d-25e2-4f18-8561-3f3f877891d3","96302d29-79b9-413b-a5bd-2d7c269891d9"],"mac_address":"02:00:00:1c:b1:e9","modification_date":"2025-02-12T16:25:01.593495+00:00","private_network_id":"a100296c-6bde-43ca-bd37-960b05298469","server_id":"23a1d963-1b47-45ca-8aeb-834d8d97d4f3","state":"available","tags":[],"zone":"fr-par-1"}]}' - headers: - Content-Length: - - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:25:26 GMT - Link: - - ; rel="last" - 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: - - 77178bf8-8747-45b3-a2c8-5cc8efa2fc2c - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 104.502291ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/23a1d963-1b47-45ca-8aeb-834d8d97d4f3/private_nics/0611a4a0-e528-4ebf-8548-d635c01ca08a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - body: '{"private_nic":{"creation_date":"2025-02-12T16:24:29.671381+00:00","id":"0611a4a0-e528-4ebf-8548-d635c01ca08a","ipam_ip_ids":["142df25d-25e2-4f18-8561-3f3f877891d3","96302d29-79b9-413b-a5bd-2d7c269891d9"],"mac_address":"02:00:00:1c:b1:e9","modification_date":"2025-02-12T16:25:01.593495+00:00","private_network_id":"a100296c-6bde-43ca-bd37-960b05298469","server_id":"23a1d963-1b47-45ca-8aeb-834d8d97d4f3","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: - - Wed, 12 Feb 2025 16:25: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: - - def1c795-7fe8-46cc-b2f8-46f05726df6b - status: 200 OK - code: 200 - duration: 107.445833ms - - id: 98 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/23a1d963-1b47-45ca-8aeb-834d8d97d4f3/private_nics/0611a4a0-e528-4ebf-8548-d635c01ca08a - 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: - - Wed, 12 Feb 2025 16:25: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: - - e9d43ef7-bdf2-4eed-ad5f-4dd4df3a8753 - status: 204 No Content - code: 204 - duration: 358.0455ms - - id: 99 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/23a1d963-1b47-45ca-8aeb-834d8d97d4f3/private_nics/0611a4a0-e528-4ebf-8548-d635c01ca08a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 148 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"0611a4a0-e528-4ebf-8548-d635c01ca08a","type":"not_found"}' - headers: - Content-Length: - - "148" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:25: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: - - f7bdddd2-3e89-4a58-be39-84c1174a7ac1 - status: 404 Not Found - code: 404 - duration: 97.521375ms - - id: 100 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/23a1d963-1b47-45ca-8aeb-834d8d97d4f3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1655 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-12T16:24:16.951639+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-instance","id":"23a1d963-1b47-45ca-8aeb-834d8d97d4f3","image":{"arch":"x86_64","creation_date":"2024-10-07T11:32:23.548676+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a805381b-7ce6-425f-a108-96d9ee019135","modification_date":"2024-10-07T11:32:23.548676+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"a50e6921-21b9-4a69-83cc-191359208d4c","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:93:c8:69","maintenances":[],"modification_date":"2025-02-12T16:25:26.495408+00:00","name":"Scaleway Instance","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":"811d24a7-f24f-48ca-a17a-8f6f1d80acf2","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1655" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:25: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: - - 206286a7-b1ce-4700-af1c-6a8509cd1ef2 - status: 200 OK - code: 200 - duration: 236.933208ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/23a1d963-1b47-45ca-8aeb-834d8d97d4f3 - 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: - - Wed, 12 Feb 2025 16:25: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: - - 707542ec-35c7-40ff-bbf6-b1dd4218d56b - status: 204 No Content - code: 204 - duration: 516.336625ms - - id: 102 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/23a1d963-1b47-45ca-8aeb-834d8d97d4f3 - 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_server","resource_id":"23a1d963-1b47-45ca-8aeb-834d8d97d4f3","type":"not_found"}' - headers: - Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:25: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: - - a47c86f7-c082-4e91-809c-c1f748881742 - status: 404 Not Found - code: 404 - duration: 118.749125ms - - id: 103 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/811d24a7-f24f-48ca-a17a-8f6f1d80acf2 - 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":"811d24a7-f24f-48ca-a17a-8f6f1d80acf2","type":"not_found"}' - headers: - Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:25: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: - - c28ae44a-503a-4034-adb7-2cae56cbb81e - status: 404 Not Found - code: 404 - duration: 77.401416ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/811d24a7-f24f-48ca-a17a-8f6f1d80acf2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 485 - uncompressed: false - body: '{"created_at":"2025-02-12T16:24:17.161631Z","id":"811d24a7-f24f-48ca-a17a-8f6f1d80acf2","last_detached_at":"2025-02-12T16:25:28.241342Z","name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"a50e6921-21b9-4a69-83cc-191359208d4c","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-02-12T16:25:28.241342Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "485" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:25: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: - - ae52ce7c-1da6-4f64-8d11-10f0bfdfafaa - status: 200 OK - code: 200 - duration: 91.387334ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/811d24a7-f24f-48ca-a17a-8f6f1d80acf2 - 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: - - Wed, 12 Feb 2025 16:25: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: - - a6887180-6e5d-486e-a376-3af6f0630639 - status: 204 No Content - code: 204 - duration: 153.342834ms - - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a100296c-6bde-43ca-bd37-960b05298469 - 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: - - Wed, 12 Feb 2025 16:25:29 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: - - 5689ac30-11f3-4e02-9d08-8570e7d666b8 - status: 204 No Content - code: 204 - duration: 1.1948145s diff --git a/internal/services/vpcgw/testdata/vpc-public-gateway-upgrade.cassette.yaml b/internal/services/vpcgw/testdata/vpc-public-gateway-upgrade.cassette.yaml index a91ffd5812..bc3b1ab44f 100644 --- a/internal/services/vpcgw/testdata/vpc-public-gateway-upgrade.cassette.yaml +++ b/internal/services/vpcgw/testdata/vpc-public-gateway-upgrade.cassette.yaml @@ -6,20 +6,20 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 187 + content_length: 161 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"public-gateway-upgrade-test","tags":[],"type":"VPC-GW-S","upstream_dns_servers":[],"enable_smtp":false,"enable_bastion":false}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"public-gateway-upgrade-test","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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways method: POST response: proto: HTTP/2.0 @@ -27,20 +27,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 987 + content_length: 905 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:01.963561Z","gateway_networks":[],"id":"381c95da-4748-448c-b2b6-dfc2506ba765","ip":{"address":"51.15.249.84","created_at":"2025-01-27T09:16:01.946568Z","gateway_id":"381c95da-4748-448c-b2b6-dfc2506ba765","id":"1469776d-8d65-4d24-8122-738a6d68ee63","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"84-249-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.946568Z","zone":"fr-par-1"},"ip_mobility_enabled":false,"is_legacy":false,"name":"public-gateway-upgrade-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:01.963561Z","upstream_dns_servers":[],"version":null,"zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-25T11:14:50.997827Z","gateway_networks":[],"id":"5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62","ipv4":{"address":"163.172.167.54","created_at":"2025-03-25T11:14:50.971851Z","gateway_id":"5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62","id":"44f444b6-2513-4cad-8cb1-5d62d5629ee0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"54-167-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-25T11:14:50.971851Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-upgrade-test","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-03-25T11:14:50.997827Z","zone":"fr-par-1"}' headers: Content-Length: - - "987" + - "905" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:02 GMT + - Tue, 25 Mar 2025 11:14:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 82e545e6-b29b-4ac5-b966-36bd1724dc50 + - 302c00be-c2a5-4be3-b6b2-df63aa4d6bb4 status: 200 OK code: 200 - duration: 1.615279333s + duration: 2.19176203s - 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-gw/v1/zones/fr-par-1/gateways/381c95da-4748-448c-b2b6-dfc2506ba765 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62 method: GET response: proto: HTTP/2.0 @@ -76,20 +76,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 987 + content_length: 923 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:01.963561Z","gateway_networks":[],"id":"381c95da-4748-448c-b2b6-dfc2506ba765","ip":{"address":"51.15.249.84","created_at":"2025-01-27T09:16:01.946568Z","gateway_id":"381c95da-4748-448c-b2b6-dfc2506ba765","id":"1469776d-8d65-4d24-8122-738a6d68ee63","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"84-249-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.946568Z","zone":"fr-par-1"},"ip_mobility_enabled":false,"is_legacy":false,"name":"public-gateway-upgrade-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:01.963561Z","upstream_dns_servers":[],"version":null,"zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-25T11:14:50.997827Z","gateway_networks":[],"id":"5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62","ipv4":{"address":"163.172.167.54","created_at":"2025-03-25T11:14:50.971851Z","gateway_id":"5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62","id":"44f444b6-2513-4cad-8cb1-5d62d5629ee0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"54-167-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-25T11:14:50.971851Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-upgrade-test","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-03-25T11:14:51.046573Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "987" + - "923" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:02 GMT + - Tue, 25 Mar 2025 11:14:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c306aee-4095-4369-8268-fed678589905 + - 8c96da84-b5dd-43e4-adea-efdced3337bc status: 200 OK code: 200 - duration: 27.739417ms + duration: 202.362259ms - 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-gw/v1/zones/fr-par-1/gateways/381c95da-4748-448c-b2b6-dfc2506ba765 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62 method: GET response: proto: HTTP/2.0 @@ -125,20 +125,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 990 + content_length: 920 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:01.963561Z","gateway_networks":[],"id":"381c95da-4748-448c-b2b6-dfc2506ba765","ip":{"address":"51.15.249.84","created_at":"2025-01-27T09:16:01.946568Z","gateway_id":"381c95da-4748-448c-b2b6-dfc2506ba765","id":"1469776d-8d65-4d24-8122-738a6d68ee63","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"84-249-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.946568Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-upgrade-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:03.008921Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-25T11:14:50.997827Z","gateway_networks":[],"id":"5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62","ipv4":{"address":"163.172.167.54","created_at":"2025-03-25T11:14:50.971851Z","gateway_id":"5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62","id":"44f444b6-2513-4cad-8cb1-5d62d5629ee0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"54-167-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-25T11:14:50.971851Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-upgrade-test","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-03-25T11:14:54.024547Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "990" + - "920" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:07 GMT + - Tue, 25 Mar 2025 11:14:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,10 +146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 18a119a8-b0e5-494b-9793-37712be5e7b7 + - 2cf942df-829e-42c5-911c-2b85466c93ff status: 200 OK code: 200 - duration: 28.032959ms + duration: 127.048567ms - 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-gw/v1/zones/fr-par-1/gateways/381c95da-4748-448c-b2b6-dfc2506ba765 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62 method: GET response: proto: HTTP/2.0 @@ -174,20 +174,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 986 + content_length: 920 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:01.963561Z","gateway_networks":[],"id":"381c95da-4748-448c-b2b6-dfc2506ba765","ip":{"address":"51.15.249.84","created_at":"2025-01-27T09:16:01.946568Z","gateway_id":"381c95da-4748-448c-b2b6-dfc2506ba765","id":"1469776d-8d65-4d24-8122-738a6d68ee63","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"84-249-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.946568Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-upgrade-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:07.448370Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-25T11:14:50.997827Z","gateway_networks":[],"id":"5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62","ipv4":{"address":"163.172.167.54","created_at":"2025-03-25T11:14:50.971851Z","gateway_id":"5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62","id":"44f444b6-2513-4cad-8cb1-5d62d5629ee0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"54-167-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-25T11:14:50.971851Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-upgrade-test","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-03-25T11:14:54.024547Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "986" + - "920" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:12 GMT + - Tue, 25 Mar 2025 11:14:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -195,10 +195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2082cf76-64c9-43b5-8c93-cc6860fca8a0 + - 83600604-326b-46e6-a484-6ff99d8ab4ad status: 200 OK code: 200 - duration: 35.413708ms + duration: 80.936469ms - 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-gw/v1/zones/fr-par-1/gateways/381c95da-4748-448c-b2b6-dfc2506ba765 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62 method: GET response: proto: HTTP/2.0 @@ -223,20 +223,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 986 + content_length: 920 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:01.963561Z","gateway_networks":[],"id":"381c95da-4748-448c-b2b6-dfc2506ba765","ip":{"address":"51.15.249.84","created_at":"2025-01-27T09:16:01.946568Z","gateway_id":"381c95da-4748-448c-b2b6-dfc2506ba765","id":"1469776d-8d65-4d24-8122-738a6d68ee63","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"84-249-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.946568Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-upgrade-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:07.448370Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-25T11:14:50.997827Z","gateway_networks":[],"id":"5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62","ipv4":{"address":"163.172.167.54","created_at":"2025-03-25T11:14:50.971851Z","gateway_id":"5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62","id":"44f444b6-2513-4cad-8cb1-5d62d5629ee0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"54-167-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-25T11:14:50.971851Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-upgrade-test","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-03-25T11:14:54.024547Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "986" + - "920" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:12 GMT + - Tue, 25 Mar 2025 11:14:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -244,10 +244,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7e3f27b5-d700-4cb6-aede-1c7c6f638c5a + - e087edb4-a2a2-4471-bb46-dbe267826184 status: 200 OK code: 200 - duration: 31.200958ms + duration: 107.431314ms - id: 5 request: proto: HTTP/1.1 @@ -263,8 +263,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-gw/v1/zones/fr-par-1/gateways/381c95da-4748-448c-b2b6-dfc2506ba765 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62 method: GET response: proto: HTTP/2.0 @@ -272,20 +272,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 986 + content_length: 920 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:01.963561Z","gateway_networks":[],"id":"381c95da-4748-448c-b2b6-dfc2506ba765","ip":{"address":"51.15.249.84","created_at":"2025-01-27T09:16:01.946568Z","gateway_id":"381c95da-4748-448c-b2b6-dfc2506ba765","id":"1469776d-8d65-4d24-8122-738a6d68ee63","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"84-249-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.946568Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-upgrade-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:07.448370Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-25T11:14:50.997827Z","gateway_networks":[],"id":"5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62","ipv4":{"address":"163.172.167.54","created_at":"2025-03-25T11:14:50.971851Z","gateway_id":"5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62","id":"44f444b6-2513-4cad-8cb1-5d62d5629ee0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"54-167-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-25T11:14:50.971851Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-upgrade-test","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-03-25T11:14:54.024547Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "986" + - "920" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:12 GMT + - Tue, 25 Mar 2025 11:14:57 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -293,10 +293,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 792e3b0a-9fd9-45aa-ad9d-09fe2a67cf5c + - edfe01a3-305d-4bdc-ae03-6c1e1ca61008 status: 200 OK code: 200 - duration: 28.60675ms + duration: 148.906692ms - 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-gw/v1/zones/fr-par-1/gateways/381c95da-4748-448c-b2b6-dfc2506ba765 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62 method: GET response: proto: HTTP/2.0 @@ -321,20 +321,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 986 + content_length: 920 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:01.963561Z","gateway_networks":[],"id":"381c95da-4748-448c-b2b6-dfc2506ba765","ip":{"address":"51.15.249.84","created_at":"2025-01-27T09:16:01.946568Z","gateway_id":"381c95da-4748-448c-b2b6-dfc2506ba765","id":"1469776d-8d65-4d24-8122-738a6d68ee63","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"84-249-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.946568Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-upgrade-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:07.448370Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-25T11:14:50.997827Z","gateway_networks":[],"id":"5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62","ipv4":{"address":"163.172.167.54","created_at":"2025-03-25T11:14:50.971851Z","gateway_id":"5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62","id":"44f444b6-2513-4cad-8cb1-5d62d5629ee0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"54-167-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-25T11:14:50.971851Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-upgrade-test","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-03-25T11:14:54.024547Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "986" + - "920" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:13 GMT + - Tue, 25 Mar 2025 11:14:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -342,48 +342,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d42d1018-7924-4055-8d1f-a5c985dd555c + - acf80434-a89d-43c8-9af0-6f7cdec7ce68 status: 200 OK code: 200 - duration: 28.565416ms + duration: 103.520026ms - id: 7 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-gw/v1/zones/fr-par-1/gateways/381c95da-4748-448c-b2b6-dfc2506ba765 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62 + method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 986 + content_length: 920 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:01.963561Z","gateway_networks":[],"id":"381c95da-4748-448c-b2b6-dfc2506ba765","ip":{"address":"51.15.249.84","created_at":"2025-01-27T09:16:01.946568Z","gateway_id":"381c95da-4748-448c-b2b6-dfc2506ba765","id":"1469776d-8d65-4d24-8122-738a6d68ee63","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"84-249-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.946568Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-upgrade-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:07.448370Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-25T11:14:50.997827Z","gateway_networks":[],"id":"5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62","ipv4":{"address":"163.172.167.54","created_at":"2025-03-25T11:14:50.971851Z","gateway_id":"5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62","id":"44f444b6-2513-4cad-8cb1-5d62d5629ee0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"54-167-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-25T11:14:50.971851Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-upgrade-test","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-03-25T11:14:58.949600Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "986" + - "920" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:13 GMT + - Tue, 25 Mar 2025 11:14:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -391,10 +393,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7ed242d0-2866-414e-b8fc-28d7a8158fe2 + - 3d8bf6c3-8f92-4e6c-9281-46214c5eb564 status: 200 OK code: 200 - duration: 28.410958ms + duration: 108.037817ms - 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-gw/v1/zones/fr-par-1/gateways/381c95da-4748-448c-b2b6-dfc2506ba765 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62 method: GET response: proto: HTTP/2.0 @@ -419,20 +421,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 986 + content_length: 920 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:01.963561Z","gateway_networks":[],"id":"381c95da-4748-448c-b2b6-dfc2506ba765","ip":{"address":"51.15.249.84","created_at":"2025-01-27T09:16:01.946568Z","gateway_id":"381c95da-4748-448c-b2b6-dfc2506ba765","id":"1469776d-8d65-4d24-8122-738a6d68ee63","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"84-249-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.946568Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-upgrade-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:07.448370Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-25T11:14:50.997827Z","gateway_networks":[],"id":"5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62","ipv4":{"address":"163.172.167.54","created_at":"2025-03-25T11:14:50.971851Z","gateway_id":"5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62","id":"44f444b6-2513-4cad-8cb1-5d62d5629ee0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"54-167-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-25T11:14:50.971851Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-upgrade-test","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-03-25T11:14:58.949600Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "986" + - "920" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:14 GMT + - Tue, 25 Mar 2025 11:14:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -440,50 +442,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 25d1bffb-694c-487e-afec-61e1fce839e7 + - ca5be177-0ec9-48e1-971c-089f9e62564c status: 200 OK code: 200 - duration: 33.543916ms + duration: 120.378582ms - id: 9 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/381c95da-4748-448c-b2b6-dfc2506ba765 - method: PATCH + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 986 + content_length: 920 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:01.963561Z","gateway_networks":[],"id":"381c95da-4748-448c-b2b6-dfc2506ba765","ip":{"address":"51.15.249.84","created_at":"2025-01-27T09:16:01.946568Z","gateway_id":"381c95da-4748-448c-b2b6-dfc2506ba765","id":"1469776d-8d65-4d24-8122-738a6d68ee63","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"84-249-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.946568Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-upgrade-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:14.704549Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-25T11:14:50.997827Z","gateway_networks":[],"id":"5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62","ipv4":{"address":"163.172.167.54","created_at":"2025-03-25T11:14:50.971851Z","gateway_id":"5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62","id":"44f444b6-2513-4cad-8cb1-5d62d5629ee0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"54-167-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-25T11:14:50.971851Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-upgrade-test","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-03-25T11:14:58.949600Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "986" + - "920" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:14 GMT + - Tue, 25 Mar 2025 11:14:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -491,48 +491,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 61685597-65a3-4b2d-bd38-70c99445a90b + - 766b82ee-f6bc-411a-bbe3-9905f7c4c469 status: 200 OK code: 200 - duration: 33.364166ms + duration: 142.354943ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 19 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"type":"VPC-GW-M"}' 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-gw/v1/zones/fr-par-1/gateways/381c95da-4748-448c-b2b6-dfc2506ba765 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62/upgrade + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 986 + content_length: 921 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:01.963561Z","gateway_networks":[],"id":"381c95da-4748-448c-b2b6-dfc2506ba765","ip":{"address":"51.15.249.84","created_at":"2025-01-27T09:16:01.946568Z","gateway_id":"381c95da-4748-448c-b2b6-dfc2506ba765","id":"1469776d-8d65-4d24-8122-738a6d68ee63","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"84-249-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.946568Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-upgrade-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:14.704549Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":1000,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-25T11:14:50.997827Z","gateway_networks":[],"id":"5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62","ipv4":{"address":"163.172.167.54","created_at":"2025-03-25T11:14:50.971851Z","gateway_id":"5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62","id":"44f444b6-2513-4cad-8cb1-5d62d5629ee0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"54-167-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-25T11:14:50.971851Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-upgrade-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-M","updated_at":"2025-03-25T11:14:59.374018Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "986" + - "921" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:14 GMT + - Tue, 25 Mar 2025 11:14:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -540,10 +542,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0d593194-b7ce-42e2-b3f8-7cc78d337bbe + - c5276713-c11f-491d-97c7-d154a3c3669a status: 200 OK code: 200 - duration: 26.873459ms + duration: 270.550247ms - id: 11 request: proto: HTTP/1.1 @@ -559,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-gw/v1/zones/fr-par-1/gateways/381c95da-4748-448c-b2b6-dfc2506ba765 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62 method: GET response: proto: HTTP/2.0 @@ -568,20 +570,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 986 + content_length: 920 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:01.963561Z","gateway_networks":[],"id":"381c95da-4748-448c-b2b6-dfc2506ba765","ip":{"address":"51.15.249.84","created_at":"2025-01-27T09:16:01.946568Z","gateway_id":"381c95da-4748-448c-b2b6-dfc2506ba765","id":"1469776d-8d65-4d24-8122-738a6d68ee63","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"84-249-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.946568Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-upgrade-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:14.704549Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":1000,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-25T11:14:50.997827Z","gateway_networks":[],"id":"5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62","ipv4":{"address":"163.172.167.54","created_at":"2025-03-25T11:14:50.971851Z","gateway_id":"5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62","id":"44f444b6-2513-4cad-8cb1-5d62d5629ee0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"54-167-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-25T11:14:50.971851Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-upgrade-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"failed","tags":[],"type":"VPC-GW-M","updated_at":"2025-03-25T11:14:59.429347Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "986" + - "920" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:14 GMT + - Tue, 25 Mar 2025 11:14:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -589,50 +591,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8198ef4d-daed-4718-aba4-33149b87bdfc + - 87f10ad1-3d73-44da-9d00-debed2a328ac status: 200 OK code: 200 - duration: 38.685542ms + duration: 182.798975ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 19 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"type":"VPC-GW-M"}' + 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-gw/v1/zones/fr-par-1/gateways/381c95da-4748-448c-b2b6-dfc2506ba765/upgrade - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 987 + content_length: 925 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:01.963561Z","gateway_networks":[],"id":"381c95da-4748-448c-b2b6-dfc2506ba765","ip":{"address":"51.15.249.84","created_at":"2025-01-27T09:16:01.946568Z","gateway_id":"381c95da-4748-448c-b2b6-dfc2506ba765","id":"1469776d-8d65-4d24-8122-738a6d68ee63","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"84-249-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.946568Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-upgrade-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":1000000000,"name":"VPC-GW-M","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:14.831939Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":1000,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-25T11:14:50.997827Z","gateway_networks":[],"id":"5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62","ipv4":{"address":"163.172.167.54","created_at":"2025-03-25T11:14:50.971851Z","gateway_id":"5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62","id":"44f444b6-2513-4cad-8cb1-5d62d5629ee0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"54-167-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-25T11:14:50.971851Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-upgrade-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-M","updated_at":"2025-03-25T11:14:59.751033Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "987" + - "925" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:14 GMT + - Tue, 25 Mar 2025 11:14:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -640,10 +640,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 769d0849-f56a-4dea-ba66-e67dff4633c7 + - cb3ad6e9-0960-4256-b798-4014470f4efd status: 200 OK code: 200 - duration: 95.8845ms + duration: 162.451388ms - id: 13 request: proto: HTTP/1.1 @@ -659,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-gw/v1/zones/fr-par-1/gateways/381c95da-4748-448c-b2b6-dfc2506ba765 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62 method: GET response: proto: HTTP/2.0 @@ -668,20 +668,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 986 + content_length: 921 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:01.963561Z","gateway_networks":[],"id":"381c95da-4748-448c-b2b6-dfc2506ba765","ip":{"address":"51.15.249.84","created_at":"2025-01-27T09:16:01.946568Z","gateway_id":"381c95da-4748-448c-b2b6-dfc2506ba765","id":"1469776d-8d65-4d24-8122-738a6d68ee63","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"84-249-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.946568Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-upgrade-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"failed","tags":[],"type":{"bandwidth":1000000000,"name":"VPC-GW-M","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:14.873494Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":1000,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-25T11:14:50.997827Z","gateway_networks":[],"id":"5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62","ipv4":{"address":"163.172.167.54","created_at":"2025-03-25T11:14:50.971851Z","gateway_id":"5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62","id":"44f444b6-2513-4cad-8cb1-5d62d5629ee0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"54-167-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-25T11:14:50.971851Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-upgrade-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-M","updated_at":"2025-03-25T11:15:04.827494Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "986" + - "921" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:14 GMT + - Tue, 25 Mar 2025 11:15:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -689,10 +689,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b47634ea-4b7a-4234-957f-80800ae8e82b + - 08d730df-e861-442b-8544-eef1322e6464 status: 200 OK code: 200 - duration: 41.629083ms + duration: 218.875894ms - id: 14 request: proto: HTTP/1.1 @@ -708,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-gw/v1/zones/fr-par-1/gateways/381c95da-4748-448c-b2b6-dfc2506ba765 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62 method: GET response: proto: HTTP/2.0 @@ -717,20 +717,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 986 + content_length: 921 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:01.963561Z","gateway_networks":[],"id":"381c95da-4748-448c-b2b6-dfc2506ba765","ip":{"address":"51.15.249.84","created_at":"2025-01-27T09:16:01.946568Z","gateway_id":"381c95da-4748-448c-b2b6-dfc2506ba765","id":"1469776d-8d65-4d24-8122-738a6d68ee63","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"84-249-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.946568Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-upgrade-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"failed","tags":[],"type":{"bandwidth":1000000000,"name":"VPC-GW-M","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:14.873494Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":1000,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-25T11:14:50.997827Z","gateway_networks":[],"id":"5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62","ipv4":{"address":"163.172.167.54","created_at":"2025-03-25T11:14:50.971851Z","gateway_id":"5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62","id":"44f444b6-2513-4cad-8cb1-5d62d5629ee0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"54-167-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-25T11:14:50.971851Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-upgrade-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-M","updated_at":"2025-03-25T11:15:04.827494Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "986" + - "921" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:14 GMT + - Tue, 25 Mar 2025 11:15:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -738,10 +738,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c7550276-1a53-409e-a09d-ebd082ecef0c + - 338980ce-0b90-4a5e-b2a1-d9c42e3da297 status: 200 OK code: 200 - duration: 46.031041ms + duration: 230.789523ms - id: 15 request: proto: HTTP/1.1 @@ -757,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-gw/v1/zones/fr-par-1/gateways/381c95da-4748-448c-b2b6-dfc2506ba765 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62 method: GET response: proto: HTTP/2.0 @@ -766,20 +766,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 991 + content_length: 921 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:01.963561Z","gateway_networks":[],"id":"381c95da-4748-448c-b2b6-dfc2506ba765","ip":{"address":"51.15.249.84","created_at":"2025-01-27T09:16:01.946568Z","gateway_id":"381c95da-4748-448c-b2b6-dfc2506ba765","id":"1469776d-8d65-4d24-8122-738a6d68ee63","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"84-249-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.946568Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-upgrade-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":1000000000,"name":"VPC-GW-M","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:15.143861Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":1000,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-25T11:14:50.997827Z","gateway_networks":[],"id":"5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62","ipv4":{"address":"163.172.167.54","created_at":"2025-03-25T11:14:50.971851Z","gateway_id":"5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62","id":"44f444b6-2513-4cad-8cb1-5d62d5629ee0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"54-167-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-25T11:14:50.971851Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-upgrade-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-M","updated_at":"2025-03-25T11:15:04.827494Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "991" + - "921" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:15 GMT + - Tue, 25 Mar 2025 11:15:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -787,10 +787,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 570b0417-a13b-4049-9178-71c04362bda7 + - 73497d88-81ca-4144-b79e-5a26816f129e status: 200 OK code: 200 - duration: 26.795542ms + duration: 218.51023ms - id: 16 request: proto: HTTP/1.1 @@ -806,8 +806,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/381c95da-4748-448c-b2b6-dfc2506ba765 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62 method: GET response: proto: HTTP/2.0 @@ -815,20 +815,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 991 + content_length: 921 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:01.963561Z","gateway_networks":[],"id":"381c95da-4748-448c-b2b6-dfc2506ba765","ip":{"address":"51.15.249.84","created_at":"2025-01-27T09:16:01.946568Z","gateway_id":"381c95da-4748-448c-b2b6-dfc2506ba765","id":"1469776d-8d65-4d24-8122-738a6d68ee63","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"84-249-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.946568Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-upgrade-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":1000000000,"name":"VPC-GW-M","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:15.143861Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":1000,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-25T11:14:50.997827Z","gateway_networks":[],"id":"5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62","ipv4":{"address":"163.172.167.54","created_at":"2025-03-25T11:14:50.971851Z","gateway_id":"5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62","id":"44f444b6-2513-4cad-8cb1-5d62d5629ee0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"54-167-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-25T11:14:50.971851Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-upgrade-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-M","updated_at":"2025-03-25T11:15:04.827494Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "991" + - "921" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:15 GMT + - Tue, 25 Mar 2025 11:15:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -836,10 +836,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 05fbda28-2cde-44ba-9219-ce78926aab54 + - bf559d42-2ad5-4859-95e7-c107e2e14bd6 status: 200 OK code: 200 - duration: 26.362209ms + duration: 170.727023ms - id: 17 request: proto: HTTP/1.1 @@ -855,8 +855,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/381c95da-4748-448c-b2b6-dfc2506ba765 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62 method: GET response: proto: HTTP/2.0 @@ -864,20 +864,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 987 + content_length: 921 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:01.963561Z","gateway_networks":[],"id":"381c95da-4748-448c-b2b6-dfc2506ba765","ip":{"address":"51.15.249.84","created_at":"2025-01-27T09:16:01.946568Z","gateway_id":"381c95da-4748-448c-b2b6-dfc2506ba765","id":"1469776d-8d65-4d24-8122-738a6d68ee63","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"84-249-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.946568Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-upgrade-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":1000000000,"name":"VPC-GW-M","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:20.132098Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":1000,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-25T11:14:50.997827Z","gateway_networks":[],"id":"5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62","ipv4":{"address":"163.172.167.54","created_at":"2025-03-25T11:14:50.971851Z","gateway_id":"5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62","id":"44f444b6-2513-4cad-8cb1-5d62d5629ee0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"54-167-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-25T11:14:50.971851Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-upgrade-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-M","updated_at":"2025-03-25T11:15:04.827494Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "987" + - "921" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:20 GMT + - Tue, 25 Mar 2025 11:15:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -885,10 +885,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f6fb7ff6-8a8e-44f2-a3a1-46e7d7e18b9e + - df6dfa88-3ae8-4a0d-bf50-7ac72010c83b status: 200 OK code: 200 - duration: 34.087ms + duration: 171.903086ms - id: 18 request: proto: HTTP/1.1 @@ -904,8 +904,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/381c95da-4748-448c-b2b6-dfc2506ba765 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62 method: GET response: proto: HTTP/2.0 @@ -913,20 +913,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 987 + content_length: 921 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2025-01-27T09:16:01.963561Z","gateway_networks":[],"id":"381c95da-4748-448c-b2b6-dfc2506ba765","ip":{"address":"51.15.249.84","created_at":"2025-01-27T09:16:01.946568Z","gateway_id":"381c95da-4748-448c-b2b6-dfc2506ba765","id":"1469776d-8d65-4d24-8122-738a6d68ee63","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"84-249-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-01-27T09:16:01.946568Z","zone":"fr-par-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"public-gateway-upgrade-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":1000000000,"name":"VPC-GW-M","zone":"fr-par-1"},"updated_at":"2025-01-27T09:16:20.132098Z","upstream_dns_servers":[],"version":"0.7.3","zone":"fr-par-1"}' + body: '{"bandwidth":1000,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-25T11:14:50.997827Z","gateway_networks":[],"id":"5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62","ipv4":{"address":"163.172.167.54","created_at":"2025-03-25T11:14:50.971851Z","gateway_id":"5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62","id":"44f444b6-2513-4cad-8cb1-5d62d5629ee0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"54-167-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-25T11:14:50.971851Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-upgrade-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-M","updated_at":"2025-03-25T11:15:04.827494Z","version":"0.7.3","zone":"fr-par-1"}' headers: Content-Length: - - "987" + - "921" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:22 GMT + - Tue, 25 Mar 2025 11:15:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -934,10 +934,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dd55c03f-0401-44e3-9d02-a63751351280 + - e2c3d6c9-1d6e-4f5c-85f4-67ceebfc4cab status: 200 OK code: 200 - duration: 24.397625ms + duration: 192.009472ms - id: 19 request: proto: HTTP/1.1 @@ -953,8 +953,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/381c95da-4748-448c-b2b6-dfc2506ba765?cleanup_dhcp=false + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62?delete_ip=false method: DELETE response: proto: HTTP/2.0 @@ -962,18 +962,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 922 uncompressed: false - body: "" + body: '{"bandwidth":1000,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-03-25T11:14:50.997827Z","gateway_networks":[],"id":"5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62","ipv4":{"address":"163.172.167.54","created_at":"2025-03-25T11:14:50.971851Z","gateway_id":"5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62","id":"44f444b6-2513-4cad-8cb1-5d62d5629ee0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"54-167-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-03-25T11:14:50.971851Z","zone":"fr-par-1"},"is_legacy":false,"name":"public-gateway-upgrade-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"deleting","tags":[],"type":"VPC-GW-M","updated_at":"2025-03-25T11:15:07.328138Z","version":"0.7.3","zone":"fr-par-1"}' headers: + Content-Length: + - "922" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:22 GMT + - Tue, 25 Mar 2025 11:15:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -981,10 +983,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2fa07dbb-298e-4b2d-bbd7-d8a34b022083 - status: 204 No Content - code: 204 - duration: 44.157583ms + - c4bbf5e5-57ea-4952-81b4-c048bce39150 + status: 200 OK + code: 200 + duration: 234.094225ms - id: 20 request: proto: HTTP/1.1 @@ -1000,8 +1002,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-gw/v1/zones/fr-par-1/gateways/381c95da-4748-448c-b2b6-dfc2506ba765 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62 method: GET response: proto: HTTP/2.0 @@ -1011,7 +1013,7 @@ interactions: trailer: {} content_length: 128 uncompressed: false - body: '{"message":"resource is not found","resource":"gateway","resource_id":"381c95da-4748-448c-b2b6-dfc2506ba765","type":"not_found"}' + body: '{"message":"resource is not found","resource":"gateway","resource_id":"5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62","type":"not_found"}' headers: Content-Length: - "128" @@ -1020,9 +1022,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:22 GMT + - Tue, 25 Mar 2025 11:15:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1030,10 +1032,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dbbf05cf-07ba-4fb3-a241-073a61a5f4bb + - 04e05677-dcdb-4f71-a264-4ad1a28b3703 status: 404 Not Found code: 404 - duration: 22.923375ms + duration: 179.397017ms - id: 21 request: proto: HTTP/1.1 @@ -1049,8 +1051,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-gw/v1/zones/fr-par-1/gateways/381c95da-4748-448c-b2b6-dfc2506ba765 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62 method: GET response: proto: HTTP/2.0 @@ -1060,7 +1062,7 @@ interactions: trailer: {} content_length: 128 uncompressed: false - body: '{"message":"resource is not found","resource":"gateway","resource_id":"381c95da-4748-448c-b2b6-dfc2506ba765","type":"not_found"}' + body: '{"message":"resource is not found","resource":"gateway","resource_id":"5fd0fcfd-b39e-4fc5-832b-9ea5048e6b62","type":"not_found"}' headers: Content-Length: - "128" @@ -1069,9 +1071,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 27 Jan 2025 09:16:22 GMT + - Tue, 25 Mar 2025 11:15:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1079,7 +1081,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e0161bef-0fab-4e3b-b2e6-a1b16a7e33dc + - c1037d2a-94ed-4cc8-aa6e-117d0126fe46 status: 404 Not Found code: 404 - duration: 23.800667ms + duration: 166.02407ms diff --git a/internal/services/vpcgw/testfuncs/checks.go b/internal/services/vpcgw/testfuncs/checks.go index 9f308924ff..dfb8154b91 100644 --- a/internal/services/vpcgw/testfuncs/checks.go +++ b/internal/services/vpcgw/testfuncs/checks.go @@ -6,6 +6,7 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource" "github.com/hashicorp/terraform-plugin-sdk/v2/terraform" vpcgwSDK "github.com/scaleway/scaleway-sdk-go/api/vpcgw/v1" + v2 "github.com/scaleway/scaleway-sdk-go/api/vpcgw/v2" "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/vpcgw" @@ -18,12 +19,12 @@ func IsGatewayNetworkDestroyed(tt *acctest.TestTools) resource.TestCheckFunc { continue } - vpcgwNetworkAPI, zone, ID, err := vpcgw.NewAPIWithZoneAndID(tt.Meta, rs.Primary.ID) + vpcgwNetworkAPI, zone, ID, err := vpcgw.NewAPIWithZoneAndIDv2(tt.Meta, rs.Primary.ID) if err != nil { return err } - _, err = vpcgwNetworkAPI.GetGatewayNetwork(&vpcgwSDK.GetGatewayNetworkRequest{ + _, err = vpcgwNetworkAPI.GetGatewayNetwork(&v2.GetGatewayNetworkRequest{ GatewayNetworkID: ID, Zone: zone, }) @@ -52,12 +53,12 @@ func IsGatewayDestroyed(tt *acctest.TestTools) resource.TestCheckFunc { continue } - vpcgwAPI, zone, ID, err := vpcgw.NewAPIWithZoneAndID(tt.Meta, rs.Primary.ID) + vpcgwAPI, zone, ID, err := vpcgw.NewAPIWithZoneAndIDv2(tt.Meta, rs.Primary.ID) if err != nil { return err } - _, err = vpcgwAPI.GetGateway(&vpcgwSDK.GetGatewayRequest{ + _, err = vpcgwAPI.GetGateway(&v2.GetGatewayRequest{ GatewayID: ID, Zone: zone, }) @@ -120,12 +121,12 @@ func IsIPDestroyed(tt *acctest.TestTools) resource.TestCheckFunc { continue } - vpcgwAPI, zone, ID, err := vpcgw.NewAPIWithZoneAndID(tt.Meta, rs.Primary.ID) + vpcgwAPI, zone, ID, err := vpcgw.NewAPIWithZoneAndIDv2(tt.Meta, rs.Primary.ID) if err != nil { return err } - _, err = vpcgwAPI.GetIP(&vpcgwSDK.GetIPRequest{ + _, err = vpcgwAPI.GetIP(&v2.GetIPRequest{ IPID: ID, Zone: zone, }) diff --git a/internal/services/vpcgw/testfuncs/sweep.go b/internal/services/vpcgw/testfuncs/sweep.go index 7cd82adeea..a209b6de2e 100644 --- a/internal/services/vpcgw/testfuncs/sweep.go +++ b/internal/services/vpcgw/testfuncs/sweep.go @@ -5,6 +5,7 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource" vpcgwSDK "github.com/scaleway/scaleway-sdk-go/api/vpcgw/v1" + v2 "github.com/scaleway/scaleway-sdk-go/api/vpcgw/v2" "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" @@ -31,11 +32,11 @@ func AddTestSweepers() { func testSweepVPCPublicGateway(_ string) error { return acctest.SweepZones(scw.AllZones, func(scwClient *scw.Client, zone scw.Zone) error { - api := vpcgwSDK.NewAPI(scwClient) + api := v2.NewAPI(scwClient) logging.L.Debugf("sweeper: destroying the public gateways in (%+v)", zone) - listGatewayResponse, err := api.ListGateways(&vpcgwSDK.ListGatewaysRequest{ + listGatewayResponse, err := api.ListGateways(&v2.ListGatewaysRequest{ Zone: zone, }, scw.WithAllPages()) if err != nil { @@ -43,7 +44,7 @@ func testSweepVPCPublicGateway(_ string) error { } for _, gateway := range listGatewayResponse.Gateways { - err := api.DeleteGateway(&vpcgwSDK.DeleteGatewayRequest{ + _, err := api.DeleteGateway(&v2.DeleteGatewayRequest{ Zone: zone, GatewayID: gateway.ID, }) @@ -58,11 +59,11 @@ func testSweepVPCPublicGateway(_ string) error { func testSweepVPCGatewayNetwork(_ string) error { return acctest.SweepZones(scw.AllZones, func(scwClient *scw.Client, zone scw.Zone) error { - api := vpcgwSDK.NewAPI(scwClient) + api := v2.NewAPI(scwClient) logging.L.Debugf("sweeper: destroying the gateway network in (%s)", zone) - listPNResponse, err := api.ListGatewayNetworks(&vpcgwSDK.ListGatewayNetworksRequest{ + listPNResponse, err := api.ListGatewayNetworks(&v2.ListGatewayNetworksRequest{ Zone: zone, }, scw.WithAllPages()) if err != nil { @@ -70,11 +71,9 @@ func testSweepVPCGatewayNetwork(_ string) error { } for _, gn := range listPNResponse.GatewayNetworks { - err := api.DeleteGatewayNetwork(&vpcgwSDK.DeleteGatewayNetworkRequest{ + _, err := api.DeleteGatewayNetwork(&v2.DeleteGatewayNetworkRequest{ GatewayNetworkID: gn.GatewayID, Zone: zone, - // Cleanup the dhcp resource related. DON'T CALL THE SWEEPER DHCP - CleanupDHCP: true, }) if err != nil { return fmt.Errorf("error deleting gateway network in sweeper: %w", err) @@ -87,11 +86,11 @@ func testSweepVPCGatewayNetwork(_ string) error { func testSweepVPCPublicGatewayIP(_ string) error { return acctest.SweepZones(scw.AllZones, func(scwClient *scw.Client, zone scw.Zone) error { - api := vpcgwSDK.NewAPI(scwClient) + api := v2.NewAPI(scwClient) logging.L.Debugf("sweeper: destroying the public gateways ip in (%s)", zone) - listIPResponse, err := api.ListIPs(&vpcgwSDK.ListIPsRequest{ + listIPResponse, err := api.ListIPs(&v2.ListIPsRequest{ Zone: zone, }, scw.WithAllPages()) if err != nil { @@ -99,7 +98,7 @@ func testSweepVPCPublicGatewayIP(_ string) error { } for _, ip := range listIPResponse.IPs { - err := api.DeleteIP(&vpcgwSDK.DeleteIPRequest{ + err := api.DeleteIP(&v2.DeleteIPRequest{ Zone: zone, IPID: ip.ID, }) diff --git a/internal/services/vpcgw/waiters.go b/internal/services/vpcgw/waiters.go index dc16b19379..c3ec3b8b03 100644 --- a/internal/services/vpcgw/waiters.go +++ b/internal/services/vpcgw/waiters.go @@ -5,6 +5,7 @@ import ( "time" "github.com/scaleway/scaleway-sdk-go/api/vpcgw/v1" + v2 "github.com/scaleway/scaleway-sdk-go/api/vpcgw/v2" "github.com/scaleway/scaleway-sdk-go/scw" "github.com/scaleway/terraform-provider-scaleway/v2/internal/transport" ) @@ -25,6 +26,22 @@ func waitForVPCPublicGateway(ctx context.Context, api *vpcgw.API, zone scw.Zone, return gateway, err } +func waitForVPCPublicGatewayV2(ctx context.Context, api *v2.API, zone scw.Zone, id string, timeout time.Duration) (*v2.Gateway, error) { + retryInterval := defaultRetry + if transport.DefaultWaitRetryInterval != nil { + retryInterval = *transport.DefaultWaitRetryInterval + } + + gateway, err := api.WaitForGateway(&v2.WaitForGatewayRequest{ + Timeout: scw.TimeDurationPtr(timeout), + GatewayID: id, + RetryInterval: &retryInterval, + Zone: zone, + }, scw.WithContext(ctx)) + + return gateway, err +} + func waitForVPCGatewayNetwork(ctx context.Context, api *vpcgw.API, zone scw.Zone, id string, timeout time.Duration) (*vpcgw.GatewayNetwork, error) { retryIntervalGWNetwork := defaultRetry if transport.DefaultWaitRetryInterval != nil { @@ -41,6 +58,22 @@ func waitForVPCGatewayNetwork(ctx context.Context, api *vpcgw.API, zone scw.Zone return gatewayNetwork, err } +func waitForVPCGatewayNetworkV2(ctx context.Context, api *v2.API, zone scw.Zone, id string, timeout time.Duration) (*v2.GatewayNetwork, error) { + retryIntervalGWNetwork := defaultRetry + if transport.DefaultWaitRetryInterval != nil { + retryIntervalGWNetwork = *transport.DefaultWaitRetryInterval + } + + gatewayNetwork, err := api.WaitForGatewayNetwork(&v2.WaitForGatewayNetworkRequest{ + GatewayNetworkID: id, + Timeout: scw.TimeDurationPtr(timeout), + RetryInterval: &retryIntervalGWNetwork, + Zone: zone, + }, scw.WithContext(ctx)) + + return gatewayNetwork, err +} + func waitForDHCPEntries(ctx context.Context, api *vpcgw.API, zone scw.Zone, gatewayID string, macAddress string, timeout time.Duration) (*vpcgw.ListDHCPEntriesResponse, error) { retryIntervalDHCPEntries := defaultRetry if transport.DefaultWaitRetryInterval != nil {