diff --git a/docs/resources/instance_image.md b/docs/resources/instance_image.md index 91009a4e3..f182e78dd 100644 --- a/docs/resources/instance_image.md +++ b/docs/resources/instance_image.md @@ -69,7 +69,7 @@ resource "scaleway_instance_snapshot" "server_snapshot" { resource "scaleway_instance_image" "image" { name = "image_with_extra_volumes" root_volume_id = scaleway_instance_snapshot.server_snapshot.id - additional_volumes = [ + additional_volume_ids = [ scaleway_instance_snapshot.volume_snapshot.id ] } @@ -83,9 +83,6 @@ The following arguments are supported: - `name` - (Optional) The name of the image. If not provided it will be randomly generated. - `architecture` - (Optional, default `x86_64`) The architecture the image is compatible with. Possible values are: `x86_64` or `arm`. - `additional_volume_ids` - (Optional) List of IDs of the snapshots of the additional volumes to be attached to the image. - --> **Important:** For now it is only possible to have 1 additional_volume. - - `tags` - (Optional) A list of tags to apply to the image. - `public` - (Optional) Set to `true` if the image is public. - `zone` - (Defaults to provider `zone`) The [zone](../guides/regions_and_zones.md#zones) in which the image should be created. @@ -104,26 +101,27 @@ In addition to all arguments above, the following attributes are exported: - `from_server_id` - ID of the server the image is based on (in case it is a backup). - `state` - State of the image. Possible values are: `available`, `creating` or `error`. - `organization_id` - The organization ID the image is associated with. +- `root_volume` - The description of the root volume attached to the image. + + -> The `root_volume` block contains : + - `id` - The ID of the volume. + - `name` - The name of the volume. + - `size` - The size of the volume. + - `volume_type` - The type of volume, possible values are `l_ssd` and `sbs_snapshot`. + - `additional_volumes` - The description of the extra volumes attached to the image. -> The `additional_volumes` block contains : - `id` - The ID of the volume. - `name` - The name of the volume. - - `export_uri` - The export URI of the volume. - `size` - The size of the volume. - - `volume_type` - The type of volume, possible values are `l_ssd` and `b_ssd`. - - `creation_date` - Date of the volume creation. - - `modification_date` - Date of volume latest update. - - `organization` - The organization ID the volume is associated with. - - `project` - ID of the project the volume is associated with + - `volume_type` - The type of volume, possible values are `l_ssd` and `sbs_snapshot`. - `tags` - List of tags associated with the volume. - - `state` - State of the volume. - - `zone` - The [zone](../guides/regions_and_zones.md#zones) in which the volume is. - `server` - Description of the server containing the volume (in case the image is a backup from a server). - -> The `server` block contains : - - `id` - ID of the server containing the volume. - - `name` - Name of the server containing the volume. + -> The `server` block contains : + - `id` - ID of the server containing the volume. + - `name` - Name of the server containing the volume. ## Import diff --git a/internal/services/instance/image.go b/internal/services/instance/image.go index 4bbf4de59..b70649481 100644 --- a/internal/services/instance/image.go +++ b/internal/services/instance/image.go @@ -59,7 +59,6 @@ func ResourceImage() *schema.Resource { "additional_volume_ids": { Type: schema.TypeList, Optional: true, - MaxItems: 1, Elem: &schema.Schema{ Type: schema.TypeString, ValidateDiagFunc: verify.IsUUIDorUUIDWithLocality(), @@ -101,7 +100,7 @@ func ResourceImage() *schema.Resource { Computed: true, Description: "The state of the image [ available | creating | error ]", }, - "additional_volumes": { + "root_volume": { Type: schema.TypeList, Computed: true, Description: "Specs of the additional volumes attached to the image", @@ -117,11 +116,6 @@ func ResourceImage() *schema.Resource { Description: "Name of the additional volume", Computed: true, }, - "export_uri": { - Type: schema.TypeString, - Description: "URI of the additional volume", - Computed: true, - }, "size": { Type: schema.TypeInt, Description: "Size of the additional volume", @@ -132,24 +126,33 @@ func ResourceImage() *schema.Resource { Description: "Type of the additional volume", Computed: true, }, - "creation_date": { + }, + }, + }, + "additional_volumes": { + Type: schema.TypeList, + Computed: true, + Description: "Specs of the additional volumes attached to the image", + Elem: &schema.Resource{ + Schema: map[string]*schema.Schema{ + "id": { Type: schema.TypeString, - Description: "Date and time of the creation of the additional volume (RFC3339)", + Description: "UUID of the additional volume", Computed: true, }, - "modification_date": { + "name": { Type: schema.TypeString, - Description: "Date and time of the modification of the additional volume (RFC3339)", + Description: "Name of the additional volume", Computed: true, }, - "organization": { - Type: schema.TypeString, - Description: "Organization ID of the additional volume", + "size": { + Type: schema.TypeInt, + Description: "Size of the additional volume", Computed: true, }, - "project": { + "volume_type": { Type: schema.TypeString, - Description: "Project ID of the additional volume", + Description: "Type of the additional volume", Computed: true, }, "tags": { @@ -160,19 +163,9 @@ func ResourceImage() *schema.Resource { Type: schema.TypeString, }, }, - "state": { - Type: schema.TypeString, - Description: "The state of the additional volume", - Computed: true, - }, - "zone": { - Type: schema.TypeString, - Description: "Zone ID of the additional volume", - Computed: true, - }, "server": { Type: schema.TypeMap, - Description: "Server", + Description: "Server containing the volume (in case the image is a backup from a server)", Computed: true, Elem: &schema.Schema{ Type: schema.TypeString, @@ -262,6 +255,7 @@ func ResourceInstanceImageRead(ctx context.Context, d *schema.ResourceData, m an _ = d.Set("name", image.Image.Name) _ = d.Set("root_volume_id", zonal.NewIDString(image.Image.Zone, image.Image.RootVolume.ID)) _ = d.Set("architecture", image.Image.Arch) + _ = d.Set("root_volume", flattenImageRootVolume(image.Image.RootVolume, zone)) _ = d.Set("additional_volumes", flattenImageExtraVolumes(image.Image.ExtraVolumes, zone)) _ = d.Set("tags", image.Image.Tags) _ = d.Set("public", image.Image.Public) diff --git a/internal/services/instance/image_test.go b/internal/services/instance/image_test.go index 98cbcb447..8cbb82893 100644 --- a/internal/services/instance/image_test.go +++ b/internal/services/instance/image_test.go @@ -130,68 +130,70 @@ func TestAccImage_ExternalBlockVolume(t *testing.T) { { Config: ` resource "scaleway_block_volume" "main" { - size_in_gb = 50 + size_in_gb = 20 iops = 5000 } - - resource "scaleway_block_snapshot" "main" { - volume_id = scaleway_block_volume.main.id - } - `, - }, - { - Config: ` - resource "scaleway_block_volume" "main" { - size_in_gb = 50 - iops = 5000 - } - resource "scaleway_block_volume" "additional1" { - size_in_gb = 50 + size_in_gb = 20 + iops = 15000 + } + resource "scaleway_block_volume" "additional2" { + size_in_gb = 40 iops = 5000 } resource "scaleway_block_snapshot" "main" { volume_id = scaleway_block_volume.main.id } - resource "scaleway_block_snapshot" "additional1" { volume_id = scaleway_block_volume.additional1.id } + resource "scaleway_block_snapshot" "additional2" { + volume_id = scaleway_block_volume.additional2.id + } resource "scaleway_instance_image" "main" { name = "tf-test-image-external-block-volume" root_volume_id = scaleway_block_snapshot.main.id - additional_volume_ids = [scaleway_block_snapshot.additional1.id] + additional_volume_ids = [ + scaleway_block_snapshot.additional1.id, + scaleway_block_snapshot.additional2.id + ] } `, Check: resource.ComposeTestCheckFunc( instancechecks.DoesImageExists(tt, "scaleway_instance_image.main"), resource.TestCheckResourceAttrPair("scaleway_instance_image.main", "root_volume_id", "scaleway_block_snapshot.main", "id"), resource.TestCheckResourceAttr("scaleway_instance_image.main", "architecture", "x86_64"), - resource.TestCheckResourceAttr("scaleway_instance_image.main", "additional_volume_ids.#", "1"), + resource.TestCheckResourceAttr("scaleway_instance_image.main", "additional_volume_ids.#", "2"), resource.TestCheckResourceAttrPair("scaleway_instance_image.main", "additional_volume_ids.0", "scaleway_block_snapshot.additional1", "id"), + resource.TestCheckResourceAttrPair("scaleway_instance_image.main", "additional_volume_ids.1", "scaleway_block_snapshot.additional2", "id"), ), }, { Config: ` resource "scaleway_block_volume" "main" { - size_in_gb = 50 + size_in_gb = 20 iops = 5000 } - resource "scaleway_block_volume" "additional1" { - size_in_gb = 50 + size_in_gb = 20 + iops = 15000 + } + resource "scaleway_block_volume" "additional2" { + size_in_gb = 40 iops = 5000 } resource "scaleway_block_snapshot" "main" { volume_id = scaleway_block_volume.main.id } - resource "scaleway_block_snapshot" "additional1" { volume_id = scaleway_block_volume.additional1.id } + resource "scaleway_block_snapshot" "additional2" { + volume_id = scaleway_block_volume.additional2.id + } resource "scaleway_instance_image" "main" { name = "tf-test-image-external-block-volume" @@ -463,49 +465,40 @@ func TestAccImage_ServerWithLocalVolume(t *testing.T) { volume_type = "l_ssd" } } - resource "scaleway_instance_snapshot" "local01" { - volume_id = scaleway_instance_server.server01.root_volume.0.volume_id - depends_on = [ scaleway_instance_server.server01 ] - } - `, - Check: resource.ComposeTestCheckFunc( - isServerPresent(tt, "scaleway_instance_server.server01"), - isSnapshotPresent(tt, "scaleway_instance_snapshot.local01"), - ), - }, - { - Config: ` - resource "scaleway_instance_server" "server01" { + resource "scaleway_instance_server" "server02" { image = "ubuntu_focal" type = "DEV1-S" root_volume { - size_in_gb = 15 + size_in_gb = 10 volume_type = "l_ssd" } } - resource "scaleway_instance_server" "server02" { + resource "scaleway_instance_server" "server03" { image = "ubuntu_focal" type = "DEV1-S" root_volume { - size_in_gb = 10 + size_in_gb = 20 volume_type = "l_ssd" } } resource "scaleway_instance_snapshot" "local01" { volume_id = scaleway_instance_server.server01.root_volume.0.volume_id - depends_on = [ scaleway_instance_server.server01 ] } resource "scaleway_instance_snapshot" "local02" { volume_id = scaleway_instance_server.server02.root_volume.0.volume_id - depends_on = [ scaleway_instance_server.server02 ] + } + resource "scaleway_instance_snapshot" "local03" { + volume_id = scaleway_instance_server.server03.root_volume.0.volume_id } `, Check: resource.ComposeTestCheckFunc( isServerPresent(tt, "scaleway_instance_server.server01"), isServerPresent(tt, "scaleway_instance_server.server02"), + isServerPresent(tt, "scaleway_instance_server.server03"), isSnapshotPresent(tt, "scaleway_instance_snapshot.local01"), isSnapshotPresent(tt, "scaleway_instance_snapshot.local02"), + isSnapshotPresent(tt, "scaleway_instance_snapshot.local03"), ), }, { @@ -526,35 +519,53 @@ func TestAccImage_ServerWithLocalVolume(t *testing.T) { volume_type = "l_ssd" } } + resource "scaleway_instance_server" "server03" { + image = "ubuntu_focal" + type = "DEV1-S" + root_volume { + size_in_gb = 20 + volume_type = "l_ssd" + } + } resource "scaleway_instance_snapshot" "local01" { + name = "snap01" volume_id = scaleway_instance_server.server01.root_volume.0.volume_id - depends_on = [ scaleway_instance_server.server01 ] } resource "scaleway_instance_snapshot" "local02" { + name = "snap02" volume_id = scaleway_instance_server.server02.root_volume.0.volume_id - depends_on = [ scaleway_instance_server.server02 ] + } + resource "scaleway_instance_snapshot" "local03" { + name = "snap03" + volume_id = scaleway_instance_server.server03.root_volume.0.volume_id } resource "scaleway_instance_image" "main" { root_volume_id = scaleway_instance_snapshot.local01.id - additional_volume_ids = [ scaleway_instance_snapshot.local02.id ] - depends_on = [ - scaleway_instance_snapshot.local01, - scaleway_instance_snapshot.local02, + additional_volume_ids = [ + scaleway_instance_snapshot.local02.id, + scaleway_instance_snapshot.local03.id ] } `, Check: resource.ComposeTestCheckFunc( - isServerPresent(tt, "scaleway_instance_server.server01"), - isServerPresent(tt, "scaleway_instance_server.server02"), isSnapshotPresent(tt, "scaleway_instance_snapshot.local01"), isSnapshotPresent(tt, "scaleway_instance_snapshot.local02"), + isSnapshotPresent(tt, "scaleway_instance_snapshot.local03"), instancechecks.DoesImageExists(tt, "scaleway_instance_image.main"), resource.TestCheckResourceAttrPair("scaleway_instance_image.main", "root_volume_id", "scaleway_instance_snapshot.local01", "id"), + resource.TestCheckResourceAttrPair("scaleway_instance_image.main", "root_volume.0.id", "scaleway_instance_snapshot.local01", "id"), + resource.TestCheckResourceAttr("scaleway_instance_image.main", "root_volume.0.volume_type", "l_ssd"), + resource.TestCheckResourceAttr("scaleway_instance_image.main", "root_volume.0.size", "15000000000"), + resource.TestCheckResourceAttrPair("scaleway_instance_image.main", "additional_volume_ids.0", "scaleway_instance_snapshot.local02", "id"), resource.TestCheckResourceAttrPair("scaleway_instance_image.main", "additional_volumes.0.id", "scaleway_instance_snapshot.local02", "id"), resource.TestCheckResourceAttr("scaleway_instance_image.main", "additional_volumes.0.volume_type", "l_ssd"), resource.TestCheckResourceAttr("scaleway_instance_image.main", "additional_volumes.0.size", "10000000000"), + resource.TestCheckResourceAttrPair("scaleway_instance_image.main", "additional_volume_ids.1", "scaleway_instance_snapshot.local03", "id"), + resource.TestCheckResourceAttrPair("scaleway_instance_image.main", "additional_volumes.1.id", "scaleway_instance_snapshot.local03", "id"), + resource.TestCheckResourceAttr("scaleway_instance_image.main", "additional_volumes.1.volume_type", "l_ssd"), + resource.TestCheckResourceAttr("scaleway_instance_image.main", "additional_volumes.1.size", "20000000000"), ), }, }, diff --git a/internal/services/instance/server.go b/internal/services/instance/server.go index 16b6d3156..7b646f637 100644 --- a/internal/services/instance/server.go +++ b/internal/services/instance/server.go @@ -290,7 +290,7 @@ func ResourceServer() *schema.Resource { Type: schema.TypeMap, Optional: true, Computed: true, - Description: "The user data associated with the server", // TODO: document reserved keys (`cloud-init`) + Description: "The user data associated with the server", Elem: &schema.Schema{ Type: schema.TypeString, }, diff --git a/internal/services/instance/testdata/image-external-block-volume.cassette.yaml b/internal/services/instance/testdata/image-external-block-volume.cassette.yaml index 1e3c158e7..f69a7adf8 100644 --- a/internal/services/instance/testdata/image-external-block-volume.cassette.yaml +++ b/internal/services/instance/testdata/image-external-block-volume.cassette.yaml @@ -6,19 +6,19 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 149 + content_length: 154 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-volume-vibrant-feynman","perf_iops":5000,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","from_empty":{"size":50000000000},"tags":[]}' + body: '{"name":"tf-volume-mystifying-lederberg","perf_iops":5000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","from_empty":{"size":40000000000},"tags":[]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes method: POST response: @@ -27,20 +27,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 422 + content_length: 427 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:33.429059Z","id":"2a8db5f3-9725-4aad-9e39-e25606589910","last_detached_at":null,"name":"tf-volume-vibrant-feynman","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:33.429059Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-09-30T10:20:17.639617Z","id":"d5a3ad21-568c-445d-bb63-4d648a2daa9a","last_detached_at":null,"name":"tf-volume-mystifying-lederberg","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":40000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T10:20:17.639617Z","zone":"fr-par-1"}' headers: Content-Length: - - "422" + - "427" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:33 GMT + - Tue, 30 Sep 2025 10:20:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,48 +48,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ba02b9ce-f788-4c3e-b9c9-5c4b47dfbf94 + - b917790b-5e1c-49c4-8da4-d91cd09cb826 status: 200 OK code: 200 - duration: 231.881524ms + duration: 182.328351ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 149 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-volume-vigorous-payne","perf_iops":15000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","from_empty":{"size":20000000000},"tags":[]}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a8db5f3-9725-4aad-9e39-e25606589910 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 422 + content_length: 423 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:33.429059Z","id":"2a8db5f3-9725-4aad-9e39-e25606589910","last_detached_at":null,"name":"tf-volume-vibrant-feynman","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:33.429059Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-09-30T10:20:17.642536Z","id":"f38ab82b-dbda-4f5d-b95d-e88e39876af5","last_detached_at":null,"name":"tf-volume-vigorous-payne","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"creating","tags":[],"type":"sbs_15k","updated_at":"2025-09-30T10:20:17.642536Z","zone":"fr-par-1"}' headers: Content-Length: - - "422" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:33 GMT + - Tue, 30 Sep 2025 10:20:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +99,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6436f384-0f88-408e-ab19-d6279d78fc93 + - 3236b216-e3b8-4e96-8b50-766212ab3f16 status: 200 OK code: 200 - duration: 73.707142ms + duration: 221.317808ms - id: 2 request: proto: HTTP/1.1 @@ -116,8 +118,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a8db5f3-9725-4aad-9e39-e25606589910 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d5a3ad21-568c-445d-bb63-4d648a2daa9a method: GET response: proto: HTTP/2.0 @@ -125,20 +127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 427 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:33.429059Z","id":"2a8db5f3-9725-4aad-9e39-e25606589910","last_detached_at":null,"name":"tf-volume-vibrant-feynman","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:33.429059Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-09-30T10:20:17.639617Z","id":"d5a3ad21-568c-445d-bb63-4d648a2daa9a","last_detached_at":null,"name":"tf-volume-mystifying-lederberg","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":40000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T10:20:17.639617Z","zone":"fr-par-1"}' headers: Content-Length: - - "423" + - "427" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:38 GMT + - Tue, 30 Sep 2025 10:20:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,48 +148,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 930bdde0-dc32-4d45-99b9-f136cdf32f98 + - aca6dd52-e248-42b8-97d0-684fb95ffdf6 status: 200 OK code: 200 - duration: 82.274449ms + duration: 53.302566ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 151 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-volume-upbeat-tereshkova","perf_iops":5000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","from_empty":{"size":20000000000},"tags":[]}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a8db5f3-9725-4aad-9e39-e25606589910 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 424 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:33.429059Z","id":"2a8db5f3-9725-4aad-9e39-e25606589910","last_detached_at":null,"name":"tf-volume-vibrant-feynman","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:33.429059Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-09-30T10:20:17.658670Z","id":"99bf9077-ec68-49cb-a058-ad4be0b839e9","last_detached_at":null,"name":"tf-volume-upbeat-tereshkova","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T10:20:17.658670Z","zone":"fr-par-1"}' headers: Content-Length: - - "423" + - "424" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:38 GMT + - Tue, 30 Sep 2025 10:20:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -195,50 +199,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6bb0b11d-c282-415b-9855-3f62e9cfb606 + - 3660906b-0b41-4283-9c14-33de2e26d63c status: 200 OK code: 200 - duration: 117.677144ms + duration: 256.281446ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 146 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"volume_id":"2a8db5f3-9725-4aad-9e39-e25606589910","name":"tf-snapshot-busy-noyce","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.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/99bf9077-ec68-49cb-a058-ad4be0b839e9 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 460 + content_length: 424 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:30:38.980368Z","id":"2af93bd3-c57b-4500-b813-4bfbc33e62b4","name":"tf-snapshot-busy-noyce","parent_volume":{"id":"2a8db5f3-9725-4aad-9e39-e25606589910","name":"tf-volume-vibrant-feynman","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"status":"creating","tags":[],"updated_at":"2025-06-10T15:30:38.980368Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-09-30T10:20:17.658670Z","id":"99bf9077-ec68-49cb-a058-ad4be0b839e9","last_detached_at":null,"name":"tf-volume-upbeat-tereshkova","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T10:20:17.658670Z","zone":"fr-par-1"}' headers: Content-Length: - - "460" + - "424" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:39 GMT + - Tue, 30 Sep 2025 10:20:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -246,10 +248,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 77298b3b-7b55-4142-b28a-a3213b733ef2 + - e46e64b0-9b6c-40a9-8ccc-f13eb089095b status: 200 OK code: 200 - duration: 370.159803ms + duration: 59.20616ms - id: 5 request: proto: HTTP/1.1 @@ -265,8 +267,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/2af93bd3-c57b-4500-b813-4bfbc33e62b4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d5a3ad21-568c-445d-bb63-4d648a2daa9a method: GET response: proto: HTTP/2.0 @@ -274,20 +276,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 460 + content_length: 428 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:30:38.980368Z","id":"2af93bd3-c57b-4500-b813-4bfbc33e62b4","name":"tf-snapshot-busy-noyce","parent_volume":{"id":"2a8db5f3-9725-4aad-9e39-e25606589910","name":"tf-volume-vibrant-feynman","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"status":"creating","tags":[],"updated_at":"2025-06-10T15:30:38.980368Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-09-30T10:20:17.639617Z","id":"d5a3ad21-568c-445d-bb63-4d648a2daa9a","last_detached_at":null,"name":"tf-volume-mystifying-lederberg","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":40000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T10:20:17.639617Z","zone":"fr-par-1"}' headers: Content-Length: - - "460" + - "428" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:39 GMT + - Tue, 30 Sep 2025 10:20:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -295,10 +297,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f0bdeac6-76a8-4a4a-bfa1-a6eaf59bb43d + - c67fa9a5-ae45-46f9-80bf-a48a74474007 status: 200 OK code: 200 - duration: 643.715001ms + duration: 43.473484ms - id: 6 request: proto: HTTP/1.1 @@ -314,8 +316,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/2af93bd3-c57b-4500-b813-4bfbc33e62b4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f38ab82b-dbda-4f5d-b95d-e88e39876af5 method: GET response: proto: HTTP/2.0 @@ -323,20 +325,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 461 + content_length: 424 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:30:38.980368Z","id":"2af93bd3-c57b-4500-b813-4bfbc33e62b4","name":"tf-snapshot-busy-noyce","parent_volume":{"id":"2a8db5f3-9725-4aad-9e39-e25606589910","name":"tf-volume-vibrant-feynman","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-06-10T15:30:38.980368Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-09-30T10:20:17.642536Z","id":"f38ab82b-dbda-4f5d-b95d-e88e39876af5","last_detached_at":null,"name":"tf-volume-vigorous-payne","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-09-30T10:20:17.642536Z","zone":"fr-par-1"}' headers: Content-Length: - - "461" + - "424" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:45 GMT + - Tue, 30 Sep 2025 10:20:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -344,10 +346,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - db23108b-84e5-40cb-8542-d87095dad1a7 + - 8d592c37-7c8e-4e41-9b5e-27ebc36a0f42 status: 200 OK code: 200 - duration: 235.824528ms + duration: 31.797295ms - id: 7 request: proto: HTTP/1.1 @@ -363,8 +365,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/2af93bd3-c57b-4500-b813-4bfbc33e62b4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d5a3ad21-568c-445d-bb63-4d648a2daa9a method: GET response: proto: HTTP/2.0 @@ -372,20 +374,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 461 + content_length: 428 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:30:38.980368Z","id":"2af93bd3-c57b-4500-b813-4bfbc33e62b4","name":"tf-snapshot-busy-noyce","parent_volume":{"id":"2a8db5f3-9725-4aad-9e39-e25606589910","name":"tf-volume-vibrant-feynman","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-06-10T15:30:38.980368Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-09-30T10:20:17.639617Z","id":"d5a3ad21-568c-445d-bb63-4d648a2daa9a","last_detached_at":null,"name":"tf-volume-mystifying-lederberg","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":40000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T10:20:17.639617Z","zone":"fr-par-1"}' headers: Content-Length: - - "461" + - "428" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:45 GMT + - Tue, 30 Sep 2025 10:20:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -393,10 +395,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fd2b1f51-4c9c-400a-ad26-29f26f6cbc06 + - cca3bc36-3a97-45ae-a6a4-7177e1b17bcf status: 200 OK code: 200 - duration: 210.331899ms + duration: 41.13848ms - id: 8 request: proto: HTTP/1.1 @@ -412,8 +414,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a8db5f3-9725-4aad-9e39-e25606589910 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f38ab82b-dbda-4f5d-b95d-e88e39876af5 method: GET response: proto: HTTP/2.0 @@ -421,20 +423,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 424 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:33.429059Z","id":"2a8db5f3-9725-4aad-9e39-e25606589910","last_detached_at":null,"name":"tf-volume-vibrant-feynman","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:33.429059Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-09-30T10:20:17.642536Z","id":"f38ab82b-dbda-4f5d-b95d-e88e39876af5","last_detached_at":null,"name":"tf-volume-vigorous-payne","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-09-30T10:20:17.642536Z","zone":"fr-par-1"}' headers: Content-Length: - - "423" + - "424" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:46 GMT + - Tue, 30 Sep 2025 10:20:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -442,10 +444,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8fa6d4be-3d58-43d0-871d-64c7b75c9add + - 92f59f87-7503-4d86-b7e0-9b50cd5ec055 status: 200 OK code: 200 - duration: 76.478719ms + duration: 37.406023ms - id: 9 request: proto: HTTP/1.1 @@ -461,8 +463,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/2af93bd3-c57b-4500-b813-4bfbc33e62b4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/99bf9077-ec68-49cb-a058-ad4be0b839e9 method: GET response: proto: HTTP/2.0 @@ -470,20 +472,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 461 + content_length: 425 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:30:38.980368Z","id":"2af93bd3-c57b-4500-b813-4bfbc33e62b4","name":"tf-snapshot-busy-noyce","parent_volume":{"id":"2a8db5f3-9725-4aad-9e39-e25606589910","name":"tf-volume-vibrant-feynman","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-06-10T15:30:38.980368Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-09-30T10:20:17.658670Z","id":"99bf9077-ec68-49cb-a058-ad4be0b839e9","last_detached_at":null,"name":"tf-volume-upbeat-tereshkova","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T10:20:17.658670Z","zone":"fr-par-1"}' headers: Content-Length: - - "461" + - "425" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:46 GMT + - Tue, 30 Sep 2025 10:20:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -491,10 +493,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 230441a1-2b12-4a09-9a84-9c8525d0c315 + - 38869a28-9588-495c-8e1f-d82cd1dd76be status: 200 OK code: 200 - duration: 216.964478ms + duration: 43.244945ms - id: 10 request: proto: HTTP/1.1 @@ -510,8 +512,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a8db5f3-9725-4aad-9e39-e25606589910 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/99bf9077-ec68-49cb-a058-ad4be0b839e9 method: GET response: proto: HTTP/2.0 @@ -519,20 +521,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 425 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:33.429059Z","id":"2a8db5f3-9725-4aad-9e39-e25606589910","last_detached_at":null,"name":"tf-volume-vibrant-feynman","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:33.429059Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-09-30T10:20:17.658670Z","id":"99bf9077-ec68-49cb-a058-ad4be0b839e9","last_detached_at":null,"name":"tf-volume-upbeat-tereshkova","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T10:20:17.658670Z","zone":"fr-par-1"}' headers: Content-Length: - - "423" + - "425" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:48 GMT + - Tue, 30 Sep 2025 10:20:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -540,48 +542,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9efe635f-ed57-44c3-b188-bb6631793123 + - a83cfa56-89dd-4d1c-9e04-1e2946fe3aac status: 200 OK code: 200 - duration: 97.976787ms + duration: 47.14668ms - id: 11 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 150 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"volume_id":"f38ab82b-dbda-4f5d-b95d-e88e39876af5","name":"tf-snapshot-jolly-franklin","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[]}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/2af93bd3-c57b-4500-b813-4bfbc33e62b4 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 461 + content_length: 464 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:30:38.980368Z","id":"2af93bd3-c57b-4500-b813-4bfbc33e62b4","name":"tf-snapshot-busy-noyce","parent_volume":{"id":"2a8db5f3-9725-4aad-9e39-e25606589910","name":"tf-volume-vibrant-feynman","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-06-10T15:30:38.980368Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-09-30T10:20:22.957357Z","id":"77efe3fe-191b-4ac2-be81-a1bd5adee76b","name":"tf-snapshot-jolly-franklin","parent_volume":{"id":"f38ab82b-dbda-4f5d-b95d-e88e39876af5","name":"tf-volume-vigorous-payne","status":"available","type":"sbs_15k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":20000000000,"status":"creating","tags":[],"updated_at":"2025-09-30T10:20:22.957357Z","zone":"fr-par-1"}' headers: Content-Length: - - "461" + - "464" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:48 GMT + - Tue, 30 Sep 2025 10:20:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -589,29 +593,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a665becd-4f59-45f1-801f-31ea47266fc0 + - e8a935f4-6fc0-4bcd-95bb-8970c2476cf8 status: 200 OK code: 200 - duration: 153.952594ms + duration: 302.296801ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 146 + content_length: 157 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-volume-epic-feistel","perf_iops":5000,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","from_empty":{"size":50000000000},"tags":[]}' + body: '{"volume_id":"d5a3ad21-568c-445d-bb63-4d648a2daa9a","name":"tf-snapshot-elegant-chandrasekhar","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots method: POST response: proto: HTTP/2.0 @@ -619,20 +623,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 419 + content_length: 476 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:49.328301Z","id":"f911b2cc-70ae-44ed-ada3-28b9c872472e","last_detached_at":null,"name":"tf-volume-epic-feistel","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:49.328301Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-09-30T10:20:22.952187Z","id":"175c6d5a-9c7d-4e4c-94b1-912123f0c17e","name":"tf-snapshot-elegant-chandrasekhar","parent_volume":{"id":"d5a3ad21-568c-445d-bb63-4d648a2daa9a","name":"tf-volume-mystifying-lederberg","status":"available","type":"sbs_5k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":40000000000,"status":"creating","tags":[],"updated_at":"2025-09-30T10:20:22.952187Z","zone":"fr-par-1"}' headers: Content-Length: - - "419" + - "476" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:49 GMT + - Tue, 30 Sep 2025 10:20:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -640,48 +644,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ab191f78-ae1f-44f8-9274-f8f929f42c14 + - a6483670-c2b6-421a-9f4c-332d64d286f3 status: 200 OK code: 200 - duration: 211.184077ms + duration: 302.529227ms - id: 13 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 154 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"volume_id":"99bf9077-ec68-49cb-a058-ad4be0b839e9","name":"tf-snapshot-suspicious-swanson","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[]}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f911b2cc-70ae-44ed-ada3-28b9c872472e - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 420 + content_length: 470 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:49.328301Z","id":"f911b2cc-70ae-44ed-ada3-28b9c872472e","last_detached_at":null,"name":"tf-volume-epic-feistel","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:49.328301Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-09-30T10:20:23.026551Z","id":"758d1347-1273-448a-9b06-199f9d05531b","name":"tf-snapshot-suspicious-swanson","parent_volume":{"id":"99bf9077-ec68-49cb-a058-ad4be0b839e9","name":"tf-volume-upbeat-tereshkova","status":"available","type":"sbs_5k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":20000000000,"status":"creating","tags":[],"updated_at":"2025-09-30T10:20:23.026551Z","zone":"fr-par-1"}' headers: Content-Length: - - "420" + - "470" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:49 GMT + - Tue, 30 Sep 2025 10:20:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -689,10 +695,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c2c5fa5b-5a70-47f4-8a62-ae92ff1706fc + - 74030788-dd8e-4a5c-9104-d631b9996357 status: 200 OK code: 200 - duration: 83.67753ms + duration: 225.545353ms - id: 14 request: proto: HTTP/1.1 @@ -708,8 +714,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f911b2cc-70ae-44ed-ada3-28b9c872472e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/175c6d5a-9c7d-4e4c-94b1-912123f0c17e method: GET response: proto: HTTP/2.0 @@ -717,20 +723,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 420 + content_length: 476 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:49.328301Z","id":"f911b2cc-70ae-44ed-ada3-28b9c872472e","last_detached_at":null,"name":"tf-volume-epic-feistel","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:49.328301Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-09-30T10:20:22.952187Z","id":"175c6d5a-9c7d-4e4c-94b1-912123f0c17e","name":"tf-snapshot-elegant-chandrasekhar","parent_volume":{"id":"d5a3ad21-568c-445d-bb63-4d648a2daa9a","name":"tf-volume-mystifying-lederberg","status":"available","type":"sbs_5k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":40000000000,"status":"creating","tags":[],"updated_at":"2025-09-30T10:20:22.952187Z","zone":"fr-par-1"}' headers: Content-Length: - - "420" + - "476" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:49 GMT + - Tue, 30 Sep 2025 10:20:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -738,50 +744,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e6b6c6dc-ff8f-41cd-af12-69f6256e9d5a + - 5c0c5390-b85f-4c0a-b79a-e040854b34a9 status: 200 OK code: 200 - duration: 78.112844ms + duration: 100.311318ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 148 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"volume_id":"f911b2cc-70ae-44ed-ada3-28b9c872472e","name":"tf-snapshot-stupefied-wu","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.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/175c6d5a-9c7d-4e4c-94b1-912123f0c17e + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 459 + content_length: 477 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:30:49.794288Z","id":"f8e67974-0af5-4b33-8078-43dc1852408e","name":"tf-snapshot-stupefied-wu","parent_volume":{"id":"f911b2cc-70ae-44ed-ada3-28b9c872472e","name":"tf-volume-epic-feistel","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"status":"creating","tags":[],"updated_at":"2025-06-10T15:30:49.794288Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-09-30T10:20:22.952187Z","id":"175c6d5a-9c7d-4e4c-94b1-912123f0c17e","name":"tf-snapshot-elegant-chandrasekhar","parent_volume":{"id":"d5a3ad21-568c-445d-bb63-4d648a2daa9a","name":"tf-volume-mystifying-lederberg","status":"available","type":"sbs_5k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":40000000000,"status":"available","tags":[],"updated_at":"2025-09-30T10:20:22.952187Z","zone":"fr-par-1"}' headers: Content-Length: - - "459" + - "477" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:49 GMT + - Tue, 30 Sep 2025 10:20:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -789,10 +793,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d6ff0506-62be-4ffd-882d-0b9a9ee89cf1 + - 0de66845-1db5-4e90-9acd-11c55aa87068 status: 200 OK code: 200 - duration: 351.353332ms + duration: 207.935593ms - id: 16 request: proto: HTTP/1.1 @@ -808,8 +812,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f8e67974-0af5-4b33-8078-43dc1852408e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/758d1347-1273-448a-9b06-199f9d05531b method: GET response: proto: HTTP/2.0 @@ -817,20 +821,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 459 + content_length: 471 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:30:49.794288Z","id":"f8e67974-0af5-4b33-8078-43dc1852408e","name":"tf-snapshot-stupefied-wu","parent_volume":{"id":"f911b2cc-70ae-44ed-ada3-28b9c872472e","name":"tf-volume-epic-feistel","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"status":"creating","tags":[],"updated_at":"2025-06-10T15:30:49.794288Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-09-30T10:20:23.026551Z","id":"758d1347-1273-448a-9b06-199f9d05531b","name":"tf-snapshot-suspicious-swanson","parent_volume":{"id":"99bf9077-ec68-49cb-a058-ad4be0b839e9","name":"tf-volume-upbeat-tereshkova","status":"available","type":"sbs_5k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":20000000000,"status":"available","tags":[],"updated_at":"2025-09-30T10:20:23.026551Z","zone":"fr-par-1"}' headers: Content-Length: - - "459" + - "471" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:50 GMT + - Tue, 30 Sep 2025 10:20:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -838,10 +842,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c1abcd14-48fe-4eb1-84bf-c34bbef607fc + - ef488194-d2ea-4975-8636-0450c34f297d status: 200 OK code: 200 - duration: 343.833769ms + duration: 188.697978ms - id: 17 request: proto: HTTP/1.1 @@ -857,8 +861,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f8e67974-0af5-4b33-8078-43dc1852408e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/77efe3fe-191b-4ac2-be81-a1bd5adee76b method: GET response: proto: HTTP/2.0 @@ -866,20 +870,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 460 + content_length: 465 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:30:49.794288Z","id":"f8e67974-0af5-4b33-8078-43dc1852408e","name":"tf-snapshot-stupefied-wu","parent_volume":{"id":"f911b2cc-70ae-44ed-ada3-28b9c872472e","name":"tf-volume-epic-feistel","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-06-10T15:30:49.794288Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-09-30T10:20:22.957357Z","id":"77efe3fe-191b-4ac2-be81-a1bd5adee76b","name":"tf-snapshot-jolly-franklin","parent_volume":{"id":"f38ab82b-dbda-4f5d-b95d-e88e39876af5","name":"tf-volume-vigorous-payne","status":"available","type":"sbs_15k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":20000000000,"status":"available","tags":[],"updated_at":"2025-09-30T10:20:22.957357Z","zone":"fr-par-1"}' headers: Content-Length: - - "460" + - "465" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:55 GMT + - Tue, 30 Sep 2025 10:20:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -887,10 +891,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1a2d472c-1d81-426d-b22a-1f176a1b42b7 + - 02f5eb65-2131-4b8b-acf0-c677496440f9 status: 200 OK code: 200 - duration: 175.008092ms + duration: 188.573434ms - id: 18 request: proto: HTTP/1.1 @@ -906,8 +910,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f8e67974-0af5-4b33-8078-43dc1852408e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/77efe3fe-191b-4ac2-be81-a1bd5adee76b method: GET response: proto: HTTP/2.0 @@ -915,20 +919,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 460 + content_length: 465 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:30:49.794288Z","id":"f8e67974-0af5-4b33-8078-43dc1852408e","name":"tf-snapshot-stupefied-wu","parent_volume":{"id":"f911b2cc-70ae-44ed-ada3-28b9c872472e","name":"tf-volume-epic-feistel","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-06-10T15:30:49.794288Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-09-30T10:20:22.957357Z","id":"77efe3fe-191b-4ac2-be81-a1bd5adee76b","name":"tf-snapshot-jolly-franklin","parent_volume":{"id":"f38ab82b-dbda-4f5d-b95d-e88e39876af5","name":"tf-volume-vigorous-payne","status":"available","type":"sbs_15k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":20000000000,"status":"available","tags":[],"updated_at":"2025-09-30T10:20:22.957357Z","zone":"fr-par-1"}' headers: Content-Length: - - "460" + - "465" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:55 GMT + - Tue, 30 Sep 2025 10:20:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -936,52 +940,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c4630424-72ae-49f7-9ba7-bf6ac2309b44 + - 708992ce-6f5d-44cf-babb-74b36711daa5 status: 200 OK code: 200 - duration: 148.69806ms + duration: 95.857666ms - id: 19 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 247 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-test-image-external-block-volume","root_volume":"2af93bd3-c57b-4500-b813-4bfbc33e62b4","arch":"x86_64","extra_volumes":{"1":{"id":"f8e67974-0af5-4b33-8078-43dc1852408e"}},"project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/758d1347-1273-448a-9b06-199f9d05531b + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 700 + content_length: 471 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-06-10T15:30:55.813266+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"f8e67974-0af5-4b33-8078-43dc1852408e","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"353dbc9e-b6ac-4fb3-9c7f-13e308286d76","modification_date":"2025-06-10T15:30:55.813266+00:00","name":"tf-test-image-external-block-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"2af93bd3-c57b-4500-b813-4bfbc33e62b4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"class":"sbs","created_at":"2025-09-30T10:20:23.026551Z","id":"758d1347-1273-448a-9b06-199f9d05531b","name":"tf-snapshot-suspicious-swanson","parent_volume":{"id":"99bf9077-ec68-49cb-a058-ad4be0b839e9","name":"tf-volume-upbeat-tereshkova","status":"available","type":"sbs_5k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":20000000000,"status":"available","tags":[],"updated_at":"2025-09-30T10:20:23.026551Z","zone":"fr-par-1"}' headers: Content-Length: - - "700" + - "471" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:56 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/images/353dbc9e-b6ac-4fb3-9c7f-13e308286d76 + - Tue, 30 Sep 2025 10:20:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -989,10 +989,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 63c82793-519f-4ff7-8a75-9ff22e4ff50f - status: 201 Created - code: 201 - duration: 644.275199ms + - d54a04f6-04b0-4193-8638-9ade2391b882 + status: 200 OK + code: 200 + duration: 123.225264ms - 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.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/353dbc9e-b6ac-4fb3-9c7f-13e308286d76 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/175c6d5a-9c7d-4e4c-94b1-912123f0c17e method: GET response: proto: HTTP/2.0 @@ -1017,20 +1017,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 700 + content_length: 477 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-06-10T15:30:55.813266+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"f8e67974-0af5-4b33-8078-43dc1852408e","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"353dbc9e-b6ac-4fb3-9c7f-13e308286d76","modification_date":"2025-06-10T15:30:55.813266+00:00","name":"tf-test-image-external-block-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"2af93bd3-c57b-4500-b813-4bfbc33e62b4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"class":"sbs","created_at":"2025-09-30T10:20:22.952187Z","id":"175c6d5a-9c7d-4e4c-94b1-912123f0c17e","name":"tf-snapshot-elegant-chandrasekhar","parent_volume":{"id":"d5a3ad21-568c-445d-bb63-4d648a2daa9a","name":"tf-volume-mystifying-lederberg","status":"available","type":"sbs_5k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":40000000000,"status":"available","tags":[],"updated_at":"2025-09-30T10:20:22.952187Z","zone":"fr-par-1"}' headers: Content-Length: - - "700" + - "477" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:56 GMT + - Tue, 30 Sep 2025 10:20:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1038,48 +1038,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac5b1b39-e320-4828-b7de-07b350c325c9 + - 1823e5c5-938c-4843-b09b-29577f967c4f status: 200 OK code: 200 - duration: 168.541975ms + duration: 124.617999ms - id: 21 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 297 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-test-image-external-block-volume","root_volume":"758d1347-1273-448a-9b06-199f9d05531b","arch":"x86_64","extra_volumes":{"1":{"id":"77efe3fe-191b-4ac2-be81-a1bd5adee76b"},"2":{"id":"175c6d5a-9c7d-4e4c-94b1-912123f0c17e"}},"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","public":false}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/353dbc9e-b6ac-4fb3-9c7f-13e308286d76 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 700 + content_length: 807 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-06-10T15:30:55.813266+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"f8e67974-0af5-4b33-8078-43dc1852408e","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"353dbc9e-b6ac-4fb3-9c7f-13e308286d76","modification_date":"2025-06-10T15:30:55.813266+00:00","name":"tf-test-image-external-block-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"2af93bd3-c57b-4500-b813-4bfbc33e62b4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-09-30T10:20:28.702643+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"77efe3fe-191b-4ac2-be81-a1bd5adee76b","name":"","size":0,"volume_type":"sbs_snapshot"},"2":{"id":"175c6d5a-9c7d-4e4c-94b1-912123f0c17e","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"38b7ff1a-575a-4c05-b806-1ba96c5c0e3d","modification_date":"2025-09-30T10:20:28.702643+00:00","name":"tf-test-image-external-block-volume","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","public":false,"root_volume":{"id":"758d1347-1273-448a-9b06-199f9d05531b","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "700" + - "807" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:56 GMT + - Tue, 30 Sep 2025 10:20:29 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/images/38b7ff1a-575a-4c05-b806-1ba96c5c0e3d Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1087,10 +1091,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ba520c8a-5c00-4267-b848-4df93258b50e - status: 200 OK - code: 200 - duration: 117.565513ms + - bc44016d-f283-4fa6-aa8a-0febf73680ba + status: 201 Created + code: 201 + duration: 545.572157ms - id: 22 request: proto: HTTP/1.1 @@ -1106,8 +1110,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/353dbc9e-b6ac-4fb3-9c7f-13e308286d76 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/38b7ff1a-575a-4c05-b806-1ba96c5c0e3d method: GET response: proto: HTTP/2.0 @@ -1115,20 +1119,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 700 + content_length: 807 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-06-10T15:30:55.813266+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"f8e67974-0af5-4b33-8078-43dc1852408e","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"353dbc9e-b6ac-4fb3-9c7f-13e308286d76","modification_date":"2025-06-10T15:30:55.813266+00:00","name":"tf-test-image-external-block-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"2af93bd3-c57b-4500-b813-4bfbc33e62b4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-09-30T10:20:28.702643+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"77efe3fe-191b-4ac2-be81-a1bd5adee76b","name":"","size":0,"volume_type":"sbs_snapshot"},"2":{"id":"175c6d5a-9c7d-4e4c-94b1-912123f0c17e","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"38b7ff1a-575a-4c05-b806-1ba96c5c0e3d","modification_date":"2025-09-30T10:20:28.702643+00:00","name":"tf-test-image-external-block-volume","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","public":false,"root_volume":{"id":"758d1347-1273-448a-9b06-199f9d05531b","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "700" + - "807" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:56 GMT + - Tue, 30 Sep 2025 10:20:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1136,10 +1140,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c6dea4e-3c6e-4dd6-b872-5127ed6bc246 + - d000ae29-bbb2-4fbf-a6f9-f891bbe39b93 status: 200 OK code: 200 - duration: 117.946859ms + duration: 100.731586ms - id: 23 request: proto: HTTP/1.1 @@ -1155,8 +1159,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a8db5f3-9725-4aad-9e39-e25606589910 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/38b7ff1a-575a-4c05-b806-1ba96c5c0e3d method: GET response: proto: HTTP/2.0 @@ -1164,20 +1168,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 807 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:33.429059Z","id":"2a8db5f3-9725-4aad-9e39-e25606589910","last_detached_at":null,"name":"tf-volume-vibrant-feynman","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:33.429059Z","zone":"fr-par-1"}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-09-30T10:20:28.702643+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"77efe3fe-191b-4ac2-be81-a1bd5adee76b","name":"","size":0,"volume_type":"sbs_snapshot"},"2":{"id":"175c6d5a-9c7d-4e4c-94b1-912123f0c17e","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"38b7ff1a-575a-4c05-b806-1ba96c5c0e3d","modification_date":"2025-09-30T10:20:28.702643+00:00","name":"tf-test-image-external-block-volume","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","public":false,"root_volume":{"id":"758d1347-1273-448a-9b06-199f9d05531b","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "423" + - "807" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:57 GMT + - Tue, 30 Sep 2025 10:20:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1185,10 +1189,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b950b64-a204-4af3-9456-e2f0ea317aec + - 8739cab1-2532-4fe6-8e61-e7e070861355 status: 200 OK code: 200 - duration: 78.504968ms + duration: 115.834069ms - id: 24 request: proto: HTTP/1.1 @@ -1204,8 +1208,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f911b2cc-70ae-44ed-ada3-28b9c872472e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/38b7ff1a-575a-4c05-b806-1ba96c5c0e3d method: GET response: proto: HTTP/2.0 @@ -1213,20 +1217,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 420 + content_length: 807 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:49.328301Z","id":"f911b2cc-70ae-44ed-ada3-28b9c872472e","last_detached_at":null,"name":"tf-volume-epic-feistel","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:49.328301Z","zone":"fr-par-1"}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-09-30T10:20:28.702643+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"77efe3fe-191b-4ac2-be81-a1bd5adee76b","name":"","size":0,"volume_type":"sbs_snapshot"},"2":{"id":"175c6d5a-9c7d-4e4c-94b1-912123f0c17e","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"38b7ff1a-575a-4c05-b806-1ba96c5c0e3d","modification_date":"2025-09-30T10:20:28.702643+00:00","name":"tf-test-image-external-block-volume","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","public":false,"root_volume":{"id":"758d1347-1273-448a-9b06-199f9d05531b","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "420" + - "807" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:57 GMT + - Tue, 30 Sep 2025 10:20:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1234,10 +1238,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4e365fa0-5fca-4a29-b872-f8231aa85313 + - 4dbe9280-26c3-4e5c-a319-3dddd319eead status: 200 OK code: 200 - duration: 107.14444ms + duration: 91.047045ms - id: 25 request: proto: HTTP/1.1 @@ -1253,8 +1257,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/2af93bd3-c57b-4500-b813-4bfbc33e62b4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f38ab82b-dbda-4f5d-b95d-e88e39876af5 method: GET response: proto: HTTP/2.0 @@ -1262,20 +1266,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 687 + content_length: 424 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:30:38.980368Z","id":"2af93bd3-c57b-4500-b813-4bfbc33e62b4","name":"tf-snapshot-busy-noyce","parent_volume":{"id":"2a8db5f3-9725-4aad-9e39-e25606589910","name":"tf-volume-vibrant-feynman","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:55.863225Z","id":"882a015b-42de-4edf-a6ed-dfe090f7b070","product_resource_id":"353dbc9e-b6ac-4fb3-9c7f-13e308286d76","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":50000000000,"status":"in_use","tags":[],"updated_at":"2025-06-10T15:30:55.863225Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-09-30T10:20:17.642536Z","id":"f38ab82b-dbda-4f5d-b95d-e88e39876af5","last_detached_at":null,"name":"tf-volume-vigorous-payne","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-09-30T10:20:17.642536Z","zone":"fr-par-1"}' headers: Content-Length: - - "687" + - "424" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:57 GMT + - Tue, 30 Sep 2025 10:20:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1283,10 +1287,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 70964d90-85bc-4950-a1d6-55d4d5e20493 + - d8ec38eb-35da-4099-a55a-b73ae92ca75d status: 200 OK code: 200 - duration: 212.561419ms + duration: 47.857324ms - id: 26 request: proto: HTTP/1.1 @@ -1302,8 +1306,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f8e67974-0af5-4b33-8078-43dc1852408e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d5a3ad21-568c-445d-bb63-4d648a2daa9a method: GET response: proto: HTTP/2.0 @@ -1311,20 +1315,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 428 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:30:49.794288Z","id":"f8e67974-0af5-4b33-8078-43dc1852408e","name":"tf-snapshot-stupefied-wu","parent_volume":{"id":"f911b2cc-70ae-44ed-ada3-28b9c872472e","name":"tf-volume-epic-feistel","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:56.008019Z","id":"73683da9-67ce-4aec-a19d-1d4e4e62a192","product_resource_id":"353dbc9e-b6ac-4fb3-9c7f-13e308286d76","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":50000000000,"status":"in_use","tags":[],"updated_at":"2025-06-10T15:30:56.008019Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-09-30T10:20:17.639617Z","id":"d5a3ad21-568c-445d-bb63-4d648a2daa9a","last_detached_at":null,"name":"tf-volume-mystifying-lederberg","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":40000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T10:20:17.639617Z","zone":"fr-par-1"}' headers: Content-Length: - - "686" + - "428" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:57 GMT + - Tue, 30 Sep 2025 10:20:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1332,10 +1336,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 73e63318-f24e-45fe-b421-98ca7027a9c1 + - d7ee2a33-f567-468d-a548-aeaeff43741d status: 200 OK code: 200 - duration: 225.115703ms + duration: 49.030406ms - id: 27 request: proto: HTTP/1.1 @@ -1351,8 +1355,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/353dbc9e-b6ac-4fb3-9c7f-13e308286d76 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/99bf9077-ec68-49cb-a058-ad4be0b839e9 method: GET response: proto: HTTP/2.0 @@ -1360,20 +1364,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 700 + content_length: 425 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-06-10T15:30:55.813266+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"f8e67974-0af5-4b33-8078-43dc1852408e","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"353dbc9e-b6ac-4fb3-9c7f-13e308286d76","modification_date":"2025-06-10T15:30:55.813266+00:00","name":"tf-test-image-external-block-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"2af93bd3-c57b-4500-b813-4bfbc33e62b4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"created_at":"2025-09-30T10:20:17.658670Z","id":"99bf9077-ec68-49cb-a058-ad4be0b839e9","last_detached_at":null,"name":"tf-volume-upbeat-tereshkova","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T10:20:17.658670Z","zone":"fr-par-1"}' headers: Content-Length: - - "700" + - "425" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:58 GMT + - Tue, 30 Sep 2025 10:20:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1381,10 +1385,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7229b9eb-4df1-4e7d-aec0-3930f035084b + - 73177d2a-a3c6-4cce-9b3e-ce586d17f27f status: 200 OK code: 200 - duration: 151.091758ms + duration: 52.152888ms - id: 28 request: proto: HTTP/1.1 @@ -1400,8 +1404,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f911b2cc-70ae-44ed-ada3-28b9c872472e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/175c6d5a-9c7d-4e4c-94b1-912123f0c17e method: GET response: proto: HTTP/2.0 @@ -1409,20 +1413,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 420 + content_length: 703 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:49.328301Z","id":"f911b2cc-70ae-44ed-ada3-28b9c872472e","last_detached_at":null,"name":"tf-volume-epic-feistel","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:49.328301Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-09-30T10:20:22.952187Z","id":"175c6d5a-9c7d-4e4c-94b1-912123f0c17e","name":"tf-snapshot-elegant-chandrasekhar","parent_volume":{"id":"d5a3ad21-568c-445d-bb63-4d648a2daa9a","name":"tf-volume-mystifying-lederberg","status":"available","type":"sbs_5k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-09-30T10:20:28.970465Z","id":"a31be384-a5a4-4cd9-9997-c93ca1d04f91","product_resource_id":"38b7ff1a-575a-4c05-b806-1ba96c5c0e3d","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":40000000000,"status":"in_use","tags":[],"updated_at":"2025-09-30T10:20:28.970465Z","zone":"fr-par-1"}' headers: Content-Length: - - "420" + - "703" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:59 GMT + - Tue, 30 Sep 2025 10:20:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1430,10 +1434,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 57fd3895-450b-44ae-b0d6-bf80e2a6d405 + - 51b85c74-66d3-447e-b141-5965d193893b status: 200 OK code: 200 - duration: 81.98225ms + duration: 255.21386ms - id: 29 request: proto: HTTP/1.1 @@ -1449,8 +1453,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a8db5f3-9725-4aad-9e39-e25606589910 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/77efe3fe-191b-4ac2-be81-a1bd5adee76b method: GET response: proto: HTTP/2.0 @@ -1458,20 +1462,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 691 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:33.429059Z","id":"2a8db5f3-9725-4aad-9e39-e25606589910","last_detached_at":null,"name":"tf-volume-vibrant-feynman","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:33.429059Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-09-30T10:20:22.957357Z","id":"77efe3fe-191b-4ac2-be81-a1bd5adee76b","name":"tf-snapshot-jolly-franklin","parent_volume":{"id":"f38ab82b-dbda-4f5d-b95d-e88e39876af5","name":"tf-volume-vigorous-payne","status":"available","type":"sbs_15k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-09-30T10:20:28.868105Z","id":"292757f3-6574-43cb-b614-9bd7ccfa2ad4","product_resource_id":"38b7ff1a-575a-4c05-b806-1ba96c5c0e3d","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":20000000000,"status":"in_use","tags":[],"updated_at":"2025-09-30T10:20:28.868105Z","zone":"fr-par-1"}' headers: Content-Length: - - "423" + - "691" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:59 GMT + - Tue, 30 Sep 2025 10:20:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1479,10 +1483,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 02c2f811-9b8f-46ca-a0df-00411263d730 + - beb9d8fe-eea0-423f-b6d4-b3df9a170844 status: 200 OK code: 200 - duration: 97.033497ms + duration: 257.739651ms - id: 30 request: proto: HTTP/1.1 @@ -1498,8 +1502,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/2af93bd3-c57b-4500-b813-4bfbc33e62b4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/758d1347-1273-448a-9b06-199f9d05531b method: GET response: proto: HTTP/2.0 @@ -1507,20 +1511,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 687 + content_length: 697 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:30:38.980368Z","id":"2af93bd3-c57b-4500-b813-4bfbc33e62b4","name":"tf-snapshot-busy-noyce","parent_volume":{"id":"2a8db5f3-9725-4aad-9e39-e25606589910","name":"tf-volume-vibrant-feynman","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:55.863225Z","id":"882a015b-42de-4edf-a6ed-dfe090f7b070","product_resource_id":"353dbc9e-b6ac-4fb3-9c7f-13e308286d76","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":50000000000,"status":"in_use","tags":[],"updated_at":"2025-06-10T15:30:55.863225Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-09-30T10:20:23.026551Z","id":"758d1347-1273-448a-9b06-199f9d05531b","name":"tf-snapshot-suspicious-swanson","parent_volume":{"id":"99bf9077-ec68-49cb-a058-ad4be0b839e9","name":"tf-volume-upbeat-tereshkova","status":"available","type":"sbs_5k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-09-30T10:20:28.751981Z","id":"76bc527d-da20-403b-b5ae-79b8057ea36b","product_resource_id":"38b7ff1a-575a-4c05-b806-1ba96c5c0e3d","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":20000000000,"status":"in_use","tags":[],"updated_at":"2025-09-30T10:20:28.751981Z","zone":"fr-par-1"}' headers: Content-Length: - - "687" + - "697" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:59 GMT + - Tue, 30 Sep 2025 10:20:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1528,10 +1532,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 54d4d83e-0e86-44b6-9cae-a59f4c8d4f63 + - 9e95c938-8a0c-4127-9558-7e4c74f578b4 status: 200 OK code: 200 - duration: 209.7948ms + duration: 255.704951ms - id: 31 request: proto: HTTP/1.1 @@ -1547,8 +1551,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f8e67974-0af5-4b33-8078-43dc1852408e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/38b7ff1a-575a-4c05-b806-1ba96c5c0e3d method: GET response: proto: HTTP/2.0 @@ -1556,20 +1560,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 807 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:30:49.794288Z","id":"f8e67974-0af5-4b33-8078-43dc1852408e","name":"tf-snapshot-stupefied-wu","parent_volume":{"id":"f911b2cc-70ae-44ed-ada3-28b9c872472e","name":"tf-volume-epic-feistel","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:56.008019Z","id":"73683da9-67ce-4aec-a19d-1d4e4e62a192","product_resource_id":"353dbc9e-b6ac-4fb3-9c7f-13e308286d76","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":50000000000,"status":"in_use","tags":[],"updated_at":"2025-06-10T15:30:56.008019Z","zone":"fr-par-1"}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-09-30T10:20:28.702643+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"77efe3fe-191b-4ac2-be81-a1bd5adee76b","name":"","size":0,"volume_type":"sbs_snapshot"},"2":{"id":"175c6d5a-9c7d-4e4c-94b1-912123f0c17e","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"38b7ff1a-575a-4c05-b806-1ba96c5c0e3d","modification_date":"2025-09-30T10:20:28.702643+00:00","name":"tf-test-image-external-block-volume","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","public":false,"root_volume":{"id":"758d1347-1273-448a-9b06-199f9d05531b","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "686" + - "807" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:59 GMT + - Tue, 30 Sep 2025 10:20:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1577,10 +1581,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a055ad96-45b7-486c-a20f-2e97e2cafe09 + - 56bbf9a4-359c-4aae-965f-23f9a6aa8941 status: 200 OK code: 200 - duration: 225.096257ms + duration: 97.935637ms - id: 32 request: proto: HTTP/1.1 @@ -1596,8 +1600,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/353dbc9e-b6ac-4fb3-9c7f-13e308286d76 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f38ab82b-dbda-4f5d-b95d-e88e39876af5 method: GET response: proto: HTTP/2.0 @@ -1605,20 +1609,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 700 + content_length: 424 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-06-10T15:30:55.813266+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"f8e67974-0af5-4b33-8078-43dc1852408e","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"353dbc9e-b6ac-4fb3-9c7f-13e308286d76","modification_date":"2025-06-10T15:30:55.813266+00:00","name":"tf-test-image-external-block-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"2af93bd3-c57b-4500-b813-4bfbc33e62b4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"created_at":"2025-09-30T10:20:17.642536Z","id":"f38ab82b-dbda-4f5d-b95d-e88e39876af5","last_detached_at":null,"name":"tf-volume-vigorous-payne","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-09-30T10:20:17.642536Z","zone":"fr-par-1"}' headers: Content-Length: - - "700" + - "424" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:59 GMT + - Tue, 30 Sep 2025 10:20:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1626,10 +1630,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9cfd2d72-7372-4714-89e4-075e9b16ab07 + - 683cedab-6f2c-4989-91f7-90d1f92bca63 status: 200 OK code: 200 - duration: 119.805925ms + duration: 49.83178ms - id: 33 request: proto: HTTP/1.1 @@ -1645,8 +1649,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/353dbc9e-b6ac-4fb3-9c7f-13e308286d76 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/99bf9077-ec68-49cb-a058-ad4be0b839e9 method: GET response: proto: HTTP/2.0 @@ -1654,20 +1658,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 700 + content_length: 425 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-06-10T15:30:55.813266+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"f8e67974-0af5-4b33-8078-43dc1852408e","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"353dbc9e-b6ac-4fb3-9c7f-13e308286d76","modification_date":"2025-06-10T15:30:55.813266+00:00","name":"tf-test-image-external-block-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"2af93bd3-c57b-4500-b813-4bfbc33e62b4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"created_at":"2025-09-30T10:20:17.658670Z","id":"99bf9077-ec68-49cb-a058-ad4be0b839e9","last_detached_at":null,"name":"tf-volume-upbeat-tereshkova","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T10:20:17.658670Z","zone":"fr-par-1"}' headers: Content-Length: - - "700" + - "425" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:00 GMT + - Tue, 30 Sep 2025 10:20:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1675,10 +1679,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3cf4f308-db69-4b8a-9214-1599cb6f440e + - eb5ea099-4d8e-4a53-97a8-9b5c2a54f775 status: 200 OK code: 200 - duration: 188.335155ms + duration: 53.54422ms - id: 34 request: proto: HTTP/1.1 @@ -1694,8 +1698,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/353dbc9e-b6ac-4fb3-9c7f-13e308286d76 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d5a3ad21-568c-445d-bb63-4d648a2daa9a method: GET response: proto: HTTP/2.0 @@ -1703,20 +1707,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 700 + content_length: 428 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-06-10T15:30:55.813266+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"f8e67974-0af5-4b33-8078-43dc1852408e","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"353dbc9e-b6ac-4fb3-9c7f-13e308286d76","modification_date":"2025-06-10T15:30:55.813266+00:00","name":"tf-test-image-external-block-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"2af93bd3-c57b-4500-b813-4bfbc33e62b4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"created_at":"2025-09-30T10:20:17.639617Z","id":"d5a3ad21-568c-445d-bb63-4d648a2daa9a","last_detached_at":null,"name":"tf-volume-mystifying-lederberg","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":40000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T10:20:17.639617Z","zone":"fr-par-1"}' headers: Content-Length: - - "700" + - "428" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:00 GMT + - Tue, 30 Sep 2025 10:20:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1724,50 +1728,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 23c88f1a-33fb-4b5b-879b-7a2bc34c99d2 + - 956e53a5-8c8f-4141-808d-8c88645c267a status: 200 OK code: 200 - duration: 139.21802ms + duration: 53.659406ms - id: 35 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 72 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-test-image-external-block-volume","arch":"x86_64","tags":[]}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/353dbc9e-b6ac-4fb3-9c7f-13e308286d76 - method: PATCH + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/175c6d5a-9c7d-4e4c-94b1-912123f0c17e + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 700 + content_length: 703 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-06-10T15:30:55.813266+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"f8e67974-0af5-4b33-8078-43dc1852408e","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"353dbc9e-b6ac-4fb3-9c7f-13e308286d76","modification_date":"2025-06-10T15:30:55.813266+00:00","name":"tf-test-image-external-block-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"2af93bd3-c57b-4500-b813-4bfbc33e62b4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"class":"sbs","created_at":"2025-09-30T10:20:22.952187Z","id":"175c6d5a-9c7d-4e4c-94b1-912123f0c17e","name":"tf-snapshot-elegant-chandrasekhar","parent_volume":{"id":"d5a3ad21-568c-445d-bb63-4d648a2daa9a","name":"tf-volume-mystifying-lederberg","status":"available","type":"sbs_5k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-09-30T10:20:28.970465Z","id":"a31be384-a5a4-4cd9-9997-c93ca1d04f91","product_resource_id":"38b7ff1a-575a-4c05-b806-1ba96c5c0e3d","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":40000000000,"status":"in_use","tags":[],"updated_at":"2025-09-30T10:20:28.970465Z","zone":"fr-par-1"}' headers: Content-Length: - - "700" + - "703" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:00 GMT + - Tue, 30 Sep 2025 10:20:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1775,10 +1777,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa44b6be-533f-4759-8073-61c167032d03 + - 7bce8e36-1be8-41b1-9029-0eb625fc178b status: 200 OK code: 200 - duration: 224.185068ms + duration: 134.192624ms - id: 36 request: proto: HTTP/1.1 @@ -1794,8 +1796,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/353dbc9e-b6ac-4fb3-9c7f-13e308286d76 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/77efe3fe-191b-4ac2-be81-a1bd5adee76b method: GET response: proto: HTTP/2.0 @@ -1803,20 +1805,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 700 + content_length: 691 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-06-10T15:30:55.813266+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"f8e67974-0af5-4b33-8078-43dc1852408e","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"353dbc9e-b6ac-4fb3-9c7f-13e308286d76","modification_date":"2025-06-10T15:30:55.813266+00:00","name":"tf-test-image-external-block-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"2af93bd3-c57b-4500-b813-4bfbc33e62b4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"class":"sbs","created_at":"2025-09-30T10:20:22.957357Z","id":"77efe3fe-191b-4ac2-be81-a1bd5adee76b","name":"tf-snapshot-jolly-franklin","parent_volume":{"id":"f38ab82b-dbda-4f5d-b95d-e88e39876af5","name":"tf-volume-vigorous-payne","status":"available","type":"sbs_15k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-09-30T10:20:28.868105Z","id":"292757f3-6574-43cb-b614-9bd7ccfa2ad4","product_resource_id":"38b7ff1a-575a-4c05-b806-1ba96c5c0e3d","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":20000000000,"status":"in_use","tags":[],"updated_at":"2025-09-30T10:20:28.868105Z","zone":"fr-par-1"}' headers: Content-Length: - - "700" + - "691" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:00 GMT + - Tue, 30 Sep 2025 10:20:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1824,10 +1826,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e25f19b8-2716-47c4-98ec-7bdb9452999f + - 20b05ba0-46e9-4782-91d8-06e96ebf7ffa status: 200 OK code: 200 - duration: 155.842408ms + duration: 134.70746ms - id: 37 request: proto: HTTP/1.1 @@ -1843,8 +1845,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/353dbc9e-b6ac-4fb3-9c7f-13e308286d76 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/758d1347-1273-448a-9b06-199f9d05531b method: GET response: proto: HTTP/2.0 @@ -1852,20 +1854,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 700 + content_length: 697 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-06-10T15:30:55.813266+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"f8e67974-0af5-4b33-8078-43dc1852408e","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"353dbc9e-b6ac-4fb3-9c7f-13e308286d76","modification_date":"2025-06-10T15:30:55.813266+00:00","name":"tf-test-image-external-block-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"2af93bd3-c57b-4500-b813-4bfbc33e62b4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"class":"sbs","created_at":"2025-09-30T10:20:23.026551Z","id":"758d1347-1273-448a-9b06-199f9d05531b","name":"tf-snapshot-suspicious-swanson","parent_volume":{"id":"99bf9077-ec68-49cb-a058-ad4be0b839e9","name":"tf-volume-upbeat-tereshkova","status":"available","type":"sbs_5k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-09-30T10:20:28.751981Z","id":"76bc527d-da20-403b-b5ae-79b8057ea36b","product_resource_id":"38b7ff1a-575a-4c05-b806-1ba96c5c0e3d","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":20000000000,"status":"in_use","tags":[],"updated_at":"2025-09-30T10:20:28.751981Z","zone":"fr-par-1"}' headers: Content-Length: - - "700" + - "697" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:01 GMT + - Tue, 30 Sep 2025 10:20:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1873,10 +1875,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ba7ccc0-8d03-4448-9705-1f9922b2dee5 + - fd871bee-8824-4916-a4c5-9d125d76c1de status: 200 OK code: 200 - duration: 171.896165ms + duration: 133.77543ms - id: 38 request: proto: HTTP/1.1 @@ -1892,8 +1894,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/353dbc9e-b6ac-4fb3-9c7f-13e308286d76 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/38b7ff1a-575a-4c05-b806-1ba96c5c0e3d method: GET response: proto: HTTP/2.0 @@ -1901,20 +1903,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 700 + content_length: 807 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-06-10T15:30:55.813266+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"f8e67974-0af5-4b33-8078-43dc1852408e","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"353dbc9e-b6ac-4fb3-9c7f-13e308286d76","modification_date":"2025-06-10T15:30:55.813266+00:00","name":"tf-test-image-external-block-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"2af93bd3-c57b-4500-b813-4bfbc33e62b4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-09-30T10:20:28.702643+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"77efe3fe-191b-4ac2-be81-a1bd5adee76b","name":"","size":0,"volume_type":"sbs_snapshot"},"2":{"id":"175c6d5a-9c7d-4e4c-94b1-912123f0c17e","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"38b7ff1a-575a-4c05-b806-1ba96c5c0e3d","modification_date":"2025-09-30T10:20:28.702643+00:00","name":"tf-test-image-external-block-volume","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","public":false,"root_volume":{"id":"758d1347-1273-448a-9b06-199f9d05531b","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "700" + - "807" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:01 GMT + - Tue, 30 Sep 2025 10:20:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1922,10 +1924,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 58b7924f-69ec-481f-9d11-6467ad90fed8 + - da1d8ab5-1a1a-4405-863c-6bc0a14544f9 status: 200 OK code: 200 - duration: 121.869414ms + duration: 84.725347ms - id: 39 request: proto: HTTP/1.1 @@ -1941,8 +1943,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a8db5f3-9725-4aad-9e39-e25606589910 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/38b7ff1a-575a-4c05-b806-1ba96c5c0e3d method: GET response: proto: HTTP/2.0 @@ -1950,20 +1952,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 807 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:33.429059Z","id":"2a8db5f3-9725-4aad-9e39-e25606589910","last_detached_at":null,"name":"tf-volume-vibrant-feynman","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:33.429059Z","zone":"fr-par-1"}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-09-30T10:20:28.702643+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"77efe3fe-191b-4ac2-be81-a1bd5adee76b","name":"","size":0,"volume_type":"sbs_snapshot"},"2":{"id":"175c6d5a-9c7d-4e4c-94b1-912123f0c17e","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"38b7ff1a-575a-4c05-b806-1ba96c5c0e3d","modification_date":"2025-09-30T10:20:28.702643+00:00","name":"tf-test-image-external-block-volume","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","public":false,"root_volume":{"id":"758d1347-1273-448a-9b06-199f9d05531b","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "423" + - "807" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:02 GMT + - Tue, 30 Sep 2025 10:20:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1971,10 +1973,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ab915a88-ec5b-45c2-935e-67071248b2d6 + - 5e1867f7-ad13-4ebd-b422-bd091bd97aac status: 200 OK code: 200 - duration: 94.997789ms + duration: 92.416536ms - id: 40 request: proto: HTTP/1.1 @@ -1990,8 +1992,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f911b2cc-70ae-44ed-ada3-28b9c872472e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/38b7ff1a-575a-4c05-b806-1ba96c5c0e3d method: GET response: proto: HTTP/2.0 @@ -1999,20 +2001,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 420 + content_length: 807 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:49.328301Z","id":"f911b2cc-70ae-44ed-ada3-28b9c872472e","last_detached_at":null,"name":"tf-volume-epic-feistel","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:49.328301Z","zone":"fr-par-1"}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-09-30T10:20:28.702643+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"77efe3fe-191b-4ac2-be81-a1bd5adee76b","name":"","size":0,"volume_type":"sbs_snapshot"},"2":{"id":"175c6d5a-9c7d-4e4c-94b1-912123f0c17e","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"38b7ff1a-575a-4c05-b806-1ba96c5c0e3d","modification_date":"2025-09-30T10:20:28.702643+00:00","name":"tf-test-image-external-block-volume","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","public":false,"root_volume":{"id":"758d1347-1273-448a-9b06-199f9d05531b","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "420" + - "807" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:02 GMT + - Tue, 30 Sep 2025 10:20:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2020,48 +2022,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 27b112d2-ca5b-4141-82ac-96103650d60d + - 72edecde-243b-45b4-85f8-f5c6cf151762 status: 200 OK code: 200 - duration: 103.254915ms + duration: 107.204427ms - id: 41 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 72 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-test-image-external-block-volume","arch":"x86_64","tags":[]}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f8e67974-0af5-4b33-8078-43dc1852408e - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/38b7ff1a-575a-4c05-b806-1ba96c5c0e3d + method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 807 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:30:49.794288Z","id":"f8e67974-0af5-4b33-8078-43dc1852408e","name":"tf-snapshot-stupefied-wu","parent_volume":{"id":"f911b2cc-70ae-44ed-ada3-28b9c872472e","name":"tf-volume-epic-feistel","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:56.008019Z","id":"73683da9-67ce-4aec-a19d-1d4e4e62a192","product_resource_id":"353dbc9e-b6ac-4fb3-9c7f-13e308286d76","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":50000000000,"status":"in_use","tags":[],"updated_at":"2025-06-10T15:30:56.008019Z","zone":"fr-par-1"}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-09-30T10:20:28.702643+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"77efe3fe-191b-4ac2-be81-a1bd5adee76b","name":"","size":0,"volume_type":"sbs_snapshot"},"2":{"id":"175c6d5a-9c7d-4e4c-94b1-912123f0c17e","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"38b7ff1a-575a-4c05-b806-1ba96c5c0e3d","modification_date":"2025-09-30T10:20:28.702643+00:00","name":"tf-test-image-external-block-volume","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","public":false,"root_volume":{"id":"758d1347-1273-448a-9b06-199f9d05531b","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "686" + - "807" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:02 GMT + - Tue, 30 Sep 2025 10:20:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2069,10 +2073,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3e0702a4-c8eb-45e1-9cf4-7d5de8eb22e0 + - 36187929-5ae3-45c3-ab33-dc2a241b857a status: 200 OK code: 200 - duration: 196.83207ms + duration: 100.303402ms - id: 42 request: proto: HTTP/1.1 @@ -2088,8 +2092,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/2af93bd3-c57b-4500-b813-4bfbc33e62b4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/38b7ff1a-575a-4c05-b806-1ba96c5c0e3d method: GET response: proto: HTTP/2.0 @@ -2097,20 +2101,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 687 + content_length: 807 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:30:38.980368Z","id":"2af93bd3-c57b-4500-b813-4bfbc33e62b4","name":"tf-snapshot-busy-noyce","parent_volume":{"id":"2a8db5f3-9725-4aad-9e39-e25606589910","name":"tf-volume-vibrant-feynman","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:55.863225Z","id":"882a015b-42de-4edf-a6ed-dfe090f7b070","product_resource_id":"353dbc9e-b6ac-4fb3-9c7f-13e308286d76","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":50000000000,"status":"in_use","tags":[],"updated_at":"2025-06-10T15:30:55.863225Z","zone":"fr-par-1"}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-09-30T10:20:28.702643+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"77efe3fe-191b-4ac2-be81-a1bd5adee76b","name":"","size":0,"volume_type":"sbs_snapshot"},"2":{"id":"175c6d5a-9c7d-4e4c-94b1-912123f0c17e","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"38b7ff1a-575a-4c05-b806-1ba96c5c0e3d","modification_date":"2025-09-30T10:20:28.702643+00:00","name":"tf-test-image-external-block-volume","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","public":false,"root_volume":{"id":"758d1347-1273-448a-9b06-199f9d05531b","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "687" + - "807" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:02 GMT + - Tue, 30 Sep 2025 10:20:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2118,10 +2122,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 48d62f26-8bf1-48ee-9f72-3551e5768135 + - 893a3539-6a85-4619-b675-25de5a5b95a7 status: 200 OK code: 200 - duration: 205.698969ms + duration: 96.492478ms - id: 43 request: proto: HTTP/1.1 @@ -2137,8 +2141,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/353dbc9e-b6ac-4fb3-9c7f-13e308286d76 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/38b7ff1a-575a-4c05-b806-1ba96c5c0e3d method: GET response: proto: HTTP/2.0 @@ -2146,20 +2150,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 700 + content_length: 807 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-06-10T15:30:55.813266+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"f8e67974-0af5-4b33-8078-43dc1852408e","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"353dbc9e-b6ac-4fb3-9c7f-13e308286d76","modification_date":"2025-06-10T15:30:55.813266+00:00","name":"tf-test-image-external-block-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"2af93bd3-c57b-4500-b813-4bfbc33e62b4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-09-30T10:20:28.702643+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"77efe3fe-191b-4ac2-be81-a1bd5adee76b","name":"","size":0,"volume_type":"sbs_snapshot"},"2":{"id":"175c6d5a-9c7d-4e4c-94b1-912123f0c17e","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"38b7ff1a-575a-4c05-b806-1ba96c5c0e3d","modification_date":"2025-09-30T10:20:28.702643+00:00","name":"tf-test-image-external-block-volume","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","public":false,"root_volume":{"id":"758d1347-1273-448a-9b06-199f9d05531b","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "700" + - "807" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:02 GMT + - Tue, 30 Sep 2025 10:20:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2167,10 +2171,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 39fb19fa-70f5-4938-94db-3e703007b354 + - a13c0d10-b27a-4136-af4c-e05952890f02 status: 200 OK code: 200 - duration: 190.522287ms + duration: 162.874137ms - id: 44 request: proto: HTTP/1.1 @@ -2186,8 +2190,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/353dbc9e-b6ac-4fb3-9c7f-13e308286d76 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/38b7ff1a-575a-4c05-b806-1ba96c5c0e3d method: GET response: proto: HTTP/2.0 @@ -2195,20 +2199,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 700 + content_length: 807 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-06-10T15:30:55.813266+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"f8e67974-0af5-4b33-8078-43dc1852408e","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"353dbc9e-b6ac-4fb3-9c7f-13e308286d76","modification_date":"2025-06-10T15:30:55.813266+00:00","name":"tf-test-image-external-block-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"2af93bd3-c57b-4500-b813-4bfbc33e62b4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-09-30T10:20:28.702643+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"77efe3fe-191b-4ac2-be81-a1bd5adee76b","name":"","size":0,"volume_type":"sbs_snapshot"},"2":{"id":"175c6d5a-9c7d-4e4c-94b1-912123f0c17e","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"38b7ff1a-575a-4c05-b806-1ba96c5c0e3d","modification_date":"2025-09-30T10:20:28.702643+00:00","name":"tf-test-image-external-block-volume","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","public":false,"root_volume":{"id":"758d1347-1273-448a-9b06-199f9d05531b","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "700" + - "807" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:03 GMT + - Tue, 30 Sep 2025 10:20:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2216,10 +2220,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cb42f489-95d5-4117-b73d-ed5351104ed2 + - b2ad6104-cea2-43be-8af1-5ce5ef360868 status: 200 OK code: 200 - duration: 576.385315ms + duration: 104.696279ms - id: 45 request: proto: HTTP/1.1 @@ -2235,8 +2239,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f8e67974-0af5-4b33-8078-43dc1852408e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f38ab82b-dbda-4f5d-b95d-e88e39876af5 method: GET response: proto: HTTP/2.0 @@ -2244,20 +2248,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 424 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:30:49.794288Z","id":"f8e67974-0af5-4b33-8078-43dc1852408e","name":"tf-snapshot-stupefied-wu","parent_volume":{"id":"f911b2cc-70ae-44ed-ada3-28b9c872472e","name":"tf-volume-epic-feistel","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:56.008019Z","id":"73683da9-67ce-4aec-a19d-1d4e4e62a192","product_resource_id":"353dbc9e-b6ac-4fb3-9c7f-13e308286d76","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":50000000000,"status":"in_use","tags":[],"updated_at":"2025-06-10T15:30:56.008019Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-09-30T10:20:17.642536Z","id":"f38ab82b-dbda-4f5d-b95d-e88e39876af5","last_detached_at":null,"name":"tf-volume-vigorous-payne","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-09-30T10:20:17.642536Z","zone":"fr-par-1"}' headers: Content-Length: - - "686" + - "424" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:04 GMT + - Tue, 30 Sep 2025 10:20:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2265,10 +2269,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0bb5549c-1147-4912-9f95-a1e5c833342b + - edea7f4b-c3c0-48ea-8115-1b6aecc12066 status: 200 OK code: 200 - duration: 660.250528ms + duration: 47.378815ms - id: 46 request: proto: HTTP/1.1 @@ -2284,27 +2288,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/353dbc9e-b6ac-4fb3-9c7f-13e308286d76 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/99bf9077-ec68-49cb-a058-ad4be0b839e9 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 425 uncompressed: false - body: "" + body: '{"created_at":"2025-09-30T10:20:17.658670Z","id":"99bf9077-ec68-49cb-a058-ad4be0b839e9","last_detached_at":null,"name":"tf-volume-upbeat-tereshkova","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T10:20:17.658670Z","zone":"fr-par-1"}' headers: + Content-Length: + - "425" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:05 GMT + - Tue, 30 Sep 2025 10:20:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2312,10 +2318,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 20646c66-15e0-45f0-be7d-7af646d6af47 - status: 204 No Content - code: 204 - duration: 1.797413077s + - 936aeb83-ca4d-447c-943a-b225c81c490d + status: 200 OK + code: 200 + duration: 47.64195ms - id: 47 request: proto: HTTP/1.1 @@ -2331,8 +2337,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/353dbc9e-b6ac-4fb3-9c7f-13e308286d76 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d5a3ad21-568c-445d-bb63-4d648a2daa9a method: GET response: proto: HTTP/2.0 @@ -2340,20 +2346,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 142 + content_length: 428 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_image","resource_id":"353dbc9e-b6ac-4fb3-9c7f-13e308286d76","type":"not_found"}' + body: '{"created_at":"2025-09-30T10:20:17.639617Z","id":"d5a3ad21-568c-445d-bb63-4d648a2daa9a","last_detached_at":null,"name":"tf-volume-mystifying-lederberg","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":40000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T10:20:17.639617Z","zone":"fr-par-1"}' headers: Content-Length: - - "142" + - "428" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:05 GMT + - Tue, 30 Sep 2025 10:20:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2361,10 +2367,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 20a6c59a-b009-4215-a1c1-63fae8d3ee0c - status: 404 Not Found - code: 404 - duration: 36.083481ms + - 8c8ac6a8-4776-4b5b-a447-683dcd9e7c19 + status: 200 OK + code: 200 + duration: 47.585183ms - id: 48 request: proto: HTTP/1.1 @@ -2380,8 +2386,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/2af93bd3-c57b-4500-b813-4bfbc33e62b4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/77efe3fe-191b-4ac2-be81-a1bd5adee76b method: GET response: proto: HTTP/2.0 @@ -2389,20 +2395,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 458 + content_length: 691 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:30:38.980368Z","id":"2af93bd3-c57b-4500-b813-4bfbc33e62b4","name":"tf-snapshot-busy-noyce","parent_volume":{"id":"2a8db5f3-9725-4aad-9e39-e25606589910","name":"tf-volume-vibrant-feynman","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"status":"in_use","tags":[],"updated_at":"2025-06-10T15:30:55.863225Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-09-30T10:20:22.957357Z","id":"77efe3fe-191b-4ac2-be81-a1bd5adee76b","name":"tf-snapshot-jolly-franklin","parent_volume":{"id":"f38ab82b-dbda-4f5d-b95d-e88e39876af5","name":"tf-volume-vigorous-payne","status":"available","type":"sbs_15k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-09-30T10:20:28.868105Z","id":"292757f3-6574-43cb-b614-9bd7ccfa2ad4","product_resource_id":"38b7ff1a-575a-4c05-b806-1ba96c5c0e3d","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":20000000000,"status":"in_use","tags":[],"updated_at":"2025-09-30T10:20:28.868105Z","zone":"fr-par-1"}' headers: Content-Length: - - "458" + - "691" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:06 GMT + - Tue, 30 Sep 2025 10:20:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2410,10 +2416,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 109b8d81-1462-4b75-bbb1-a580e3cf9cf0 + - 0668af83-ee8d-4a1f-9ce4-173d7b0a5f9c status: 200 OK code: 200 - duration: 152.21262ms + duration: 210.641703ms - id: 49 request: proto: HTTP/1.1 @@ -2429,8 +2435,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f8e67974-0af5-4b33-8078-43dc1852408e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/758d1347-1273-448a-9b06-199f9d05531b method: GET response: proto: HTTP/2.0 @@ -2438,20 +2444,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 460 + content_length: 697 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:30:49.794288Z","id":"f8e67974-0af5-4b33-8078-43dc1852408e","name":"tf-snapshot-stupefied-wu","parent_volume":{"id":"f911b2cc-70ae-44ed-ada3-28b9c872472e","name":"tf-volume-epic-feistel","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-06-10T15:31:05.721038Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-09-30T10:20:23.026551Z","id":"758d1347-1273-448a-9b06-199f9d05531b","name":"tf-snapshot-suspicious-swanson","parent_volume":{"id":"99bf9077-ec68-49cb-a058-ad4be0b839e9","name":"tf-volume-upbeat-tereshkova","status":"available","type":"sbs_5k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-09-30T10:20:28.751981Z","id":"76bc527d-da20-403b-b5ae-79b8057ea36b","product_resource_id":"38b7ff1a-575a-4c05-b806-1ba96c5c0e3d","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":20000000000,"status":"in_use","tags":[],"updated_at":"2025-09-30T10:20:28.751981Z","zone":"fr-par-1"}' headers: Content-Length: - - "460" + - "697" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:09 GMT + - Tue, 30 Sep 2025 10:20:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2459,10 +2465,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4c613aac-8523-4970-abe1-99b4384fe412 + - 3912b308-df2f-425d-be21-f5cab58dfff4 status: 200 OK code: 200 - duration: 243.499429ms + duration: 210.673653ms - id: 50 request: proto: HTTP/1.1 @@ -2478,27 +2484,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f8e67974-0af5-4b33-8078-43dc1852408e - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/175c6d5a-9c7d-4e4c-94b1-912123f0c17e + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 703 uncompressed: false - body: "" + body: '{"class":"sbs","created_at":"2025-09-30T10:20:22.952187Z","id":"175c6d5a-9c7d-4e4c-94b1-912123f0c17e","name":"tf-snapshot-elegant-chandrasekhar","parent_volume":{"id":"d5a3ad21-568c-445d-bb63-4d648a2daa9a","name":"tf-volume-mystifying-lederberg","status":"available","type":"sbs_5k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-09-30T10:20:28.970465Z","id":"a31be384-a5a4-4cd9-9997-c93ca1d04f91","product_resource_id":"38b7ff1a-575a-4c05-b806-1ba96c5c0e3d","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":40000000000,"status":"in_use","tags":[],"updated_at":"2025-09-30T10:20:28.970465Z","zone":"fr-par-1"}' headers: + Content-Length: + - "703" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:09 GMT + - Tue, 30 Sep 2025 10:20:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2506,10 +2514,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0f3445ec-31da-4f8f-8811-a03a339370a0 - status: 204 No Content - code: 204 - duration: 258.769728ms + - 2c817649-b8ef-48af-88cb-17fded0b87c7 + status: 200 OK + code: 200 + duration: 210.281677ms - id: 51 request: proto: HTTP/1.1 @@ -2525,8 +2533,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f8e67974-0af5-4b33-8078-43dc1852408e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/38b7ff1a-575a-4c05-b806-1ba96c5c0e3d method: GET response: proto: HTTP/2.0 @@ -2534,20 +2542,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 129 + content_length: 807 uncompressed: false - body: '{"message":"resource is not found","resource":"snapshot","resource_id":"f8e67974-0af5-4b33-8078-43dc1852408e","type":"not_found"}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-09-30T10:20:28.702643+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"77efe3fe-191b-4ac2-be81-a1bd5adee76b","name":"","size":0,"volume_type":"sbs_snapshot"},"2":{"id":"175c6d5a-9c7d-4e4c-94b1-912123f0c17e","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"38b7ff1a-575a-4c05-b806-1ba96c5c0e3d","modification_date":"2025-09-30T10:20:28.702643+00:00","name":"tf-test-image-external-block-volume","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","public":false,"root_volume":{"id":"758d1347-1273-448a-9b06-199f9d05531b","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "129" + - "807" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:09 GMT + - Tue, 30 Sep 2025 10:20:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2555,10 +2563,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b2a6213b-3ec2-4444-85e2-085616d9928f - status: 404 Not Found - code: 404 - duration: 114.188019ms + - 8522c2e5-f234-46e3-930f-3679eca0229b + status: 200 OK + code: 200 + duration: 81.031152ms - id: 52 request: proto: HTTP/1.1 @@ -2574,8 +2582,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f911b2cc-70ae-44ed-ada3-28b9c872472e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/38b7ff1a-575a-4c05-b806-1ba96c5c0e3d method: GET response: proto: HTTP/2.0 @@ -2583,20 +2591,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 420 + content_length: 807 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:49.328301Z","id":"f911b2cc-70ae-44ed-ada3-28b9c872472e","last_detached_at":null,"name":"tf-volume-epic-feistel","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:49.328301Z","zone":"fr-par-1"}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-09-30T10:20:28.702643+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"77efe3fe-191b-4ac2-be81-a1bd5adee76b","name":"","size":0,"volume_type":"sbs_snapshot"},"2":{"id":"175c6d5a-9c7d-4e4c-94b1-912123f0c17e","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"38b7ff1a-575a-4c05-b806-1ba96c5c0e3d","modification_date":"2025-09-30T10:20:28.702643+00:00","name":"tf-test-image-external-block-volume","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","public":false,"root_volume":{"id":"758d1347-1273-448a-9b06-199f9d05531b","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "420" + - "807" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:09 GMT + - Tue, 30 Sep 2025 10:20:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2604,10 +2612,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5437b09a-aa9b-442a-ade7-3c38eeae437e + - 64f94696-6296-43f6-ae1f-30f7985cc2a8 status: 200 OK code: 200 - duration: 81.792495ms + duration: 99.303895ms - id: 53 request: proto: HTTP/1.1 @@ -2623,27 +2631,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f911b2cc-70ae-44ed-ada3-28b9c872472e - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/175c6d5a-9c7d-4e4c-94b1-912123f0c17e + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 703 uncompressed: false - body: "" + body: '{"class":"sbs","created_at":"2025-09-30T10:20:22.952187Z","id":"175c6d5a-9c7d-4e4c-94b1-912123f0c17e","name":"tf-snapshot-elegant-chandrasekhar","parent_volume":{"id":"d5a3ad21-568c-445d-bb63-4d648a2daa9a","name":"tf-volume-mystifying-lederberg","status":"available","type":"sbs_5k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-09-30T10:20:28.970465Z","id":"a31be384-a5a4-4cd9-9997-c93ca1d04f91","product_resource_id":"38b7ff1a-575a-4c05-b806-1ba96c5c0e3d","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":40000000000,"status":"in_use","tags":[],"updated_at":"2025-09-30T10:20:28.970465Z","zone":"fr-par-1"}' headers: + Content-Length: + - "703" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:09 GMT + - Tue, 30 Sep 2025 10:20:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2651,10 +2661,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9741734c-2257-4f1b-a369-b36db74f360f - status: 204 No Content - code: 204 - duration: 138.046373ms + - cd8dd0f5-d27f-4cc2-b056-a5a1d165e2c9 + status: 200 OK + code: 200 + duration: 215.537304ms - id: 54 request: proto: HTTP/1.1 @@ -2670,8 +2680,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f911b2cc-70ae-44ed-ada3-28b9c872472e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/77efe3fe-191b-4ac2-be81-a1bd5adee76b method: GET response: proto: HTTP/2.0 @@ -2679,20 +2689,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 127 + content_length: 691 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"f911b2cc-70ae-44ed-ada3-28b9c872472e","type":"not_found"}' + body: '{"class":"sbs","created_at":"2025-09-30T10:20:22.957357Z","id":"77efe3fe-191b-4ac2-be81-a1bd5adee76b","name":"tf-snapshot-jolly-franklin","parent_volume":{"id":"f38ab82b-dbda-4f5d-b95d-e88e39876af5","name":"tf-volume-vigorous-payne","status":"available","type":"sbs_15k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-09-30T10:20:28.868105Z","id":"292757f3-6574-43cb-b614-9bd7ccfa2ad4","product_resource_id":"38b7ff1a-575a-4c05-b806-1ba96c5c0e3d","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":20000000000,"status":"in_use","tags":[],"updated_at":"2025-09-30T10:20:28.868105Z","zone":"fr-par-1"}' headers: Content-Length: - - "127" + - "691" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:09 GMT + - Tue, 30 Sep 2025 10:20:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2700,10 +2710,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c168a7d6-1f92-4d6e-a936-c8096c7aefd0 - status: 404 Not Found - code: 404 - duration: 123.840791ms + - 44eb9af6-ea13-40c3-8a30-41782dd6da22 + status: 200 OK + code: 200 + duration: 218.943408ms - id: 55 request: proto: HTTP/1.1 @@ -2719,29 +2729,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/2af93bd3-c57b-4500-b813-4bfbc33e62b4 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/38b7ff1a-575a-4c05-b806-1ba96c5c0e3d + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 461 + content_length: 0 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:30:38.980368Z","id":"2af93bd3-c57b-4500-b813-4bfbc33e62b4","name":"tf-snapshot-busy-noyce","parent_volume":{"id":"2a8db5f3-9725-4aad-9e39-e25606589910","name":"tf-volume-vibrant-feynman","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-06-10T15:31:05.798601Z","zone":"fr-par-1"}' + body: "" headers: - Content-Length: - - "461" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:11 GMT + - Tue, 30 Sep 2025 10:20:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2749,10 +2757,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f8d9e689-31ef-425e-b5c8-8cbf811880f7 - status: 200 OK - code: 200 - duration: 264.016797ms + - fde8213d-bc9a-4de0-9a83-5199edf06be2 + status: 204 No Content + code: 204 + duration: 592.542684ms - id: 56 request: proto: HTTP/1.1 @@ -2768,27 +2776,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/2af93bd3-c57b-4500-b813-4bfbc33e62b4 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/38b7ff1a-575a-4c05-b806-1ba96c5c0e3d + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 142 uncompressed: false - body: "" + body: '{"message":"resource is not found","resource":"instance_image","resource_id":"38b7ff1a-575a-4c05-b806-1ba96c5c0e3d","type":"not_found"}' headers: + Content-Length: + - "142" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:11 GMT + - Tue, 30 Sep 2025 10:20:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2796,10 +2806,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 05edb96d-1049-4b47-995e-cece2c806a65 - status: 204 No Content - code: 204 - duration: 268.103261ms + - fd2dd2c2-02c5-4c21-817c-a5c25d7571bd + status: 404 Not Found + code: 404 + duration: 27.32622ms - id: 57 request: proto: HTTP/1.1 @@ -2815,8 +2825,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/2af93bd3-c57b-4500-b813-4bfbc33e62b4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/758d1347-1273-448a-9b06-199f9d05531b method: GET response: proto: HTTP/2.0 @@ -2824,20 +2834,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 129 + content_length: 697 uncompressed: false - body: '{"message":"resource is not found","resource":"snapshot","resource_id":"2af93bd3-c57b-4500-b813-4bfbc33e62b4","type":"not_found"}' + body: '{"class":"sbs","created_at":"2025-09-30T10:20:23.026551Z","id":"758d1347-1273-448a-9b06-199f9d05531b","name":"tf-snapshot-suspicious-swanson","parent_volume":{"id":"99bf9077-ec68-49cb-a058-ad4be0b839e9","name":"tf-volume-upbeat-tereshkova","status":"available","type":"sbs_5k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-09-30T10:20:28.751981Z","id":"76bc527d-da20-403b-b5ae-79b8057ea36b","product_resource_id":"38b7ff1a-575a-4c05-b806-1ba96c5c0e3d","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":20000000000,"status":"in_use","tags":[],"updated_at":"2025-09-30T10:20:28.751981Z","zone":"fr-par-1"}' headers: Content-Length: - - "129" + - "697" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:11 GMT + - Tue, 30 Sep 2025 10:20:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2845,10 +2855,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3b502b3b-c955-4ea9-8e67-851723685285 - status: 404 Not Found - code: 404 - duration: 99.479534ms + - 4aae674f-64c8-421d-b9bb-ef3f8424f6e4 + status: 200 OK + code: 200 + duration: 89.177435ms - id: 58 request: proto: HTTP/1.1 @@ -2864,8 +2874,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a8db5f3-9725-4aad-9e39-e25606589910 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/175c6d5a-9c7d-4e4c-94b1-912123f0c17e method: GET response: proto: HTTP/2.0 @@ -2873,20 +2883,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 477 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:33.429059Z","id":"2a8db5f3-9725-4aad-9e39-e25606589910","last_detached_at":null,"name":"tf-volume-vibrant-feynman","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:33.429059Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-09-30T10:20:22.952187Z","id":"175c6d5a-9c7d-4e4c-94b1-912123f0c17e","name":"tf-snapshot-elegant-chandrasekhar","parent_volume":{"id":"d5a3ad21-568c-445d-bb63-4d648a2daa9a","name":"tf-volume-mystifying-lederberg","status":"available","type":"sbs_5k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":40000000000,"status":"available","tags":[],"updated_at":"2025-09-30T10:20:33.165009Z","zone":"fr-par-1"}' headers: Content-Length: - - "423" + - "477" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:11 GMT + - Tue, 30 Sep 2025 10:20:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2894,10 +2904,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3399853b-3f62-4c43-8826-d96b2386b2eb + - 570886f6-bf44-46b1-a1c0-7efba1854d00 status: 200 OK code: 200 - duration: 94.121426ms + duration: 204.052953ms - id: 59 request: proto: HTTP/1.1 @@ -2913,8 +2923,57 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a8db5f3-9725-4aad-9e39-e25606589910 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/77efe3fe-191b-4ac2-be81-a1bd5adee76b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 465 + uncompressed: false + body: '{"class":"sbs","created_at":"2025-09-30T10:20:22.957357Z","id":"77efe3fe-191b-4ac2-be81-a1bd5adee76b","name":"tf-snapshot-jolly-franklin","parent_volume":{"id":"f38ab82b-dbda-4f5d-b95d-e88e39876af5","name":"tf-volume-vigorous-payne","status":"available","type":"sbs_15k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":20000000000,"status":"available","tags":[],"updated_at":"2025-09-30T10:20:33.251328Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 30 Sep 2025 10:20:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e87cc72d-3f83-44bd-8205-9fbaec04871b + status: 200 OK + code: 200 + duration: 203.953706ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/77efe3fe-191b-4ac2-be81-a1bd5adee76b method: DELETE response: proto: HTTP/2.0 @@ -2931,9 +2990,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:11 GMT + - Tue, 30 Sep 2025 10:20:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2941,11 +3000,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0688f76f-8eae-4cd6-9f78-024de952a3ce + - 7255bf59-e01a-441d-9aa1-05abc9264bb7 status: 204 No Content code: 204 - duration: 145.785938ms - - id: 60 + duration: 119.627709ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -2960,29 +3019,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a8db5f3-9725-4aad-9e39-e25606589910 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/175c6d5a-9c7d-4e4c-94b1-912123f0c17e + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 127 + content_length: 0 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"2a8db5f3-9725-4aad-9e39-e25606589910","type":"not_found"}' + body: "" headers: - Content-Length: - - "127" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:11 GMT + - Tue, 30 Sep 2025 10:20:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2990,11 +3047,689 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 88d4a11b-aee3-4a8a-ada9-6c0ff9c0ca79 - status: 404 Not Found - code: 404 - duration: 75.652138ms - - id: 61 + - 9b7aad0e-4cb4-4c73-b3e1-f2dd71bd82db + status: 204 No Content + code: 204 + duration: 119.632819ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/175c6d5a-9c7d-4e4c-94b1-912123f0c17e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 129 + uncompressed: false + body: '{"message":"resource is not found","resource":"snapshot","resource_id":"175c6d5a-9c7d-4e4c-94b1-912123f0c17e","type":"not_found"}' + headers: + Content-Length: + - "129" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 30 Sep 2025 10:20:38 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: + - 8ab05203-b5bd-4628-b42d-838a3f5eabff + status: 404 Not Found + code: 404 + duration: 43.230748ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/77efe3fe-191b-4ac2-be81-a1bd5adee76b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 129 + uncompressed: false + body: '{"message":"resource is not found","resource":"snapshot","resource_id":"77efe3fe-191b-4ac2-be81-a1bd5adee76b","type":"not_found"}' + headers: + Content-Length: + - "129" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 30 Sep 2025 10:20:38 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: + - 67ce8e53-5f98-4637-9ff3-945a9c3da79c + status: 404 Not Found + code: 404 + duration: 43.219045ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f38ab82b-dbda-4f5d-b95d-e88e39876af5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 424 + uncompressed: false + body: '{"created_at":"2025-09-30T10:20:17.642536Z","id":"f38ab82b-dbda-4f5d-b95d-e88e39876af5","last_detached_at":null,"name":"tf-volume-vigorous-payne","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-09-30T10:20:17.642536Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "424" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 30 Sep 2025 10:20:38 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: + - f1f5fa48-6435-4dc8-a323-a549992953d7 + status: 200 OK + code: 200 + duration: 41.747894ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d5a3ad21-568c-445d-bb63-4d648a2daa9a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 428 + uncompressed: false + body: '{"created_at":"2025-09-30T10:20:17.639617Z","id":"d5a3ad21-568c-445d-bb63-4d648a2daa9a","last_detached_at":null,"name":"tf-volume-mystifying-lederberg","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":40000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T10:20:17.639617Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "428" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 30 Sep 2025 10:20:38 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: + - e68e2d2e-87ec-4780-8072-32ce6ef8b17c + status: 200 OK + code: 200 + duration: 44.455547ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f38ab82b-dbda-4f5d-b95d-e88e39876af5 + 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, 30 Sep 2025 10:20:38 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: + - 7e7d6694-35a8-459f-b0f4-bb6b32a6e87a + status: 204 No Content + code: 204 + duration: 74.113414ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d5a3ad21-568c-445d-bb63-4d648a2daa9a + 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, 30 Sep 2025 10:20:38 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: + - da0465bc-6b99-473e-83dc-f4de13e8c750 + status: 204 No Content + code: 204 + duration: 82.004689ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d5a3ad21-568c-445d-bb63-4d648a2daa9a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 127 + uncompressed: false + body: '{"message":"resource is not found","resource":"volume","resource_id":"d5a3ad21-568c-445d-bb63-4d648a2daa9a","type":"not_found"}' + headers: + Content-Length: + - "127" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 30 Sep 2025 10:20:38 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: + - 40770c9b-4835-4f6e-86e4-98541e5081d3 + status: 404 Not Found + code: 404 + duration: 41.357632ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f38ab82b-dbda-4f5d-b95d-e88e39876af5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 127 + uncompressed: false + body: '{"message":"resource is not found","resource":"volume","resource_id":"f38ab82b-dbda-4f5d-b95d-e88e39876af5","type":"not_found"}' + headers: + Content-Length: + - "127" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 30 Sep 2025 10:20:38 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: + - 493ff9af-0b02-4d4a-9745-ff81b092a54b + status: 404 Not Found + code: 404 + duration: 52.35653ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/758d1347-1273-448a-9b06-199f9d05531b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 471 + uncompressed: false + body: '{"class":"sbs","created_at":"2025-09-30T10:20:23.026551Z","id":"758d1347-1273-448a-9b06-199f9d05531b","name":"tf-snapshot-suspicious-swanson","parent_volume":{"id":"99bf9077-ec68-49cb-a058-ad4be0b839e9","name":"tf-volume-upbeat-tereshkova","status":"available","type":"sbs_5k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":20000000000,"status":"available","tags":[],"updated_at":"2025-09-30T10:20:33.301842Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "471" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 30 Sep 2025 10:20:38 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: + - f93a6bfa-7696-4938-93ea-3ca334591f4b + status: 200 OK + code: 200 + duration: 218.716781ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/758d1347-1273-448a-9b06-199f9d05531b + 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, 30 Sep 2025 10:20:38 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: + - 72054f5f-70c3-4223-ae7f-b794bb413b5c + status: 204 No Content + code: 204 + duration: 242.991563ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/758d1347-1273-448a-9b06-199f9d05531b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 129 + uncompressed: false + body: '{"message":"resource is not found","resource":"snapshot","resource_id":"758d1347-1273-448a-9b06-199f9d05531b","type":"not_found"}' + headers: + Content-Length: + - "129" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 30 Sep 2025 10:20:38 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: + - c1a355fc-86cd-4b6d-be45-fa026027c9cc + status: 404 Not Found + code: 404 + duration: 49.495108ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/99bf9077-ec68-49cb-a058-ad4be0b839e9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 425 + uncompressed: false + body: '{"created_at":"2025-09-30T10:20:17.658670Z","id":"99bf9077-ec68-49cb-a058-ad4be0b839e9","last_detached_at":null,"name":"tf-volume-upbeat-tereshkova","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T10:20:17.658670Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "425" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 30 Sep 2025 10:20:38 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: + - ac485f8d-103c-498f-8a7d-7650c071189b + status: 200 OK + code: 200 + duration: 43.891829ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/99bf9077-ec68-49cb-a058-ad4be0b839e9 + 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, 30 Sep 2025 10:20:39 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: + - c1827329-2573-4490-a4ac-864c41477b6c + status: 204 No Content + code: 204 + duration: 84.019371ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/99bf9077-ec68-49cb-a058-ad4be0b839e9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 127 + uncompressed: false + body: '{"message":"resource is not found","resource":"volume","resource_id":"99bf9077-ec68-49cb-a058-ad4be0b839e9","type":"not_found"}' + headers: + Content-Length: + - "127" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 30 Sep 2025 10:20:39 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: + - 19f9e673-c11c-41bc-b519-84a1cd56d888 + status: 404 Not Found + code: 404 + duration: 45.846839ms + - id: 76 request: proto: HTTP/1.1 proto_major: 1 @@ -3009,8 +3744,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/353dbc9e-b6ac-4fb3-9c7f-13e308286d76 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/38b7ff1a-575a-4c05-b806-1ba96c5c0e3d method: GET response: proto: HTTP/2.0 @@ -3020,7 +3755,7 @@ interactions: trailer: {} content_length: 142 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_image","resource_id":"353dbc9e-b6ac-4fb3-9c7f-13e308286d76","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_image","resource_id":"38b7ff1a-575a-4c05-b806-1ba96c5c0e3d","type":"not_found"}' headers: Content-Length: - "142" @@ -3029,9 +3764,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:12 GMT + - Tue, 30 Sep 2025 10:20:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3039,7 +3774,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cf2d025d-000b-4300-8468-1e9d200f5712 + - de11384e-ac94-49f9-b29a-cb6559c32c1f status: 404 Not Found code: 404 - duration: 42.293617ms + duration: 29.344719ms diff --git a/internal/services/instance/testdata/image-server-with-local-volume.cassette.yaml b/internal/services/instance/testdata/image-server-with-local-volume.cassette.yaml index 0ba43a211..f35377ec9 100644 --- a/internal/services/instance/testdata/image-server-with-local-volume.cassette.yaml +++ b/internal/services/instance/testdata/image-server-with-local-volume.cassette.yaml @@ -16,7 +16,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: @@ -36,11 +36,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:38 GMT + - Wed, 08 Oct 2025 22:11:11 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,12 +48,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ce5f4a6d-5390-45cc-8f5c-8466836fd52e + - f9d96d64-f879-4c7c-ab47-c4798eb6b71c X-Total-Count: - "75" status: 200 OK code: 200 - duration: 73.030102ms + duration: 197.735874ms - id: 1 request: proto: HTTP/1.1 @@ -69,8 +69,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -78,22 +78,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 39208 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "39208" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:38 GMT + - Wed, 08 Oct 2025 22:11:11 GMT Link: - - ; rel="first",; rel="previous",; rel="last" + - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,12 +101,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b032fe06-3d08-4670-9483-7ea31492d077 + - a52fbdb3-d545-45a0-9ea4-29f49c314149 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 78.452731ms + duration: 198.033978ms - id: 2 request: proto: HTTP/1.1 @@ -122,8 +122,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -131,20 +131,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 39208 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["START1-XS","X64-60GB","GP1-M","DEV1-L","GP1-XL","GP1-XS","DEV1-XL","START1-M","DEV1-M","DEV1-S","VC1M","GP1-L","START1-S","X64-30GB","VC1L","VC1S","STARDUST1-S","GP1-S","X64-120GB","X64-15GB","START1-L"],"id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "423" + - "39208" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:38 GMT + - Wed, 08 Oct 2025 22:11:11 GMT + Link: + - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,52 +154,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d291a509-eeaa-4d22-b426-db5e2847cb08 + - 74fc469f-c935-4f35-a756-b67c9450949b + X-Total-Count: + - "75" status: 200 OK code: 200 - duration: 136.439911ms + duration: 293.241697ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 276 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-fervent-lehmann","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","volumes":{"0":{"boot":false,"size":15000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2162 + content_length: 19730 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:38.789226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-lehmann","id":"d1bb834f-67f4-4c47-95ae-dad144790b20","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:69","maintenances":[],"modification_date":"2025-06-10T15:30:38.789226+00:00","name":"tf-srv-fervent-lehmann","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,"creation_date":"2025-06-10T15:30:38.789226+00:00","export_uri":null,"id":"eb26164f-d790-4bb7-ac74-595c2cd8fb55","modification_date":"2025-06-10T15:30:38.789226+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d1bb834f-67f4-4c47-95ae-dad144790b20","name":"tf-srv-fervent-lehmann"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "2162" + - "19730" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:39 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d1bb834f-67f4-4c47-95ae-dad144790b20 + - Wed, 08 Oct 2025 22:11:11 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -205,10 +207,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f9175e26-4a8b-4115-8f26-2cc7dfea2537 - status: 201 Created - code: 201 - duration: 612.363516ms + - 36a76cf3-f8fe-43d4-9609-0617383900f3 + X-Total-Count: + - "75" + status: 200 OK + code: 200 + duration: 105.800402ms - id: 4 request: proto: HTTP/1.1 @@ -224,8 +228,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d1bb834f-67f4-4c47-95ae-dad144790b20 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: proto: HTTP/2.0 @@ -233,20 +237,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2162 + content_length: 19730 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:38.789226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-lehmann","id":"d1bb834f-67f4-4c47-95ae-dad144790b20","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:69","maintenances":[],"modification_date":"2025-06-10T15:30:38.789226+00:00","name":"tf-srv-fervent-lehmann","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,"creation_date":"2025-06-10T15:30:38.789226+00:00","export_uri":null,"id":"eb26164f-d790-4bb7-ac74-595c2cd8fb55","modification_date":"2025-06-10T15:30:38.789226+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d1bb834f-67f4-4c47-95ae-dad144790b20","name":"tf-srv-fervent-lehmann"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "2162" + - "19730" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:39 GMT + - Wed, 08 Oct 2025 22:11:11 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +260,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d62399e7-e5f8-40ba-81aa-e71eacfbc92a + - c3828156-540c-41ff-939b-9ca85fa9fca0 + X-Total-Count: + - "75" status: 200 OK code: 200 - duration: 212.74241ms + duration: 101.296722ms - id: 5 request: proto: HTTP/1.1 @@ -273,8 +281,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d1bb834f-67f4-4c47-95ae-dad144790b20 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: proto: HTTP/2.0 @@ -282,20 +290,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2162 + content_length: 19730 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:38.789226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-lehmann","id":"d1bb834f-67f4-4c47-95ae-dad144790b20","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:69","maintenances":[],"modification_date":"2025-06-10T15:30:38.789226+00:00","name":"tf-srv-fervent-lehmann","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,"creation_date":"2025-06-10T15:30:38.789226+00:00","export_uri":null,"id":"eb26164f-d790-4bb7-ac74-595c2cd8fb55","modification_date":"2025-06-10T15:30:38.789226+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d1bb834f-67f4-4c47-95ae-dad144790b20","name":"tf-srv-fervent-lehmann"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "2162" + - "19730" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:39 GMT + - Wed, 08 Oct 2025 22:11:11 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,52 +313,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 78949625-d36c-4442-8e5d-a2953b3c89a3 + - 7cb07e74-de86-432b-a86e-d809154dae26 + X-Total-Count: + - "75" status: 200 OK code: 200 - duration: 547.800642ms + duration: 105.754975ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 20 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweron"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d1bb834f-67f4-4c47-95ae-dad144790b20/action - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 357 + content_length: 423 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/d1bb834f-67f4-4c47-95ae-dad144790b20/action","href_result":"/servers/d1bb834f-67f4-4c47-95ae-dad144790b20","id":"cb9d0052-407f-451e-9683-1b30dccc97db","progress":0,"started_at":"2025-06-10T15:30:40.073417+00:00","status":"pending","terminated_at":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","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "357" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:40 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/cb9d0052-407f-451e-9683-1b30dccc97db + - Wed, 08 Oct 2025 22:11:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -356,10 +364,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 67a2727c-c0e3-45c3-adb6-396e71aff741 - status: 202 Accepted - code: 202 - duration: 248.106953ms + - c218b6ba-3ed5-4788-9414-03ef401f199e + status: 200 OK + code: 200 + duration: 59.212446ms - id: 7 request: proto: HTTP/1.1 @@ -375,8 +383,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d1bb834f-67f4-4c47-95ae-dad144790b20 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: proto: HTTP/2.0 @@ -384,20 +392,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2184 + content_length: 423 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-06-10T15:30:38.789226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-lehmann","id":"d1bb834f-67f4-4c47-95ae-dad144790b20","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:69","maintenances":[],"modification_date":"2025-06-10T15:30:39.870108+00:00","name":"tf-srv-fervent-lehmann","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,"creation_date":"2025-06-10T15:30:38.789226+00:00","export_uri":null,"id":"eb26164f-d790-4bb7-ac74-595c2cd8fb55","modification_date":"2025-06-10T15:30:38.789226+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d1bb834f-67f4-4c47-95ae-dad144790b20","name":"tf-srv-fervent-lehmann"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "2184" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:40 GMT + - Wed, 08 Oct 2025 22:11:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -405,10 +413,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 01f749bc-0361-4b38-a9cb-fd9730ffc0cf + - 2147573d-e72e-4044-b2c7-4042d85aa3a0 status: 200 OK code: 200 - duration: 209.397026ms + duration: 59.411994ms - id: 8 request: proto: HTTP/1.1 @@ -424,8 +432,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d1bb834f-67f4-4c47-95ae-dad144790b20 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: proto: HTTP/2.0 @@ -433,20 +441,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2287 + content_length: 423 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-06-10T15:30:38.789226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-lehmann","id":"d1bb834f-67f4-4c47-95ae-dad144790b20","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"403","node_id":"26","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:69","maintenances":[],"modification_date":"2025-06-10T15:30:39.870108+00:00","name":"tf-srv-fervent-lehmann","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,"creation_date":"2025-06-10T15:30:38.789226+00:00","export_uri":null,"id":"eb26164f-d790-4bb7-ac74-595c2cd8fb55","modification_date":"2025-06-10T15:30:38.789226+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d1bb834f-67f4-4c47-95ae-dad144790b20","name":"tf-srv-fervent-lehmann"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "2287" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:45 GMT + - Wed, 08 Oct 2025 22:11:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -454,48 +462,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f7d70ed0-5eac-4f03-b93c-ef4a166172df + - 0216eb97-35b6-4036-a279-6e3c22448a33 status: 200 OK code: 200 - duration: 145.96812ms + duration: 64.462769ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 282 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-srv-interesting-sanderson","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","volumes":{"0":{"boot":false,"size":20000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d1bb834f-67f4-4c47-95ae-dad144790b20 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/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: 2287 + content_length: 2178 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-06-10T15:30:38.789226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-lehmann","id":"d1bb834f-67f4-4c47-95ae-dad144790b20","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"403","node_id":"26","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:69","maintenances":[],"modification_date":"2025-06-10T15:30:39.870108+00:00","name":"tf-srv-fervent-lehmann","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,"creation_date":"2025-06-10T15:30:38.789226+00:00","export_uri":null,"id":"eb26164f-d790-4bb7-ac74-595c2cd8fb55","modification_date":"2025-06-10T15:30:38.789226+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d1bb834f-67f4-4c47-95ae-dad144790b20","name":"tf-srv-fervent-lehmann"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.006735+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-interesting-sanderson","id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:75:a9","maintenances":[],"modification_date":"2025-10-08T22:11:12.006735+00:00","name":"tf-srv-interesting-sanderson","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.006735+00:00","export_uri":null,"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","modification_date":"2025-10-08T22:11:12.006735+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","name":"tf-srv-interesting-sanderson"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2287" + - "2178" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:50 GMT + - Wed, 08 Oct 2025 22:11:12 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -503,48 +515,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ef4153e6-b302-4a43-a23d-ae6a2a1192ab - status: 200 OK - code: 200 - duration: 160.788795ms + - cad585ae-89e6-4e90-9a5b-b490afa7941c + status: 201 Created + code: 201 + duration: 434.462003ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 277 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-srv-amazing-driscoll","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","volumes":{"0":{"boot":false,"size":10000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d1bb834f-67f4-4c47-95ae-dad144790b20 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/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: 2318 + content_length: 2163 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-06-10T15:30:38.789226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-lehmann","id":"d1bb834f-67f4-4c47-95ae-dad144790b20","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"403","node_id":"26","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:69","maintenances":[],"modification_date":"2025-06-10T15:30:52.566517+00:00","name":"tf-srv-fervent-lehmann","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,"creation_date":"2025-06-10T15:30:38.789226+00:00","export_uri":null,"id":"eb26164f-d790-4bb7-ac74-595c2cd8fb55","modification_date":"2025-06-10T15:30:38.789226+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d1bb834f-67f4-4c47-95ae-dad144790b20","name":"tf-srv-fervent-lehmann"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.039313+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-driscoll","id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:75:ad","maintenances":[],"modification_date":"2025-10-08T22:11:12.039313+00:00","name":"tf-srv-amazing-driscoll","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.039313+00:00","export_uri":null,"id":"765d8905-fd5d-4f27-812a-083baa39625e","modification_date":"2025-10-08T22:11:12.039313+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","name":"tf-srv-amazing-driscoll"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2318" + - "2163" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:55 GMT + - Wed, 08 Oct 2025 22:11:12 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -552,48 +568,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 463e6217-c61a-431a-a7f9-90542da95728 - status: 200 OK - code: 200 - duration: 195.987417ms + - 43fe15d4-27c2-4ccb-9e36-b745645b1cff + status: 201 Created + code: 201 + duration: 442.560615ms - id: 11 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 274 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-srv-epic-brattain","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","volumes":{"0":{"boot":false,"size":15000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d1bb834f-67f4-4c47-95ae-dad144790b20 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/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: 2318 + content_length: 2154 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-06-10T15:30:38.789226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-lehmann","id":"d1bb834f-67f4-4c47-95ae-dad144790b20","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"403","node_id":"26","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:69","maintenances":[],"modification_date":"2025-06-10T15:30:52.566517+00:00","name":"tf-srv-fervent-lehmann","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,"creation_date":"2025-06-10T15:30:38.789226+00:00","export_uri":null,"id":"eb26164f-d790-4bb7-ac74-595c2cd8fb55","modification_date":"2025-06-10T15:30:38.789226+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d1bb834f-67f4-4c47-95ae-dad144790b20","name":"tf-srv-fervent-lehmann"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.035555+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-epic-brattain","id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:75:ab","maintenances":[],"modification_date":"2025-10-08T22:11:12.035555+00:00","name":"tf-srv-epic-brattain","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.035555+00:00","export_uri":null,"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","modification_date":"2025-10-08T22:11:12.035555+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","name":"tf-srv-epic-brattain"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2318" + - "2154" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:55 GMT + - Wed, 08 Oct 2025 22:11:12 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -601,10 +621,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - da987ea3-08e5-454e-9e11-6d063f2061c4 - status: 200 OK - code: 200 - duration: 198.364053ms + - 8cf65f30-c70b-4733-9569-192205f4ebb3 + status: 201 Created + code: 201 + duration: 452.104328ms - id: 12 request: proto: HTTP/1.1 @@ -620,8 +640,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/eb26164f-d790-4bb7-ac74-595c2cd8fb55 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413 method: GET response: proto: HTTP/2.0 @@ -629,20 +649,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 522 + content_length: 2178 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:30:38.789226+00:00","export_uri":null,"id":"eb26164f-d790-4bb7-ac74-595c2cd8fb55","modification_date":"2025-06-10T15:30:38.789226+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d1bb834f-67f4-4c47-95ae-dad144790b20","name":"tf-srv-fervent-lehmann"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","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-10-08T22:11:12.006735+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-interesting-sanderson","id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:75:a9","maintenances":[],"modification_date":"2025-10-08T22:11:12.006735+00:00","name":"tf-srv-interesting-sanderson","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.006735+00:00","export_uri":null,"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","modification_date":"2025-10-08T22:11:12.006735+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","name":"tf-srv-interesting-sanderson"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "522" + - "2178" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:56 GMT + - Wed, 08 Oct 2025 22:11:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -650,10 +670,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5693b966-ad8e-48f3-87b1-951f73d4f8f1 + - 98197ccb-4953-4f10-ba7a-504edbd3d642 status: 200 OK code: 200 - duration: 139.163829ms + duration: 115.287402ms - id: 13 request: proto: HTTP/1.1 @@ -669,8 +689,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d1bb834f-67f4-4c47-95ae-dad144790b20/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0 method: GET response: proto: HTTP/2.0 @@ -678,20 +698,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 2163 uncompressed: false - body: '{"user_data":[]}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.039313+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-driscoll","id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:75:ad","maintenances":[],"modification_date":"2025-10-08T22:11:12.039313+00:00","name":"tf-srv-amazing-driscoll","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.039313+00:00","export_uri":null,"id":"765d8905-fd5d-4f27-812a-083baa39625e","modification_date":"2025-10-08T22:11:12.039313+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","name":"tf-srv-amazing-driscoll"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "2163" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:56 GMT + - Wed, 08 Oct 2025 22:11:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -699,10 +719,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 61e0ad57-76b4-4a74-a171-02d166892664 + - 33da2753-aa2e-4e6a-a647-b41be87b3fce status: 200 OK code: 200 - duration: 101.437236ms + duration: 103.283483ms - id: 14 request: proto: HTTP/1.1 @@ -718,8 +738,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d1bb834f-67f4-4c47-95ae-dad144790b20/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305 method: GET response: proto: HTTP/2.0 @@ -727,22 +747,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 2154 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.035555+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-epic-brattain","id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:75:ab","maintenances":[],"modification_date":"2025-10-08T22:11:12.035555+00:00","name":"tf-srv-epic-brattain","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.035555+00:00","export_uri":null,"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","modification_date":"2025-10-08T22:11:12.035555+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","name":"tf-srv-epic-brattain"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "2154" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:56 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 22:11:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -750,52 +768,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3465e674-8058-44f8-b5e4-c60cc1d04c25 - X-Total-Count: - - "0" + - 7a3e088e-f1ca-4d0a-a9f0-7b93edd52c8d status: 200 OK code: 200 - duration: 95.321306ms + duration: 101.903069ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 134 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-snap-adoring-shirley","volume_id":"eb26164f-d790-4bb7-ac74-595c2cd8fb55","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 847 + content_length: 2163 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"eb26164f-d790-4bb7-ac74-595c2cd8fb55","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-06-10T15:30:56.562573+00:00","error_details":null,"id":"b1d96ef8-34c7-4ee6-afbf-65c818fdefee","modification_date":"2025-06-10T15:30:56.562573+00:00","name":"tf-snap-adoring-shirley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"task":{"description":"volume_snapshot","href_from":"/snapshots","href_result":"snapshots/b1d96ef8-34c7-4ee6-afbf-65c818fdefee","id":"d9fc3da4-5eab-4308-af4e-e802838a9168","progress":0,"started_at":"2025-06-10T15:30:56.803234+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.039313+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-driscoll","id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:75:ad","maintenances":[],"modification_date":"2025-10-08T22:11:12.039313+00:00","name":"tf-srv-amazing-driscoll","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.039313+00:00","export_uri":null,"id":"765d8905-fd5d-4f27-812a-083baa39625e","modification_date":"2025-10-08T22:11:12.039313+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","name":"tf-srv-amazing-driscoll"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "847" + - "2163" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:56 GMT + - Wed, 08 Oct 2025 22:11:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -803,10 +817,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2cfa5193-b3a5-46e1-8a04-1fe2991b3ad9 - status: 201 Created - code: 201 - duration: 602.972118ms + - d5c5ea44-bfff-48a6-b01c-f39913bd5b24 + status: 200 OK + code: 200 + duration: 87.990476ms - id: 16 request: proto: HTTP/1.1 @@ -822,8 +836,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/b1d96ef8-34c7-4ee6-afbf-65c818fdefee + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305 method: GET response: proto: HTTP/2.0 @@ -831,20 +845,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 536 + content_length: 2154 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"eb26164f-d790-4bb7-ac74-595c2cd8fb55","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-06-10T15:30:56.562573+00:00","error_details":null,"id":"b1d96ef8-34c7-4ee6-afbf-65c818fdefee","modification_date":"2025-06-10T15:30:56.562573+00:00","name":"tf-snap-adoring-shirley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","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-10-08T22:11:12.035555+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-epic-brattain","id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:75:ab","maintenances":[],"modification_date":"2025-10-08T22:11:12.035555+00:00","name":"tf-srv-epic-brattain","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.035555+00:00","export_uri":null,"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","modification_date":"2025-10-08T22:11:12.035555+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","name":"tf-srv-epic-brattain"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "536" + - "2154" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:57 GMT + - Wed, 08 Oct 2025 22:11:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -852,10 +866,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d5518591-edd1-4ddc-bdf6-3e6fbcc445ba + - 058551ac-b29d-40d7-96a1-fcad4646402b status: 200 OK code: 200 - duration: 129.657962ms + duration: 84.537458ms - id: 17 request: proto: HTTP/1.1 @@ -871,8 +885,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/b1d96ef8-34c7-4ee6-afbf-65c818fdefee + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413 method: GET response: proto: HTTP/2.0 @@ -880,20 +894,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 536 + content_length: 2178 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"eb26164f-d790-4bb7-ac74-595c2cd8fb55","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-06-10T15:30:56.562573+00:00","error_details":null,"id":"b1d96ef8-34c7-4ee6-afbf-65c818fdefee","modification_date":"2025-06-10T15:30:56.562573+00:00","name":"tf-snap-adoring-shirley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","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-10-08T22:11:12.006735+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-interesting-sanderson","id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:75:a9","maintenances":[],"modification_date":"2025-10-08T22:11:12.006735+00:00","name":"tf-srv-interesting-sanderson","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.006735+00:00","export_uri":null,"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","modification_date":"2025-10-08T22:11:12.006735+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","name":"tf-srv-interesting-sanderson"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "536" + - "2178" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:02 GMT + - Wed, 08 Oct 2025 22:11:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -901,48 +915,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a5e80732-060e-486a-bedc-56327ea21720 + - a14b1b85-bfd6-4a12-8cbb-f658200b356a status: 200 OK code: 200 - duration: 94.919943ms + duration: 95.335123ms - id: 18 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 20 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"poweron"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/b1d96ef8-34c7-4ee6-afbf-65c818fdefee - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 536 + content_length: 357 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"eb26164f-d790-4bb7-ac74-595c2cd8fb55","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-06-10T15:30:56.562573+00:00","error_details":null,"id":"b1d96ef8-34c7-4ee6-afbf-65c818fdefee","modification_date":"2025-06-10T15:30:56.562573+00:00","name":"tf-snap-adoring-shirley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305/action","href_result":"/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305","id":"0c64c08d-5c26-425c-867f-4fe326419538","progress":0,"started_at":"2025-10-08T22:11:12.671238+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "536" + - "357" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:07 GMT + - Wed, 08 Oct 2025 22:11:12 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/0c64c08d-5c26-425c-867f-4fe326419538 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -950,48 +968,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6599b7dd-0ed1-41ec-a052-d113a1ba5cb7 - status: 200 OK - code: 200 - duration: 114.675343ms + - 7211a99a-05a5-430b-bbd6-21cf08a79b1f + status: 202 Accepted + code: 202 + duration: 218.473569ms - id: 19 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 20 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"poweron"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/b1d96ef8-34c7-4ee6-afbf-65c818fdefee - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 536 + content_length: 357 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"eb26164f-d790-4bb7-ac74-595c2cd8fb55","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-06-10T15:30:56.562573+00:00","error_details":null,"id":"b1d96ef8-34c7-4ee6-afbf-65c818fdefee","modification_date":"2025-06-10T15:30:56.562573+00:00","name":"tf-snap-adoring-shirley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0/action","href_result":"/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","id":"eb45eb22-58a6-4995-88e4-57990defc5d8","progress":0,"started_at":"2025-10-08T22:11:12.719686+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "536" + - "357" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:12 GMT + - Wed, 08 Oct 2025 22:11:12 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/eb45eb22-58a6-4995-88e4-57990defc5d8 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -999,10 +1021,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f1c30279-8de4-4eb3-87c1-be99ba7b3ba8 - status: 200 OK - code: 200 - duration: 155.713375ms + - 6ac903d6-69b8-4226-b7c5-3f3cbf67c315 + status: 202 Accepted + code: 202 + duration: 266.383004ms - id: 20 request: proto: HTTP/1.1 @@ -1018,8 +1040,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/b1d96ef8-34c7-4ee6-afbf-65c818fdefee + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305 method: GET response: proto: HTTP/2.0 @@ -1027,20 +1049,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 536 + content_length: 2176 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"eb26164f-d790-4bb7-ac74-595c2cd8fb55","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-06-10T15:30:56.562573+00:00","error_details":null,"id":"b1d96ef8-34c7-4ee6-afbf-65c818fdefee","modification_date":"2025-06-10T15:30:56.562573+00:00","name":"tf-snap-adoring-shirley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","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-10-08T22:11:12.035555+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-epic-brattain","id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:75:ab","maintenances":[],"modification_date":"2025-10-08T22:11:12.517436+00:00","name":"tf-srv-epic-brattain","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.035555+00:00","export_uri":null,"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","modification_date":"2025-10-08T22:11:12.035555+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","name":"tf-srv-epic-brattain"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "536" + - "2176" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:17 GMT + - Wed, 08 Oct 2025 22:11:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1048,10 +1070,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 36aff057-9572-4a8d-8add-d715cda5a0fd + - 35541a5b-a78f-40db-a892-881dfe1ca2d4 status: 200 OK code: 200 - duration: 114.003342ms + duration: 100.929034ms - id: 21 request: proto: HTTP/1.1 @@ -1067,8 +1089,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/b1d96ef8-34c7-4ee6-afbf-65c818fdefee + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0 method: GET response: proto: HTTP/2.0 @@ -1076,20 +1098,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 536 + content_length: 2185 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"eb26164f-d790-4bb7-ac74-595c2cd8fb55","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-06-10T15:30:56.562573+00:00","error_details":null,"id":"b1d96ef8-34c7-4ee6-afbf-65c818fdefee","modification_date":"2025-06-10T15:30:56.562573+00:00","name":"tf-snap-adoring-shirley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","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-10-08T22:11:12.039313+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-driscoll","id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:75:ad","maintenances":[],"modification_date":"2025-10-08T22:11:12.518406+00:00","name":"tf-srv-amazing-driscoll","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.039313+00:00","export_uri":null,"id":"765d8905-fd5d-4f27-812a-083baa39625e","modification_date":"2025-10-08T22:11:12.039313+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","name":"tf-srv-amazing-driscoll"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "536" + - "2185" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:22 GMT + - Wed, 08 Oct 2025 22:11:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1097,48 +1119,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 66c1913b-1da9-4924-8bc2-4d99c4dd8ee3 + - f666e1ae-7017-4459-9ab3-e4aa87a91649 status: 200 OK code: 200 - duration: 128.641665ms + duration: 89.500065ms - id: 22 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 20 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"poweron"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/b1d96ef8-34c7-4ee6-afbf-65c818fdefee - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 536 + content_length: 357 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"eb26164f-d790-4bb7-ac74-595c2cd8fb55","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-06-10T15:30:56.562573+00:00","error_details":null,"id":"b1d96ef8-34c7-4ee6-afbf-65c818fdefee","modification_date":"2025-06-10T15:30:56.562573+00:00","name":"tf-snap-adoring-shirley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413/action","href_result":"/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413","id":"2ffd453e-7322-4e32-a8f0-c46e3db788ee","progress":0,"started_at":"2025-10-08T22:11:12.881913+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "536" + - "357" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:27 GMT + - Wed, 08 Oct 2025 22:11:12 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/2ffd453e-7322-4e32-a8f0-c46e3db788ee Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1146,10 +1172,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 10914741-a776-4357-9eef-56b466add866 - status: 200 OK - code: 200 - duration: 99.403641ms + - e2037d1c-ea07-4019-92a3-017a0312bd8e + status: 202 Accepted + code: 202 + duration: 419.036626ms - id: 23 request: proto: HTTP/1.1 @@ -1165,8 +1191,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/b1d96ef8-34c7-4ee6-afbf-65c818fdefee + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413 method: GET response: proto: HTTP/2.0 @@ -1174,20 +1200,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 2200 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"eb26164f-d790-4bb7-ac74-595c2cd8fb55","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-06-10T15:30:56.562573+00:00","error_details":null,"id":"b1d96ef8-34c7-4ee6-afbf-65c818fdefee","modification_date":"2025-06-10T15:31:32.623679+00:00","name":"tf-snap-adoring-shirley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","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-10-08T22:11:12.006735+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-interesting-sanderson","id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:75:a9","maintenances":[],"modification_date":"2025-10-08T22:11:12.518729+00:00","name":"tf-srv-interesting-sanderson","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.006735+00:00","export_uri":null,"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","modification_date":"2025-10-08T22:11:12.006735+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","name":"tf-srv-interesting-sanderson"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "533" + - "2200" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:32 GMT + - Wed, 08 Oct 2025 22:11:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1195,10 +1221,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b31c84d6-a393-4cb3-bcf8-76aae68e0a16 + - b19e75f5-73bb-4c05-bcc9-8910384ce09f status: 200 OK code: 200 - duration: 120.561119ms + duration: 100.251085ms - id: 24 request: proto: HTTP/1.1 @@ -1214,8 +1240,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/b1d96ef8-34c7-4ee6-afbf-65c818fdefee + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305 method: GET response: proto: HTTP/2.0 @@ -1223,20 +1249,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 2280 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"eb26164f-d790-4bb7-ac74-595c2cd8fb55","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-06-10T15:30:56.562573+00:00","error_details":null,"id":"b1d96ef8-34c7-4ee6-afbf-65c818fdefee","modification_date":"2025-06-10T15:31:32.623679+00:00","name":"tf-snap-adoring-shirley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","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-10-08T22:11:12.035555+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-epic-brattain","id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"2002","node_id":"45","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ab","maintenances":[],"modification_date":"2025-10-08T22:11:12.517436+00:00","name":"tf-srv-epic-brattain","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.035555+00:00","export_uri":null,"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","modification_date":"2025-10-08T22:11:12.035555+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","name":"tf-srv-epic-brattain"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "533" + - "2280" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:33 GMT + - Wed, 08 Oct 2025 22:11:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1244,10 +1270,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 42418305-b161-46e6-b8da-ac7cbd3a9955 + - 924d0268-c182-45c0-a6f4-f3f1606172ca status: 200 OK code: 200 - duration: 103.025844ms + duration: 89.749265ms - id: 25 request: proto: HTTP/1.1 @@ -1263,8 +1289,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d1bb834f-67f4-4c47-95ae-dad144790b20 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0 method: GET response: proto: HTTP/2.0 @@ -1272,20 +1298,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2318 + 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-06-10T15:30:38.789226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-lehmann","id":"d1bb834f-67f4-4c47-95ae-dad144790b20","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"403","node_id":"26","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:69","maintenances":[],"modification_date":"2025-06-10T15:30:52.566517+00:00","name":"tf-srv-fervent-lehmann","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,"creation_date":"2025-06-10T15:30:38.789226+00:00","export_uri":null,"id":"eb26164f-d790-4bb7-ac74-595c2cd8fb55","modification_date":"2025-06-10T15:31:32.623679+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d1bb834f-67f4-4c47-95ae-dad144790b20","name":"tf-srv-fervent-lehmann"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.039313+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-driscoll","id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"501","node_id":"28","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ad","maintenances":[],"modification_date":"2025-10-08T22:11:12.518406+00:00","name":"tf-srv-amazing-driscoll","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.039313+00:00","export_uri":null,"id":"765d8905-fd5d-4f27-812a-083baa39625e","modification_date":"2025-10-08T22:11:12.039313+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","name":"tf-srv-amazing-driscoll"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2318" + - "2288" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:33 GMT + - Wed, 08 Oct 2025 22:11:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1293,10 +1319,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b5d86977-00e8-44dc-a0b4-45756d927192 + - be108307-fe05-4073-bb21-1ba78a4071a4 status: 200 OK code: 200 - duration: 176.611025ms + duration: 102.274881ms - id: 26 request: proto: HTTP/1.1 @@ -1312,8 +1338,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/b1d96ef8-34c7-4ee6-afbf-65c818fdefee + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413 method: GET response: proto: HTTP/2.0 @@ -1321,20 +1347,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 2303 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"eb26164f-d790-4bb7-ac74-595c2cd8fb55","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-06-10T15:30:56.562573+00:00","error_details":null,"id":"b1d96ef8-34c7-4ee6-afbf-65c818fdefee","modification_date":"2025-06-10T15:31:32.623679+00:00","name":"tf-snap-adoring-shirley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","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-10-08T22:11:12.006735+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-interesting-sanderson","id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"202","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:a9","maintenances":[],"modification_date":"2025-10-08T22:11:12.518729+00:00","name":"tf-srv-interesting-sanderson","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.006735+00:00","export_uri":null,"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","modification_date":"2025-10-08T22:11:12.006735+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","name":"tf-srv-interesting-sanderson"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "533" + - "2303" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:33 GMT + - Wed, 08 Oct 2025 22:11:18 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1342,10 +1368,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a4ded9fb-408a-41e8-9629-7df33edbfb62 + - ff36d202-be7f-4432-a115-d3fd482b4f3a status: 200 OK code: 200 - duration: 132.423817ms + duration: 91.372631ms - id: 27 request: proto: HTTP/1.1 @@ -1361,8 +1387,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d1bb834f-67f4-4c47-95ae-dad144790b20 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305 method: GET response: proto: HTTP/2.0 @@ -1370,20 +1396,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2318 + content_length: 2280 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-06-10T15:30:38.789226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-lehmann","id":"d1bb834f-67f4-4c47-95ae-dad144790b20","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"403","node_id":"26","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:69","maintenances":[],"modification_date":"2025-06-10T15:30:52.566517+00:00","name":"tf-srv-fervent-lehmann","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,"creation_date":"2025-06-10T15:30:38.789226+00:00","export_uri":null,"id":"eb26164f-d790-4bb7-ac74-595c2cd8fb55","modification_date":"2025-06-10T15:31:32.623679+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d1bb834f-67f4-4c47-95ae-dad144790b20","name":"tf-srv-fervent-lehmann"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.035555+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-epic-brattain","id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"2002","node_id":"45","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ab","maintenances":[],"modification_date":"2025-10-08T22:11:12.517436+00:00","name":"tf-srv-epic-brattain","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.035555+00:00","export_uri":null,"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","modification_date":"2025-10-08T22:11:12.035555+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","name":"tf-srv-epic-brattain"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2318" + - "2280" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:34 GMT + - Wed, 08 Oct 2025 22:11:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1391,10 +1417,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8ee69337-a87d-403f-9c6f-565a337422a6 + - 528702fa-cfd0-4e3f-9663-1abdd9efbd12 status: 200 OK code: 200 - duration: 192.124038ms + duration: 99.946902ms - id: 28 request: proto: HTTP/1.1 @@ -1410,8 +1436,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/eb26164f-d790-4bb7-ac74-595c2cd8fb55 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0 method: GET response: proto: HTTP/2.0 @@ -1419,20 +1445,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 522 + content_length: 2288 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:30:38.789226+00:00","export_uri":null,"id":"eb26164f-d790-4bb7-ac74-595c2cd8fb55","modification_date":"2025-06-10T15:31:32.623679+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d1bb834f-67f4-4c47-95ae-dad144790b20","name":"tf-srv-fervent-lehmann"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","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-10-08T22:11:12.039313+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-driscoll","id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"501","node_id":"28","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ad","maintenances":[],"modification_date":"2025-10-08T22:11:12.518406+00:00","name":"tf-srv-amazing-driscoll","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.039313+00:00","export_uri":null,"id":"765d8905-fd5d-4f27-812a-083baa39625e","modification_date":"2025-10-08T22:11:12.039313+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","name":"tf-srv-amazing-driscoll"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "522" + - "2288" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:34 GMT + - Wed, 08 Oct 2025 22:11:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1440,10 +1466,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1566b23a-677f-4440-8246-1eeccb08dce4 + - 43bd463e-d4e3-4147-a830-bd1e712aca54 status: 200 OK code: 200 - duration: 109.133097ms + duration: 90.252317ms - id: 29 request: proto: HTTP/1.1 @@ -1459,8 +1485,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d1bb834f-67f4-4c47-95ae-dad144790b20/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413 method: GET response: proto: HTTP/2.0 @@ -1468,20 +1494,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 2303 uncompressed: false - body: '{"user_data":[]}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.006735+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-interesting-sanderson","id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"202","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:a9","maintenances":[],"modification_date":"2025-10-08T22:11:12.518729+00:00","name":"tf-srv-interesting-sanderson","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.006735+00:00","export_uri":null,"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","modification_date":"2025-10-08T22:11:12.006735+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","name":"tf-srv-interesting-sanderson"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "2303" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:34 GMT + - Wed, 08 Oct 2025 22:11:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1489,10 +1515,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed0a98f7-e160-42b3-b8bd-61e5375f8336 + - 341f159f-c213-454b-9b4b-367528bdbf7b status: 200 OK code: 200 - duration: 104.735521ms + duration: 262.44417ms - id: 30 request: proto: HTTP/1.1 @@ -1508,8 +1534,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d1bb834f-67f4-4c47-95ae-dad144790b20/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305 method: GET response: proto: HTTP/2.0 @@ -1517,22 +1543,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 2280 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.035555+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-epic-brattain","id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"2002","node_id":"45","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ab","maintenances":[],"modification_date":"2025-10-08T22:11:12.517436+00:00","name":"tf-srv-epic-brattain","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.035555+00:00","export_uri":null,"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","modification_date":"2025-10-08T22:11:12.035555+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","name":"tf-srv-epic-brattain"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "2280" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:34 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 22:11:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1540,12 +1564,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fb0ea6d3-69d3-40f7-be54-dd3ec633c187 - X-Total-Count: - - "0" + - ce1a7132-8fae-499b-b2cf-14a5559f872a status: 200 OK code: 200 - duration: 180.09046ms + duration: 89.295854ms - id: 31 request: proto: HTTP/1.1 @@ -1561,8 +1583,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/b1d96ef8-34c7-4ee6-afbf-65c818fdefee + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0 method: GET response: proto: HTTP/2.0 @@ -1570,20 +1592,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 2288 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"eb26164f-d790-4bb7-ac74-595c2cd8fb55","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-06-10T15:30:56.562573+00:00","error_details":null,"id":"b1d96ef8-34c7-4ee6-afbf-65c818fdefee","modification_date":"2025-06-10T15:31:32.623679+00:00","name":"tf-snap-adoring-shirley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","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-10-08T22:11:12.039313+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-driscoll","id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"501","node_id":"28","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ad","maintenances":[],"modification_date":"2025-10-08T22:11:12.518406+00:00","name":"tf-srv-amazing-driscoll","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.039313+00:00","export_uri":null,"id":"765d8905-fd5d-4f27-812a-083baa39625e","modification_date":"2025-10-08T22:11:12.039313+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","name":"tf-srv-amazing-driscoll"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "533" + - "2288" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:34 GMT + - Wed, 08 Oct 2025 22:11:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1591,10 +1613,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 12b11620-e60d-45aa-8ec2-3e9fc0f40c8e + - 94deaf08-e833-4571-a568-31b6f08a0f92 status: 200 OK code: 200 - duration: 141.79403ms + duration: 97.933414ms - id: 32 request: proto: HTTP/1.1 @@ -1610,8 +1632,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d1bb834f-67f4-4c47-95ae-dad144790b20 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413 method: GET response: proto: HTTP/2.0 @@ -1619,20 +1641,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2318 + content_length: 2334 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-06-10T15:30:38.789226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-lehmann","id":"d1bb834f-67f4-4c47-95ae-dad144790b20","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"403","node_id":"26","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:69","maintenances":[],"modification_date":"2025-06-10T15:30:52.566517+00:00","name":"tf-srv-fervent-lehmann","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,"creation_date":"2025-06-10T15:30:38.789226+00:00","export_uri":null,"id":"eb26164f-d790-4bb7-ac74-595c2cd8fb55","modification_date":"2025-06-10T15:31:32.623679+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d1bb834f-67f4-4c47-95ae-dad144790b20","name":"tf-srv-fervent-lehmann"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.006735+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-interesting-sanderson","id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"202","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:a9","maintenances":[],"modification_date":"2025-10-08T22:11:26.747018+00:00","name":"tf-srv-interesting-sanderson","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.006735+00:00","export_uri":null,"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","modification_date":"2025-10-08T22:11:12.006735+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","name":"tf-srv-interesting-sanderson"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2318" + - "2334" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:35 GMT + - Wed, 08 Oct 2025 22:11:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1640,10 +1662,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fe99d31c-97cf-4c94-8535-466000cc57ee + - a5709ac1-de9c-4abb-9e5a-fcccc0535af1 status: 200 OK code: 200 - duration: 284.367891ms + duration: 87.963642ms - id: 33 request: proto: HTTP/1.1 @@ -1659,8 +1681,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/eb26164f-d790-4bb7-ac74-595c2cd8fb55 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413 method: GET response: proto: HTTP/2.0 @@ -1668,20 +1690,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 522 + content_length: 2334 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:30:38.789226+00:00","export_uri":null,"id":"eb26164f-d790-4bb7-ac74-595c2cd8fb55","modification_date":"2025-06-10T15:31:32.623679+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d1bb834f-67f4-4c47-95ae-dad144790b20","name":"tf-srv-fervent-lehmann"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","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-10-08T22:11:12.006735+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-interesting-sanderson","id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"202","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:a9","maintenances":[],"modification_date":"2025-10-08T22:11:26.747018+00:00","name":"tf-srv-interesting-sanderson","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.006735+00:00","export_uri":null,"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","modification_date":"2025-10-08T22:11:12.006735+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","name":"tf-srv-interesting-sanderson"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "522" + - "2334" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:35 GMT + - Wed, 08 Oct 2025 22:11:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1689,10 +1711,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7b3e86a1-3db7-41ce-bdfb-bdb5fda0c8b8 + - 0200ccc1-b59d-4d71-a848-9d2112dba4c5 status: 200 OK code: 200 - duration: 122.313556ms + duration: 100.892826ms - id: 34 request: proto: HTTP/1.1 @@ -1708,8 +1730,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d1bb834f-67f4-4c47-95ae-dad144790b20/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/af6bd612-76ac-4b19-ad87-e49430deaa5b method: GET response: proto: HTTP/2.0 @@ -1717,20 +1739,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 528 uncompressed: false - body: '{"user_data":[]}' + body: '{"volume":{"creation_date":"2025-10-08T22:11:12.006735+00:00","export_uri":null,"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","modification_date":"2025-10-08T22:11:12.006735+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","name":"tf-srv-interesting-sanderson"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "528" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:36 GMT + - Wed, 08 Oct 2025 22:11:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1738,10 +1760,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 32adce5e-9840-49db-975c-524009931148 + - 8d95d5c6-4398-47aa-85f6-4aab15860f8a status: 200 OK code: 200 - duration: 118.978251ms + duration: 55.453841ms - id: 35 request: proto: HTTP/1.1 @@ -1757,8 +1779,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d1bb834f-67f4-4c47-95ae-dad144790b20/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413/user_data method: GET response: proto: HTTP/2.0 @@ -1766,22 +1788,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 17 uncompressed: false - body: '{"private_nics":[]}' + body: '{"user_data":[]}' headers: Content-Length: - - "20" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:36 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 22:11:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1789,12 +1809,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fc26b7e8-6c0b-4331-aa7a-f10b9dff7623 - X-Total-Count: - - "0" + - 06c787d3-362f-440d-8f26-e844d0a5f487 status: 200 OK code: 200 - duration: 137.59265ms + duration: 52.243066ms - id: 36 request: proto: HTTP/1.1 @@ -1810,8 +1828,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/b1d96ef8-34c7-4ee6-afbf-65c818fdefee + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413/private_nics method: GET response: proto: HTTP/2.0 @@ -1819,20 +1837,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 20 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"eb26164f-d790-4bb7-ac74-595c2cd8fb55","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-06-10T15:30:56.562573+00:00","error_details":null,"id":"b1d96ef8-34c7-4ee6-afbf-65c818fdefee","modification_date":"2025-06-10T15:31:32.623679+00:00","name":"tf-snap-adoring-shirley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "533" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:36 GMT + - Wed, 08 Oct 2025 22:11:28 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1840,50 +1860,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f3d8efcf-6f2a-4b4e-a87a-f9749cccac9a + - e9870b0d-3040-4c17-a351-e915298e6ea9 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 123.259189ms + duration: 58.717456ms - id: 37 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 137 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-snap-affectionate-jones","volume_id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 850 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"snapshot":{"base_volume":{"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:28.794005+00:00","error_details":null,"id":"fff175c8-97ff-4e7b-bfba-7feb57efc6ed","modification_date":"2025-10-08T22:11:28.794005+00:00","name":"tf-snap-affectionate-jones","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"task":{"description":"volume_snapshot","href_from":"/snapshots","href_result":"snapshots/fff175c8-97ff-4e7b-bfba-7feb57efc6ed","id":"b69e3005-9fe4-4669-8bad-fa5a4cb3d784","progress":0,"started_at":"2025-10-08T22:11:28.998396+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "39208" + - "850" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:37 GMT - Link: - - ; rel="next",; rel="last" + - Wed, 08 Oct 2025 22:11:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1891,12 +1913,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dbae6b45-8f24-4803-9682-f4ee085a4a40 - X-Total-Count: - - "75" - status: 200 OK - code: 200 - duration: 75.190902ms + - 539be7cd-9ed6-451f-9dc9-ff3373244a53 + status: 201 Created + code: 201 + duration: 361.457463ms - id: 38 request: proto: HTTP/1.1 @@ -1912,8 +1932,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fff175c8-97ff-4e7b-bfba-7feb57efc6ed method: GET response: proto: HTTP/2.0 @@ -1921,22 +1941,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 539 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"snapshot":{"base_volume":{"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:28.794005+00:00","error_details":null,"id":"fff175c8-97ff-4e7b-bfba-7feb57efc6ed","modification_date":"2025-10-08T22:11:28.794005+00:00","name":"tf-snap-affectionate-jones","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "19730" + - "539" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:37 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" + - Wed, 08 Oct 2025 22:11:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1944,12 +1962,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 431cbdb0-0f41-4b39-b1cc-069489bf4bb4 - X-Total-Count: - - "75" + - 463c0fc6-c589-4079-8ebf-16f68ddc1da6 status: 200 OK code: 200 - duration: 66.569874ms + duration: 59.817003ms - id: 39 request: proto: HTTP/1.1 @@ -1965,8 +1981,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305 method: GET response: proto: HTTP/2.0 @@ -1974,20 +1990,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 2311 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["START1-XS","X64-60GB","GP1-M","DEV1-L","GP1-XL","GP1-XS","DEV1-XL","START1-M","DEV1-M","DEV1-S","VC1M","GP1-L","START1-S","X64-30GB","VC1L","VC1S","STARDUST1-S","GP1-S","X64-120GB","X64-15GB","START1-L"],"id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":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-10-08T22:11:12.035555+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-epic-brattain","id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"2002","node_id":"45","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ab","maintenances":[],"modification_date":"2025-10-08T22:11:30.483070+00:00","name":"tf-srv-epic-brattain","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.035555+00:00","export_uri":null,"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","modification_date":"2025-10-08T22:11:12.035555+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","name":"tf-srv-epic-brattain"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "423" + - "2311" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:37 GMT + - Wed, 08 Oct 2025 22:11:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1995,52 +2011,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f8df9f4f-a608-4913-b327-2fa73ad781f7 + - c008e470-fd9e-4803-818c-f9c088f68d27 status: 200 OK code: 200 - duration: 137.947685ms + duration: 84.557805ms - id: 40 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 277 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-determined-gates","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","volumes":{"0":{"boot":false,"size":10000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2165 + content_length: 2319 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:37.748184+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-determined-gates","id":"cc54061a-2913-4126-8b9a-f8b5d174c4e4","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:83","maintenances":[],"modification_date":"2025-06-10T15:31:37.748184+00:00","name":"tf-srv-determined-gates","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,"creation_date":"2025-06-10T15:31:37.748184+00:00","export_uri":null,"id":"02ea2d7b-2eec-4b5f-bf8e-9c604b1d8560","modification_date":"2025-06-10T15:31:37.748184+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"cc54061a-2913-4126-8b9a-f8b5d174c4e4","name":"tf-srv-determined-gates"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.039313+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-driscoll","id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"501","node_id":"28","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ad","maintenances":[],"modification_date":"2025-10-08T22:11:28.385800+00:00","name":"tf-srv-amazing-driscoll","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.039313+00:00","export_uri":null,"id":"765d8905-fd5d-4f27-812a-083baa39625e","modification_date":"2025-10-08T22:11:12.039313+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","name":"tf-srv-amazing-driscoll"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2165" + - "2319" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:38 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cc54061a-2913-4126-8b9a-f8b5d174c4e4 + - Wed, 08 Oct 2025 22:11:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2048,10 +2060,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eb7b8f4c-dd15-4445-bcdb-9d1d12bf5bc1 - status: 201 Created - code: 201 - duration: 715.44031ms + - dc00eed4-c7c7-4ad6-a96e-e39293091fae + status: 200 OK + code: 200 + duration: 101.264316ms - id: 41 request: proto: HTTP/1.1 @@ -2067,8 +2079,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cc54061a-2913-4126-8b9a-f8b5d174c4e4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305 method: GET response: proto: HTTP/2.0 @@ -2076,20 +2088,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2165 + content_length: 2311 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:37.748184+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-determined-gates","id":"cc54061a-2913-4126-8b9a-f8b5d174c4e4","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:83","maintenances":[],"modification_date":"2025-06-10T15:31:37.748184+00:00","name":"tf-srv-determined-gates","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,"creation_date":"2025-06-10T15:31:37.748184+00:00","export_uri":null,"id":"02ea2d7b-2eec-4b5f-bf8e-9c604b1d8560","modification_date":"2025-06-10T15:31:37.748184+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"cc54061a-2913-4126-8b9a-f8b5d174c4e4","name":"tf-srv-determined-gates"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.035555+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-epic-brattain","id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"2002","node_id":"45","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ab","maintenances":[],"modification_date":"2025-10-08T22:11:30.483070+00:00","name":"tf-srv-epic-brattain","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.035555+00:00","export_uri":null,"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","modification_date":"2025-10-08T22:11:12.035555+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","name":"tf-srv-epic-brattain"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2165" + - "2311" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:38 GMT + - Wed, 08 Oct 2025 22:11:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2097,10 +2109,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2e4f32c7-4d31-43ce-9121-3e29bef23310 + - dffe61e3-e319-4e57-823d-626713ec5fc3 status: 200 OK code: 200 - duration: 141.41595ms + duration: 83.772206ms - id: 42 request: proto: HTTP/1.1 @@ -2116,8 +2128,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cc54061a-2913-4126-8b9a-f8b5d174c4e4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/19a8fdf6-142b-4c76-bdfb-5b7a024411b5 method: GET response: proto: HTTP/2.0 @@ -2125,20 +2137,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2165 + content_length: 520 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:37.748184+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-determined-gates","id":"cc54061a-2913-4126-8b9a-f8b5d174c4e4","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:83","maintenances":[],"modification_date":"2025-06-10T15:31:37.748184+00:00","name":"tf-srv-determined-gates","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,"creation_date":"2025-06-10T15:31:37.748184+00:00","export_uri":null,"id":"02ea2d7b-2eec-4b5f-bf8e-9c604b1d8560","modification_date":"2025-06-10T15:31:37.748184+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"cc54061a-2913-4126-8b9a-f8b5d174c4e4","name":"tf-srv-determined-gates"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T22:11:12.035555+00:00","export_uri":null,"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","modification_date":"2025-10-08T22:11:12.035555+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","name":"tf-srv-epic-brattain"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2165" + - "520" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:38 GMT + - Wed, 08 Oct 2025 22:11:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2146,52 +2158,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a80033e4-1b23-46c1-881e-a4f3a19b07c4 + - 3ecb4d82-616e-4020-a842-89b108e02447 status: 200 OK code: 200 - duration: 136.317989ms + duration: 58.347803ms - id: 43 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 20 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweron"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cc54061a-2913-4126-8b9a-f8b5d174c4e4/action - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 357 + content_length: 2319 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/cc54061a-2913-4126-8b9a-f8b5d174c4e4/action","href_result":"/servers/cc54061a-2913-4126-8b9a-f8b5d174c4e4","id":"cf98c14f-e2e8-48dc-9b74-5f31c301ead7","progress":0,"started_at":"2025-06-10T15:31:38.700939+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.039313+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-driscoll","id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"501","node_id":"28","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ad","maintenances":[],"modification_date":"2025-10-08T22:11:28.385800+00:00","name":"tf-srv-amazing-driscoll","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.039313+00:00","export_uri":null,"id":"765d8905-fd5d-4f27-812a-083baa39625e","modification_date":"2025-10-08T22:11:12.039313+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","name":"tf-srv-amazing-driscoll"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "357" + - "2319" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:38 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/cf98c14f-e2e8-48dc-9b74-5f31c301ead7 + - Wed, 08 Oct 2025 22:11:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2199,10 +2207,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 36d828fd-94bf-494d-acc5-a7abb257da86 - status: 202 Accepted - code: 202 - duration: 262.326435ms + - c64c239d-146e-40c1-9615-c42df45a6a82 + status: 200 OK + code: 200 + duration: 99.749563ms - id: 44 request: proto: HTTP/1.1 @@ -2218,8 +2226,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cc54061a-2913-4126-8b9a-f8b5d174c4e4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305/user_data method: GET response: proto: HTTP/2.0 @@ -2227,20 +2235,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2187 + content_length: 17 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-06-10T15:31:37.748184+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-determined-gates","id":"cc54061a-2913-4126-8b9a-f8b5d174c4e4","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:83","maintenances":[],"modification_date":"2025-06-10T15:31:38.499688+00:00","name":"tf-srv-determined-gates","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,"creation_date":"2025-06-10T15:31:37.748184+00:00","export_uri":null,"id":"02ea2d7b-2eec-4b5f-bf8e-9c604b1d8560","modification_date":"2025-06-10T15:31:37.748184+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"cc54061a-2913-4126-8b9a-f8b5d174c4e4","name":"tf-srv-determined-gates"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "2187" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:38 GMT + - Wed, 08 Oct 2025 22:11:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2248,10 +2256,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 40370615-b09c-4d74-8299-28ba112df5bc + - 2638f751-6a36-48ee-a9f5-d3beaa4db883 status: 200 OK code: 200 - duration: 171.884781ms + duration: 51.443175ms - id: 45 request: proto: HTTP/1.1 @@ -2267,8 +2275,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cc54061a-2913-4126-8b9a-f8b5d174c4e4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/765d8905-fd5d-4f27-812a-083baa39625e method: GET response: proto: HTTP/2.0 @@ -2276,20 +2284,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2291 + content_length: 523 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-06-10T15:31:37.748184+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-determined-gates","id":"cc54061a-2913-4126-8b9a-f8b5d174c4e4","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"2002","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:83","maintenances":[],"modification_date":"2025-06-10T15:31:38.499688+00:00","name":"tf-srv-determined-gates","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,"creation_date":"2025-06-10T15:31:37.748184+00:00","export_uri":null,"id":"02ea2d7b-2eec-4b5f-bf8e-9c604b1d8560","modification_date":"2025-06-10T15:31:37.748184+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"cc54061a-2913-4126-8b9a-f8b5d174c4e4","name":"tf-srv-determined-gates"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T22:11:12.039313+00:00","export_uri":null,"id":"765d8905-fd5d-4f27-812a-083baa39625e","modification_date":"2025-10-08T22:11:12.039313+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","name":"tf-srv-amazing-driscoll"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2291" + - "523" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:44 GMT + - Wed, 08 Oct 2025 22:11:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2297,10 +2305,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 308482b5-d32b-43e6-ae83-a390805fb048 + - e42750be-86b7-4d60-b8f0-fd7711afb9fe status: 200 OK code: 200 - duration: 174.43868ms + duration: 57.222733ms - id: 46 request: proto: HTTP/1.1 @@ -2316,8 +2324,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cc54061a-2913-4126-8b9a-f8b5d174c4e4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305/private_nics method: GET response: proto: HTTP/2.0 @@ -2325,20 +2333,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2291 + content_length: 20 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-06-10T15:31:37.748184+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-determined-gates","id":"cc54061a-2913-4126-8b9a-f8b5d174c4e4","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"2002","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:83","maintenances":[],"modification_date":"2025-06-10T15:31:38.499688+00:00","name":"tf-srv-determined-gates","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,"creation_date":"2025-06-10T15:31:37.748184+00:00","export_uri":null,"id":"02ea2d7b-2eec-4b5f-bf8e-9c604b1d8560","modification_date":"2025-06-10T15:31:37.748184+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"cc54061a-2913-4126-8b9a-f8b5d174c4e4","name":"tf-srv-determined-gates"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "2291" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:49 GMT + - Wed, 08 Oct 2025 22:11:33 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2346,10 +2356,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9c64b179-3eb8-47fe-8fdb-3f4902d1dab4 + - fde323bd-343c-4d04-810d-3083e0deb8a0 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 170.748339ms + duration: 62.913864ms - id: 47 request: proto: HTTP/1.1 @@ -2365,8 +2377,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cc54061a-2913-4126-8b9a-f8b5d174c4e4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0/user_data method: GET response: proto: HTTP/2.0 @@ -2374,20 +2386,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2322 + content_length: 17 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:37.748184+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-determined-gates","id":"cc54061a-2913-4126-8b9a-f8b5d174c4e4","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"2002","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:83","maintenances":[],"modification_date":"2025-06-10T15:31:51.973545+00:00","name":"tf-srv-determined-gates","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,"creation_date":"2025-06-10T15:31:37.748184+00:00","export_uri":null,"id":"02ea2d7b-2eec-4b5f-bf8e-9c604b1d8560","modification_date":"2025-06-10T15:31:37.748184+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"cc54061a-2913-4126-8b9a-f8b5d174c4e4","name":"tf-srv-determined-gates"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "2322" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:54 GMT + - Wed, 08 Oct 2025 22:11:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2395,10 +2407,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d43bed2f-e160-4b9a-8a31-2b017e49199d + - bc272274-e5e5-4f15-918e-a54949cc1e41 status: 200 OK code: 200 - duration: 176.997108ms + duration: 56.639104ms - id: 48 request: proto: HTTP/1.1 @@ -2414,8 +2426,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cc54061a-2913-4126-8b9a-f8b5d174c4e4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0/private_nics method: GET response: proto: HTTP/2.0 @@ -2423,20 +2435,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2322 + content_length: 20 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:37.748184+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-determined-gates","id":"cc54061a-2913-4126-8b9a-f8b5d174c4e4","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"2002","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:83","maintenances":[],"modification_date":"2025-06-10T15:31:51.973545+00:00","name":"tf-srv-determined-gates","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,"creation_date":"2025-06-10T15:31:37.748184+00:00","export_uri":null,"id":"02ea2d7b-2eec-4b5f-bf8e-9c604b1d8560","modification_date":"2025-06-10T15:31:37.748184+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"cc54061a-2913-4126-8b9a-f8b5d174c4e4","name":"tf-srv-determined-gates"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "2322" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:54 GMT + - Wed, 08 Oct 2025 22:11:33 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2444,48 +2458,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b29c0663-6b89-4edb-8059-dc9934e44c74 + - 24b5a7f6-137c-4786-bc19-9ad3ca5620e8 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 205.95226ms + duration: 51.282773ms - id: 49 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 132 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-snap-musing-joliot","volume_id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/02ea2d7b-2eec-4b5f-bf8e-9c604b1d8560 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 523 + content_length: 845 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:31:37.748184+00:00","export_uri":null,"id":"02ea2d7b-2eec-4b5f-bf8e-9c604b1d8560","modification_date":"2025-06-10T15:31:37.748184+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"cc54061a-2913-4126-8b9a-f8b5d174c4e4","name":"tf-srv-determined-gates"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.523961+00:00","error_details":null,"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","modification_date":"2025-10-08T22:11:33.523961+00:00","name":"tf-snap-musing-joliot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"task":{"description":"volume_snapshot","href_from":"/snapshots","href_result":"snapshots/df86c0e2-a0be-46c5-9ed1-26969edc7c00","id":"a4612954-bdb1-4d94-8baf-acccfc8903b7","progress":0,"started_at":"2025-10-08T22:11:33.716774+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "523" + - "845" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:54 GMT + - Wed, 08 Oct 2025 22:11:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2493,10 +2511,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6e4a8fdc-0a8b-4208-a5ee-ff57b8a1a54d - status: 200 OK - code: 200 - duration: 104.810491ms + - 58196732-06d4-4f0f-b5e2-926d394e2283 + status: 201 Created + code: 201 + duration: 378.063968ms - id: 50 request: proto: HTTP/1.1 @@ -2512,8 +2530,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cc54061a-2913-4126-8b9a-f8b5d174c4e4/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/df86c0e2-a0be-46c5-9ed1-26969edc7c00 method: GET response: proto: HTTP/2.0 @@ -2521,20 +2539,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 534 uncompressed: false - body: '{"user_data":[]}' + body: '{"snapshot":{"base_volume":{"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.523961+00:00","error_details":null,"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","modification_date":"2025-10-08T22:11:33.523961+00:00","name":"tf-snap-musing-joliot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "534" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:54 GMT + - Wed, 08 Oct 2025 22:11:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2542,50 +2560,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 107fc187-c877-44a2-a081-b06411b32c35 + - 78686c7c-f560-4911-91cd-06e725780806 status: 200 OK code: 200 - duration: 104.932248ms + duration: 63.059518ms - id: 51 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 131 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-snap-eager-beaver","volume_id":"765d8905-fd5d-4f27-812a-083baa39625e","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cc54061a-2913-4126-8b9a-f8b5d174c4e4/private_nics - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 844 uncompressed: false - body: '{"private_nics":[]}' + body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:11:33.577386+00:00","name":"tf-snap-eager-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"task":{"description":"volume_snapshot","href_from":"/snapshots","href_result":"snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc","id":"0dd7e395-6ae4-4255-8bc5-dedd3fb50b6c","progress":0,"started_at":"2025-10-08T22:11:33.849440+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "844" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:54 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 22:11:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2593,52 +2611,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0370cfbb-4d20-40f9-b304-c00ef3a2b782 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 87.295833ms + - ad626384-5f49-433d-8051-5d3980d3ac7a + status: 201 Created + code: 201 + duration: 649.268697ms - id: 52 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: '{"name":"tf-snap-cocky-keller","volume_id":"02ea2d7b-2eec-4b5f-bf8e-9c604b1d8560","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 844 + content_length: 533 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"02ea2d7b-2eec-4b5f-bf8e-9c604b1d8560","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-06-10T15:31:55.206689+00:00","error_details":null,"id":"6ef269d0-861b-4f78-bdb9-4d1a66379566","modification_date":"2025-06-10T15:31:55.206689+00:00","name":"tf-snap-cocky-keller","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"task":{"description":"volume_snapshot","href_from":"/snapshots","href_result":"snapshots/6ef269d0-861b-4f78-bdb9-4d1a66379566","id":"9d09b630-dc42-4c6f-aef6-dbb0cb7fa140","progress":0,"started_at":"2025-06-10T15:31:55.423946+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:11:33.577386+00:00","name":"tf-snap-eager-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "844" + - "533" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:55 GMT + - Wed, 08 Oct 2025 22:11:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2646,10 +2660,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - af3718d4-b4aa-462f-8463-a59b99e5379c - status: 201 Created - code: 201 - duration: 747.12188ms + - 54e7e29d-dee8-4748-b37d-e9a0ae9c57e7 + status: 200 OK + code: 200 + duration: 59.307385ms - id: 53 request: proto: HTTP/1.1 @@ -2665,8 +2679,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6ef269d0-861b-4f78-bdb9-4d1a66379566 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fff175c8-97ff-4e7b-bfba-7feb57efc6ed method: GET response: proto: HTTP/2.0 @@ -2674,20 +2688,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 539 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"02ea2d7b-2eec-4b5f-bf8e-9c604b1d8560","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-06-10T15:31:55.206689+00:00","error_details":null,"id":"6ef269d0-861b-4f78-bdb9-4d1a66379566","modification_date":"2025-06-10T15:31:55.206689+00:00","name":"tf-snap-cocky-keller","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:28.794005+00:00","error_details":null,"id":"fff175c8-97ff-4e7b-bfba-7feb57efc6ed","modification_date":"2025-10-08T22:11:28.794005+00:00","name":"tf-snap-affectionate-jones","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "533" + - "539" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:55 GMT + - Wed, 08 Oct 2025 22:11:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2695,10 +2709,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9dee7819-ba59-4cad-92ab-1fb6fe5d46b0 + - 122cd75c-08cf-4c65-b0c0-25a65bcc6de7 status: 200 OK code: 200 - duration: 104.855714ms + duration: 72.880177ms - id: 54 request: proto: HTTP/1.1 @@ -2714,8 +2728,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6ef269d0-861b-4f78-bdb9-4d1a66379566 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/df86c0e2-a0be-46c5-9ed1-26969edc7c00 method: GET response: proto: HTTP/2.0 @@ -2723,20 +2737,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 534 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"02ea2d7b-2eec-4b5f-bf8e-9c604b1d8560","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-06-10T15:31:55.206689+00:00","error_details":null,"id":"6ef269d0-861b-4f78-bdb9-4d1a66379566","modification_date":"2025-06-10T15:31:55.206689+00:00","name":"tf-snap-cocky-keller","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.523961+00:00","error_details":null,"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","modification_date":"2025-10-08T22:11:33.523961+00:00","name":"tf-snap-musing-joliot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "533" + - "534" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:00 GMT + - Wed, 08 Oct 2025 22:11:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2744,10 +2758,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d35f6b70-6535-478d-8384-ba724e01ea39 + - ae31acd0-8a4e-4752-924e-9dc33e442710 status: 200 OK code: 200 - duration: 119.201197ms + duration: 124.159887ms - id: 55 request: proto: HTTP/1.1 @@ -2763,8 +2777,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6ef269d0-861b-4f78-bdb9-4d1a66379566 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc method: GET response: proto: HTTP/2.0 @@ -2774,7 +2788,7 @@ interactions: trailer: {} content_length: 533 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"02ea2d7b-2eec-4b5f-bf8e-9c604b1d8560","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-06-10T15:31:55.206689+00:00","error_details":null,"id":"6ef269d0-861b-4f78-bdb9-4d1a66379566","modification_date":"2025-06-10T15:31:55.206689+00:00","name":"tf-snap-cocky-keller","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:11:33.577386+00:00","name":"tf-snap-eager-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - "533" @@ -2783,9 +2797,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:06 GMT + - Wed, 08 Oct 2025 22:11:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2793,10 +2807,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ee7471d9-1942-4e49-81ab-c9cf9938ca77 + - 503e2273-5d4a-4ca9-8fe9-cd4db3885880 status: 200 OK code: 200 - duration: 120.287575ms + duration: 55.19149ms - id: 56 request: proto: HTTP/1.1 @@ -2812,8 +2826,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6ef269d0-861b-4f78-bdb9-4d1a66379566 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fff175c8-97ff-4e7b-bfba-7feb57efc6ed method: GET response: proto: HTTP/2.0 @@ -2821,20 +2835,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 539 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"02ea2d7b-2eec-4b5f-bf8e-9c604b1d8560","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-06-10T15:31:55.206689+00:00","error_details":null,"id":"6ef269d0-861b-4f78-bdb9-4d1a66379566","modification_date":"2025-06-10T15:31:55.206689+00:00","name":"tf-snap-cocky-keller","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:28.794005+00:00","error_details":null,"id":"fff175c8-97ff-4e7b-bfba-7feb57efc6ed","modification_date":"2025-10-08T22:11:28.794005+00:00","name":"tf-snap-affectionate-jones","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "533" + - "539" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:11 GMT + - Wed, 08 Oct 2025 22:11:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2842,10 +2856,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f0aaf628-2255-4bd2-b381-22ddc9df08c0 + - ec773dab-33fd-48f2-bc66-20a04dcf621b status: 200 OK code: 200 - duration: 103.922104ms + duration: 82.061539ms - id: 57 request: proto: HTTP/1.1 @@ -2861,8 +2875,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6ef269d0-861b-4f78-bdb9-4d1a66379566 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/df86c0e2-a0be-46c5-9ed1-26969edc7c00 method: GET response: proto: HTTP/2.0 @@ -2870,20 +2884,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 534 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"02ea2d7b-2eec-4b5f-bf8e-9c604b1d8560","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-06-10T15:31:55.206689+00:00","error_details":null,"id":"6ef269d0-861b-4f78-bdb9-4d1a66379566","modification_date":"2025-06-10T15:31:55.206689+00:00","name":"tf-snap-cocky-keller","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.523961+00:00","error_details":null,"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","modification_date":"2025-10-08T22:11:33.523961+00:00","name":"tf-snap-musing-joliot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "533" + - "534" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:16 GMT + - Wed, 08 Oct 2025 22:11:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2891,10 +2905,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7d03a0d6-2939-40e3-9b3e-41f21ba5c595 + - e5470cb6-a76b-495d-9d8b-d58ab1a40248 status: 200 OK code: 200 - duration: 94.412069ms + duration: 58.511268ms - id: 58 request: proto: HTTP/1.1 @@ -2910,8 +2924,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6ef269d0-861b-4f78-bdb9-4d1a66379566 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc method: GET response: proto: HTTP/2.0 @@ -2921,7 +2935,7 @@ interactions: trailer: {} content_length: 533 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"02ea2d7b-2eec-4b5f-bf8e-9c604b1d8560","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-06-10T15:31:55.206689+00:00","error_details":null,"id":"6ef269d0-861b-4f78-bdb9-4d1a66379566","modification_date":"2025-06-10T15:31:55.206689+00:00","name":"tf-snap-cocky-keller","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:11:33.577386+00:00","name":"tf-snap-eager-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - "533" @@ -2930,9 +2944,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:21 GMT + - Wed, 08 Oct 2025 22:11:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2940,10 +2954,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 967a46ed-dc65-4c50-9ee5-6394b8eec483 + - 59282526-9bd3-4d3a-99e4-03161c2e54ee status: 200 OK code: 200 - duration: 120.684309ms + duration: 62.16256ms - id: 59 request: proto: HTTP/1.1 @@ -2959,8 +2973,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6ef269d0-861b-4f78-bdb9-4d1a66379566 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fff175c8-97ff-4e7b-bfba-7feb57efc6ed method: GET response: proto: HTTP/2.0 @@ -2968,20 +2982,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 539 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"02ea2d7b-2eec-4b5f-bf8e-9c604b1d8560","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-06-10T15:31:55.206689+00:00","error_details":null,"id":"6ef269d0-861b-4f78-bdb9-4d1a66379566","modification_date":"2025-06-10T15:31:55.206689+00:00","name":"tf-snap-cocky-keller","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:28.794005+00:00","error_details":null,"id":"fff175c8-97ff-4e7b-bfba-7feb57efc6ed","modification_date":"2025-10-08T22:11:28.794005+00:00","name":"tf-snap-affectionate-jones","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "533" + - "539" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:26 GMT + - Wed, 08 Oct 2025 22:11:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2989,10 +3003,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c10d0d43-5b6f-4f57-b753-2c04bfd47ecb + - 662c6411-bb39-4e51-88af-cb2f7fc023aa status: 200 OK code: 200 - duration: 103.730785ms + duration: 53.010431ms - id: 60 request: proto: HTTP/1.1 @@ -3008,8 +3022,57 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6ef269d0-861b-4f78-bdb9-4d1a66379566 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/df86c0e2-a0be-46c5-9ed1-26969edc7c00 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 534 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.523961+00:00","error_details":null,"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","modification_date":"2025-10-08T22:11:33.523961+00:00","name":"tf-snap-musing-joliot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "534" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:11:49 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: + - 22d58757-6464-47c8-a2f3-45d91898ecc5 + status: 200 OK + code: 200 + duration: 56.713572ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc method: GET response: proto: HTTP/2.0 @@ -3019,7 +3082,7 @@ interactions: trailer: {} content_length: 533 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"02ea2d7b-2eec-4b5f-bf8e-9c604b1d8560","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-06-10T15:31:55.206689+00:00","error_details":null,"id":"6ef269d0-861b-4f78-bdb9-4d1a66379566","modification_date":"2025-06-10T15:31:55.206689+00:00","name":"tf-snap-cocky-keller","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:11:33.577386+00:00","name":"tf-snap-eager-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - "533" @@ -3028,9 +3091,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:31 GMT + - Wed, 08 Oct 2025 22:11:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3038,11 +3101,109 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6eefad97-3232-4cd6-874c-0e78d596d576 + - 4d05bcf0-d6ea-4a08-b242-1b2c83a2e435 status: 200 OK code: 200 - duration: 131.499771ms - - id: 61 + duration: 72.997102ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fff175c8-97ff-4e7b-bfba-7feb57efc6ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 539 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:28.794005+00:00","error_details":null,"id":"fff175c8-97ff-4e7b-bfba-7feb57efc6ed","modification_date":"2025-10-08T22:11:28.794005+00:00","name":"tf-snap-affectionate-jones","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "539" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:11:49 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: + - abd30ddb-ffea-403f-ad5a-1056897ef7b9 + status: 200 OK + code: 200 + duration: 69.578613ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/df86c0e2-a0be-46c5-9ed1-26969edc7c00 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 534 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.523961+00:00","error_details":null,"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","modification_date":"2025-10-08T22:11:33.523961+00:00","name":"tf-snap-musing-joliot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "534" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:11:54 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: + - 967b5b88-68df-4d60-a8bf-be2ff2027041 + status: 200 OK + code: 200 + duration: 79.677837ms + - id: 64 request: proto: HTTP/1.1 proto_major: 1 @@ -3057,29 +3218,3438 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6ef269d0-861b-4f78-bdb9-4d1a66379566 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:11:33.577386+00:00","name":"tf-snap-eager-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:11:54 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: + - 00fa2ea1-3a25-45e2-9cfd-a76b8ed057ad + status: 200 OK + code: 200 + duration: 60.197141ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fff175c8-97ff-4e7b-bfba-7feb57efc6ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 539 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:28.794005+00:00","error_details":null,"id":"fff175c8-97ff-4e7b-bfba-7feb57efc6ed","modification_date":"2025-10-08T22:11:28.794005+00:00","name":"tf-snap-affectionate-jones","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "539" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:11:54 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: + - 0e3b710e-60a7-4d4d-ae11-fcdd5a92e549 + status: 200 OK + code: 200 + duration: 49.226465ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/df86c0e2-a0be-46c5-9ed1-26969edc7c00 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 534 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.523961+00:00","error_details":null,"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","modification_date":"2025-10-08T22:11:33.523961+00:00","name":"tf-snap-musing-joliot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "534" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:11:59 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: + - 09233edc-f40b-48f5-94a5-f02fc5c80fff + status: 200 OK + code: 200 + duration: 52.093831ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:11:33.577386+00:00","name":"tf-snap-eager-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:11:59 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: + - d098c1fc-b5d1-4e35-93bb-b907ce0a3571 + status: 200 OK + code: 200 + duration: 53.589543ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fff175c8-97ff-4e7b-bfba-7feb57efc6ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 539 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:28.794005+00:00","error_details":null,"id":"fff175c8-97ff-4e7b-bfba-7feb57efc6ed","modification_date":"2025-10-08T22:11:28.794005+00:00","name":"tf-snap-affectionate-jones","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "539" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:11:59 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: + - 0cb9f65d-f3a4-4ebb-a1fb-69e1b7a7c915 + status: 200 OK + code: 200 + duration: 56.865432ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/df86c0e2-a0be-46c5-9ed1-26969edc7c00 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 534 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.523961+00:00","error_details":null,"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","modification_date":"2025-10-08T22:11:33.523961+00:00","name":"tf-snap-musing-joliot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "534" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:12:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4b39f1be-23d3-4bd8-bbf5-4992718495a8 + status: 200 OK + code: 200 + duration: 55.273385ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:11:33.577386+00:00","name":"tf-snap-eager-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:12:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 32ea1d6a-9a71-4c8a-812e-b3a98c20fa39 + status: 200 OK + code: 200 + duration: 64.67222ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fff175c8-97ff-4e7b-bfba-7feb57efc6ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 536 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:28.794005+00:00","error_details":null,"id":"fff175c8-97ff-4e7b-bfba-7feb57efc6ed","modification_date":"2025-10-08T22:11:59.752840+00:00","name":"tf-snap-affectionate-jones","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "536" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:12:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9587b360-1125-4c9d-bf32-d332068f904f + status: 200 OK + code: 200 + duration: 59.761646ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fff175c8-97ff-4e7b-bfba-7feb57efc6ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 536 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:28.794005+00:00","error_details":null,"id":"fff175c8-97ff-4e7b-bfba-7feb57efc6ed","modification_date":"2025-10-08T22:11:59.752840+00:00","name":"tf-snap-affectionate-jones","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "536" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:12:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f09ee483-fa1b-4370-b373-8e4f36bd443c + status: 200 OK + code: 200 + duration: 58.435555ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/df86c0e2-a0be-46c5-9ed1-26969edc7c00 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 534 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.523961+00:00","error_details":null,"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","modification_date":"2025-10-08T22:11:33.523961+00:00","name":"tf-snap-musing-joliot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "534" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:12:09 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: + - b3118507-ceca-487c-98e4-3b9d52bd568e + status: 200 OK + code: 200 + duration: 60.835197ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:11:33.577386+00:00","name":"tf-snap-eager-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:12:09 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: + - 117c812d-4cd1-4f77-92b2-1b79b5da6253 + status: 200 OK + code: 200 + duration: 64.294488ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/df86c0e2-a0be-46c5-9ed1-26969edc7c00 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 534 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.523961+00:00","error_details":null,"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","modification_date":"2025-10-08T22:11:33.523961+00:00","name":"tf-snap-musing-joliot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "534" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:12:14 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: + - 1523a53e-310c-4ab7-a5c5-e4d52bf58ece + status: 200 OK + code: 200 + duration: 68.168156ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:11:33.577386+00:00","name":"tf-snap-eager-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:12:14 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: + - 57d1e809-c070-48b9-8cbc-2c6720932c83 + status: 200 OK + code: 200 + duration: 59.519753ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/df86c0e2-a0be-46c5-9ed1-26969edc7c00 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 534 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.523961+00:00","error_details":null,"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","modification_date":"2025-10-08T22:11:33.523961+00:00","name":"tf-snap-musing-joliot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "534" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:12:19 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: + - 5df8a16a-d98c-427f-b094-6ae9eda8aeca + status: 200 OK + code: 200 + duration: 58.017618ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:11:33.577386+00:00","name":"tf-snap-eager-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:12:19 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: + - 956395b5-cd65-4df6-aa9d-888af75df9e5 + status: 200 OK + code: 200 + duration: 66.683981ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/df86c0e2-a0be-46c5-9ed1-26969edc7c00 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 534 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.523961+00:00","error_details":null,"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","modification_date":"2025-10-08T22:11:33.523961+00:00","name":"tf-snap-musing-joliot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "534" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:12:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 29a2a15c-3134-4445-b4a7-3c3429164435 + status: 200 OK + code: 200 + duration: 63.914145ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:11:33.577386+00:00","name":"tf-snap-eager-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:12:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6c444d75-c0af-47b7-a6ca-321844ed1978 + status: 200 OK + code: 200 + duration: 67.145024ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/df86c0e2-a0be-46c5-9ed1-26969edc7c00 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 534 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.523961+00:00","error_details":null,"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","modification_date":"2025-10-08T22:11:33.523961+00:00","name":"tf-snap-musing-joliot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "534" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:12:29 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: + - 1e884242-c21b-488d-8495-1283896e3702 + status: 200 OK + code: 200 + duration: 81.291105ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:11:33.577386+00:00","name":"tf-snap-eager-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:12:29 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: + - 8f3b1ad1-9226-4075-ba1a-13ac482d200b + status: 200 OK + code: 200 + duration: 60.299657ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/df86c0e2-a0be-46c5-9ed1-26969edc7c00 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 531 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.523961+00:00","error_details":null,"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","modification_date":"2025-10-08T22:12:34.490729+00:00","name":"tf-snap-musing-joliot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "531" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:12:34 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: + - ea57ce0f-5330-4fee-b9fe-2d6713bdba34 + status: 200 OK + code: 200 + duration: 56.180321ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/df86c0e2-a0be-46c5-9ed1-26969edc7c00 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 531 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.523961+00:00","error_details":null,"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","modification_date":"2025-10-08T22:12:34.490729+00:00","name":"tf-snap-musing-joliot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "531" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:12:34 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: + - a05f50cd-b39a-4717-a28e-23bbce723afc + status: 200 OK + code: 200 + duration: 57.128448ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:11:33.577386+00:00","name":"tf-snap-eager-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:12:34 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: + - 59bd4827-2065-490e-b856-33e1ac3ebbb9 + status: 200 OK + code: 200 + duration: 51.451651ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:11:33.577386+00:00","name":"tf-snap-eager-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:12:40 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: + - 1f57df46-66ba-47ae-ba43-3b8b1dd55bfd + status: 200 OK + code: 200 + duration: 53.392247ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:11:33.577386+00:00","name":"tf-snap-eager-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22: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: + - 8e455432-2d94-4c63-8e7c-fbf9d1166eb4 + status: 200 OK + code: 200 + duration: 56.619593ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:11:33.577386+00:00","name":"tf-snap-eager-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22: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: + - c6f7a347-4351-4308-8241-2449bb675625 + status: 200 OK + code: 200 + duration: 69.083929ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:11:33.577386+00:00","name":"tf-snap-eager-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:12:55 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: + - bea44187-8f8c-4677-b977-ea6245d71427 + status: 200 OK + code: 200 + duration: 51.292202ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:11:33.577386+00:00","name":"tf-snap-eager-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:13:00 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: + - c1c3e002-0e68-4ab0-8db2-1941ba781ac4 + status: 200 OK + code: 200 + duration: 52.146072ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:11:33.577386+00:00","name":"tf-snap-eager-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:13:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 59bc61d2-5ad3-4204-ac4a-bfa838f3df02 + status: 200 OK + code: 200 + duration: 55.522794ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:11:33.577386+00:00","name":"tf-snap-eager-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:13:10 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: + - 15bc497b-c9e5-4102-b441-0a4e7448881a + status: 200 OK + code: 200 + duration: 54.196397ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:11:33.577386+00:00","name":"tf-snap-eager-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:13:15 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: + - 0b702b46-9509-4805-a64a-d5694b00442c + status: 200 OK + code: 200 + duration: 69.911439ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 530 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:13:18.966171+00:00","name":"tf-snap-eager-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "530" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:13:20 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: + - 0f9446e8-fdfa-4c57-abfb-5fca3e9508d6 + status: 200 OK + code: 200 + duration: 55.836022ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 530 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:13:18.966171+00:00","name":"tf-snap-eager-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "530" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:13:20 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: + - dca613a1-709c-4b24-9670-8d6a99be9abd + status: 200 OK + code: 200 + duration: 58.854185ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2311 + 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-10-08T22:11:12.035555+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-epic-brattain","id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"2002","node_id":"45","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ab","maintenances":[],"modification_date":"2025-10-08T22:11:30.483070+00:00","name":"tf-srv-epic-brattain","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.035555+00:00","export_uri":null,"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","modification_date":"2025-10-08T22:12:34.490729+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","name":"tf-srv-epic-brattain"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2311" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:13:20 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: + - 0a532512-387c-4f26-86e8-c6852efe281b + status: 200 OK + code: 200 + duration: 80.855693ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2319 + 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-10-08T22:11:12.039313+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-driscoll","id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"501","node_id":"28","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ad","maintenances":[],"modification_date":"2025-10-08T22:11:28.385800+00:00","name":"tf-srv-amazing-driscoll","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.039313+00:00","export_uri":null,"id":"765d8905-fd5d-4f27-812a-083baa39625e","modification_date":"2025-10-08T22:13:18.966171+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","name":"tf-srv-amazing-driscoll"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2319" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:13:20 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: + - a4200283-0dd9-45ee-9a4e-06191aa5ff2a + status: 200 OK + code: 200 + duration: 92.672628ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2334 + 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-10-08T22:11:12.006735+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-interesting-sanderson","id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"202","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:a9","maintenances":[],"modification_date":"2025-10-08T22:11:26.747018+00:00","name":"tf-srv-interesting-sanderson","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.006735+00:00","export_uri":null,"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","modification_date":"2025-10-08T22:11:59.752840+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","name":"tf-srv-interesting-sanderson"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2334" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:13:20 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: + - 954e5c90-fe88-4fa4-91d8-c247f6b0582a + status: 200 OK + code: 200 + duration: 87.21722ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/df86c0e2-a0be-46c5-9ed1-26969edc7c00 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 531 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.523961+00:00","error_details":null,"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","modification_date":"2025-10-08T22:12:34.490729+00:00","name":"tf-snap-musing-joliot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "531" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:13:21 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: + - aa31c2a4-66c0-432f-aabb-3fe96c40cd50 + status: 200 OK + code: 200 + duration: 75.003174ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 530 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:13:18.966171+00:00","name":"tf-snap-eager-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "530" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:13:21 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: + - 8cf7f5c3-ccf5-4a07-b773-2de0483acfed + status: 200 OK + code: 200 + duration: 57.796995ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fff175c8-97ff-4e7b-bfba-7feb57efc6ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 536 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:28.794005+00:00","error_details":null,"id":"fff175c8-97ff-4e7b-bfba-7feb57efc6ed","modification_date":"2025-10-08T22:11:59.752840+00:00","name":"tf-snap-affectionate-jones","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "536" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:13:21 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: + - 2f57483c-a6dd-4194-95d9-90bdeb1468d8 + status: 200 OK + code: 200 + duration: 55.454575ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2311 + 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-10-08T22:11:12.035555+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-epic-brattain","id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"2002","node_id":"45","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ab","maintenances":[],"modification_date":"2025-10-08T22:11:30.483070+00:00","name":"tf-srv-epic-brattain","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.035555+00:00","export_uri":null,"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","modification_date":"2025-10-08T22:12:34.490729+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","name":"tf-srv-epic-brattain"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2311" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:13:21 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: + - 4930b310-d674-4bb3-8c6b-580b5d1e9ce8 + status: 200 OK + code: 200 + duration: 100.909783ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2319 + 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-10-08T22:11:12.039313+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-driscoll","id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"501","node_id":"28","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ad","maintenances":[],"modification_date":"2025-10-08T22:11:28.385800+00:00","name":"tf-srv-amazing-driscoll","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.039313+00:00","export_uri":null,"id":"765d8905-fd5d-4f27-812a-083baa39625e","modification_date":"2025-10-08T22:13:18.966171+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","name":"tf-srv-amazing-driscoll"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2319" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:13:21 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: + - 16678f2f-ab22-4894-8fdf-43875c89c82d + status: 200 OK + code: 200 + duration: 102.518855ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2334 + 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-10-08T22:11:12.006735+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-interesting-sanderson","id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"202","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:a9","maintenances":[],"modification_date":"2025-10-08T22:11:26.747018+00:00","name":"tf-srv-interesting-sanderson","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.006735+00:00","export_uri":null,"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","modification_date":"2025-10-08T22:11:59.752840+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","name":"tf-srv-interesting-sanderson"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2334" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:13:21 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: + - bc57fbf4-8426-40f2-86e0-e87bb90dfca0 + status: 200 OK + code: 200 + duration: 104.060992ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/765d8905-fd5d-4f27-812a-083baa39625e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 523 + uncompressed: false + body: '{"volume":{"creation_date":"2025-10-08T22:11:12.039313+00:00","export_uri":null,"id":"765d8905-fd5d-4f27-812a-083baa39625e","modification_date":"2025-10-08T22:13:18.966171+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","name":"tf-srv-amazing-driscoll"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "523" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:13:21 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: + - 1ed9af2f-1443-4829-a5f2-58dc490a814b + status: 200 OK + code: 200 + duration: 51.540223ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/19a8fdf6-142b-4c76-bdfb-5b7a024411b5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 520 + uncompressed: false + body: '{"volume":{"creation_date":"2025-10-08T22:11:12.035555+00:00","export_uri":null,"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","modification_date":"2025-10-08T22:12:34.490729+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","name":"tf-srv-epic-brattain"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "520" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:13:21 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: + - 04b0967a-9c3a-4f36-84dc-1410aad5a0eb + status: 200 OK + code: 200 + duration: 67.761808ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/af6bd612-76ac-4b19-ad87-e49430deaa5b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 528 + uncompressed: false + body: '{"volume":{"creation_date":"2025-10-08T22:11:12.006735+00:00","export_uri":null,"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","modification_date":"2025-10-08T22:11:59.752840+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","name":"tf-srv-interesting-sanderson"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "528" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:13:21 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: + - ee73fdfa-277f-4f35-8e36-8f5cd3ef2d29 + status: 200 OK + code: 200 + duration: 66.936378ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0/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, 08 Oct 2025 22:13:21 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: + - 6d1d7fcd-b20b-4e8f-8533-27d1028ebe74 + status: 200 OK + code: 200 + duration: 59.227536ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413/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, 08 Oct 2025 22:13:21 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: + - e476c3a3-0abc-4e4d-a43c-e14fa86530ae + status: 200 OK + code: 200 + duration: 58.570048ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305/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, 08 Oct 2025 22:13:21 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: + - ef91b4c4-138f-415e-bd43-f3ea94467860 + status: 200 OK + code: 200 + duration: 66.188543ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 20 + uncompressed: false + body: '{"private_nics":[]}' + headers: + Content-Length: + - "20" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:13:21 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: + - 9622aa58-a719-4c01-bb28-10f3ad1647e7 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 58.524453ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 20 + uncompressed: false + body: '{"private_nics":[]}' + headers: + Content-Length: + - "20" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:13:21 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: + - ef6236ad-78c4-4b8d-ba0a-a203be5cecf6 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 52.669184ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 20 + uncompressed: false + body: '{"private_nics":[]}' + headers: + Content-Length: + - "20" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:13:21 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: + - 16cf3721-1971-465e-818c-19396011c8f5 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 54.079106ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 530 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:13:18.966171+00:00","name":"tf-snap-eager-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "530" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:13:21 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: + - 850e1176-9e9b-4093-8f73-038073cc3f86 + status: 200 OK + code: 200 + duration: 59.949773ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fff175c8-97ff-4e7b-bfba-7feb57efc6ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 536 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:28.794005+00:00","error_details":null,"id":"fff175c8-97ff-4e7b-bfba-7feb57efc6ed","modification_date":"2025-10-08T22:11:59.752840+00:00","name":"tf-snap-affectionate-jones","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "536" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:13:21 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: + - 571d0851-1ed5-4b28-81fa-00ee7673caa8 + status: 200 OK + code: 200 + duration: 53.657105ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/df86c0e2-a0be-46c5-9ed1-26969edc7c00 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 531 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.523961+00:00","error_details":null,"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","modification_date":"2025-10-08T22:12:34.490729+00:00","name":"tf-snap-musing-joliot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "531" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:13:21 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: + - 29e30e05-e414-4f9a-a74c-beb844270630 + status: 200 OK + code: 200 + duration: 70.08959ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2319 + 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-10-08T22:11:12.039313+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-driscoll","id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"501","node_id":"28","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ad","maintenances":[],"modification_date":"2025-10-08T22:11:28.385800+00:00","name":"tf-srv-amazing-driscoll","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.039313+00:00","export_uri":null,"id":"765d8905-fd5d-4f27-812a-083baa39625e","modification_date":"2025-10-08T22:13:18.966171+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","name":"tf-srv-amazing-driscoll"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2319" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:13:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ffc7cfc3-3898-4d5a-bb63-f33811a8966c + status: 200 OK + code: 200 + duration: 85.237398ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2311 + 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-10-08T22:11:12.035555+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-epic-brattain","id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"2002","node_id":"45","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ab","maintenances":[],"modification_date":"2025-10-08T22:11:30.483070+00:00","name":"tf-srv-epic-brattain","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.035555+00:00","export_uri":null,"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","modification_date":"2025-10-08T22:12:34.490729+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","name":"tf-srv-epic-brattain"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2311" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:13:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2087f69d-cd5a-46e4-9341-10bec0e73293 + status: 200 OK + code: 200 + duration: 86.014588ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2334 + 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-10-08T22:11:12.006735+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-interesting-sanderson","id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"202","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:a9","maintenances":[],"modification_date":"2025-10-08T22:11:26.747018+00:00","name":"tf-srv-interesting-sanderson","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.006735+00:00","export_uri":null,"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","modification_date":"2025-10-08T22:11:59.752840+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","name":"tf-srv-interesting-sanderson"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2334" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:13:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e77bad32-8dd1-47ae-8aa5-6a5e893ab07c + status: 200 OK + code: 200 + duration: 98.302773ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/19a8fdf6-142b-4c76-bdfb-5b7a024411b5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 520 + uncompressed: false + body: '{"volume":{"creation_date":"2025-10-08T22:11:12.035555+00:00","export_uri":null,"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","modification_date":"2025-10-08T22:12:34.490729+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","name":"tf-srv-epic-brattain"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "520" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:13:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7ac6cab0-db6f-4ad5-aaaf-7186104b940f + status: 200 OK + code: 200 + duration: 62.665905ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/af6bd612-76ac-4b19-ad87-e49430deaa5b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 528 + uncompressed: false + body: '{"volume":{"creation_date":"2025-10-08T22:11:12.006735+00:00","export_uri":null,"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","modification_date":"2025-10-08T22:11:59.752840+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","name":"tf-srv-interesting-sanderson"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "528" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:13:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - da7eef15-16e4-4cdc-96a6-2c9e035a9ab8 + status: 200 OK + code: 200 + duration: 56.511042ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/765d8905-fd5d-4f27-812a-083baa39625e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 523 + uncompressed: false + body: '{"volume":{"creation_date":"2025-10-08T22:11:12.039313+00:00","export_uri":null,"id":"765d8905-fd5d-4f27-812a-083baa39625e","modification_date":"2025-10-08T22:13:18.966171+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","name":"tf-srv-amazing-driscoll"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "523" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:13:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 42b305c6-f0fc-45a0-8c08-71028501a04f + status: 200 OK + code: 200 + duration: 68.924419ms + - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305/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, 08 Oct 2025 22:13:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d02dbc14-9e29-4dd1-83a4-95c24c19f651 + status: 200 OK + code: 200 + duration: 58.493585ms + - id: 124 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0/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, 08 Oct 2025 22:13:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 436f8254-c5a6-4a8a-a203-337611904174 + status: 200 OK + code: 200 + duration: 52.801149ms + - id: 125 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413/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, 08 Oct 2025 22:13:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d05ece57-5041-4f67-abb5-77553142367d + status: 200 OK + code: 200 + duration: 63.820975ms + - id: 126 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 20 + uncompressed: false + body: '{"private_nics":[]}' + headers: + Content-Length: + - "20" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:13:22 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: + - a4f8517f-311a-4dda-958c-af461ff28d2a + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 58.740021ms + - id: 127 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 20 + uncompressed: false + body: '{"private_nics":[]}' + headers: + Content-Length: + - "20" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:13:22 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: + - 9324352b-0f5c-45e8-9cae-f28cc2ba6115 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 59.20923ms + - id: 128 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 20 + uncompressed: false + body: '{"private_nics":[]}' + headers: + Content-Length: + - "20" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:13:22 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: + - 89edb5ad-b326-4bf8-853c-7d900f225f58 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 48.910842ms + - id: 129 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 530 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:13:18.966171+00:00","name":"tf-snap-eager-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "530" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:13:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 993fa844-1149-4d38-b56b-1843f3a0e72c + status: 200 OK + code: 200 + duration: 51.20403ms + - id: 130 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/df86c0e2-a0be-46c5-9ed1-26969edc7c00 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 531 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.523961+00:00","error_details":null,"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","modification_date":"2025-10-08T22:12:34.490729+00:00","name":"tf-snap-musing-joliot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "531" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:13:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - aa24db7f-70f6-4c01-b150-0b97cfc955a3 + status: 200 OK + code: 200 + duration: 60.686868ms + - id: 131 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fff175c8-97ff-4e7b-bfba-7feb57efc6ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 536 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:28.794005+00:00","error_details":null,"id":"fff175c8-97ff-4e7b-bfba-7feb57efc6ed","modification_date":"2025-10-08T22:11:59.752840+00:00","name":"tf-snap-affectionate-jones","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "536" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:13:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - dfe7d7cd-2281-46ad-a542-a39df0f39506 + status: 200 OK + code: 200 + duration: 60.554853ms + - id: 132 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 27 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"snap02","tags":[]}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 516 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:13:22.530168+00:00","name":"snap02","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "516" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 22:13:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4e723d00-a777-4c0e-a024-a9dc9ec32dec + status: 200 OK + code: 200 + duration: 74.385116ms + - id: 133 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 27 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"snap03","tags":[]}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fff175c8-97ff-4e7b-bfba-7feb57efc6ed + method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 516 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"02ea2d7b-2eec-4b5f-bf8e-9c604b1d8560","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-06-10T15:31:55.206689+00:00","error_details":null,"id":"6ef269d0-861b-4f78-bdb9-4d1a66379566","modification_date":"2025-06-10T15:31:55.206689+00:00","name":"tf-snap-cocky-keller","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:28.794005+00:00","error_details":null,"id":"fff175c8-97ff-4e7b-bfba-7feb57efc6ed","modification_date":"2025-10-08T22:13:22.531465+00:00","name":"snap03","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "533" + - "516" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:36 GMT + - Wed, 08 Oct 2025 22:13:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3087,48 +6657,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 01592f03-cce9-46ea-b337-2b18e77ac971 + - 4f625c04-8dbc-4dd8-a295-591d327daa04 status: 200 OK code: 200 - duration: 110.446278ms - - id: 62 + duration: 75.824973ms + - id: 134 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 27 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"snap01","tags":[]}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6ef269d0-861b-4f78-bdb9-4d1a66379566 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/df86c0e2-a0be-46c5-9ed1-26969edc7c00 + method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 530 + content_length: 516 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"02ea2d7b-2eec-4b5f-bf8e-9c604b1d8560","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-06-10T15:31:55.206689+00:00","error_details":null,"id":"6ef269d0-861b-4f78-bdb9-4d1a66379566","modification_date":"2025-06-10T15:32:39.935207+00:00","name":"tf-snap-cocky-keller","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.523961+00:00","error_details":null,"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","modification_date":"2025-10-08T22:13:22.529617+00:00","name":"snap01","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "530" + - "516" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:41 GMT + - Wed, 08 Oct 2025 22:13:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3136,11 +6708,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 78b472ee-68dd-4fab-a8bd-0d975a7b59f7 + - 6b4ff11f-d908-438a-afa5-f5b4dd73c229 status: 200 OK code: 200 - duration: 111.949557ms - - id: 63 + duration: 76.966888ms + - id: 135 request: proto: HTTP/1.1 proto_major: 1 @@ -3155,8 +6727,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6ef269d0-861b-4f78-bdb9-4d1a66379566 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/df86c0e2-a0be-46c5-9ed1-26969edc7c00 method: GET response: proto: HTTP/2.0 @@ -3164,20 +6736,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 530 + content_length: 516 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"02ea2d7b-2eec-4b5f-bf8e-9c604b1d8560","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-06-10T15:31:55.206689+00:00","error_details":null,"id":"6ef269d0-861b-4f78-bdb9-4d1a66379566","modification_date":"2025-06-10T15:32:39.935207+00:00","name":"tf-snap-cocky-keller","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.523961+00:00","error_details":null,"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","modification_date":"2025-10-08T22:13:22.529617+00:00","name":"snap01","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "530" + - "516" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:41 GMT + - Wed, 08 Oct 2025 22:13:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3185,11 +6757,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 76888e62-a196-48b0-827e-91c0f568fb53 + - 85b6eeb2-7f0a-4651-a6f3-bac55a113e9b status: 200 OK code: 200 - duration: 103.599737ms - - id: 64 + duration: 54.660313ms + - id: 136 request: proto: HTTP/1.1 proto_major: 1 @@ -3204,8 +6776,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d1bb834f-67f4-4c47-95ae-dad144790b20 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fff175c8-97ff-4e7b-bfba-7feb57efc6ed method: GET response: proto: HTTP/2.0 @@ -3213,20 +6785,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2318 + content_length: 516 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-06-10T15:30:38.789226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-lehmann","id":"d1bb834f-67f4-4c47-95ae-dad144790b20","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"403","node_id":"26","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:69","maintenances":[],"modification_date":"2025-06-10T15:30:52.566517+00:00","name":"tf-srv-fervent-lehmann","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,"creation_date":"2025-06-10T15:30:38.789226+00:00","export_uri":null,"id":"eb26164f-d790-4bb7-ac74-595c2cd8fb55","modification_date":"2025-06-10T15:31:32.623679+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d1bb834f-67f4-4c47-95ae-dad144790b20","name":"tf-srv-fervent-lehmann"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:28.794005+00:00","error_details":null,"id":"fff175c8-97ff-4e7b-bfba-7feb57efc6ed","modification_date":"2025-10-08T22:13:22.531465+00:00","name":"snap03","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2318" + - "516" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:42 GMT + - Wed, 08 Oct 2025 22:13:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3234,11 +6806,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f022bfce-f488-428f-a21c-9ddcbfcd77dc + - 7bf72118-6030-4ea2-b186-bf0de84dd848 status: 200 OK code: 200 - duration: 188.810991ms - - id: 65 + duration: 55.375538ms + - id: 137 request: proto: HTTP/1.1 proto_major: 1 @@ -3253,8 +6825,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cc54061a-2913-4126-8b9a-f8b5d174c4e4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc method: GET response: proto: HTTP/2.0 @@ -3262,20 +6834,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2322 + content_length: 516 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-06-10T15:31:37.748184+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-determined-gates","id":"cc54061a-2913-4126-8b9a-f8b5d174c4e4","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"2002","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:83","maintenances":[],"modification_date":"2025-06-10T15:31:51.973545+00:00","name":"tf-srv-determined-gates","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,"creation_date":"2025-06-10T15:31:37.748184+00:00","export_uri":null,"id":"02ea2d7b-2eec-4b5f-bf8e-9c604b1d8560","modification_date":"2025-06-10T15:32:39.935207+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"cc54061a-2913-4126-8b9a-f8b5d174c4e4","name":"tf-srv-determined-gates"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:13:22.530168+00:00","name":"snap02","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2322" + - "516" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:42 GMT + - Wed, 08 Oct 2025 22:13:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3283,48 +6855,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7c403835-7e81-43d9-8107-3ba4d2ca912f + - f9079c75-dfe3-4de4-98ac-159ee289718e status: 200 OK code: 200 - duration: 154.663972ms - - id: 66 + duration: 68.742913ms + - id: 138 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 286 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-image-determined-wing","root_volume":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","arch":"x86_64","extra_volumes":{"1":{"id":"a17c678d-35df-4e96-aad0-a1182565a2cc"},"2":{"id":"fff175c8-97ff-4e7b-bfba-7feb57efc6ed"}},"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/b1d96ef8-34c7-4ee6-afbf-65c818fdefee - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 823 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"eb26164f-d790-4bb7-ac74-595c2cd8fb55","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-06-10T15:30:56.562573+00:00","error_details":null,"id":"b1d96ef8-34c7-4ee6-afbf-65c818fdefee","modification_date":"2025-06-10T15:31:32.623679+00:00","name":"tf-snap-adoring-shirley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T22:13:22.765417+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","name":"snap02","size":10000000000,"volume_type":"l_ssd"},"2":{"id":"fff175c8-97ff-4e7b-bfba-7feb57efc6ed","name":"snap03","size":20000000000,"volume_type":"l_ssd"}},"from_server":"","id":"d87413e6-145a-4d82-85e0-a447c9faf206","modification_date":"2025-10-08T22:13:22.765417+00:00","name":"tf-image-determined-wing","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","name":"snap01","size":15000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "533" + - "823" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:42 GMT + - Wed, 08 Oct 2025 22:13:22 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/images/d87413e6-145a-4d82-85e0-a447c9faf206 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3332,11 +6908,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - afe8e67b-f018-42f8-b6a0-47d2b21d5ead - status: 200 OK - code: 200 - duration: 101.479743ms - - id: 67 + - 5e0669b5-7a40-4f5a-a0b9-f945fe74e821 + status: 201 Created + code: 201 + duration: 206.291715ms + - id: 139 request: proto: HTTP/1.1 proto_major: 1 @@ -3351,8 +6927,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6ef269d0-861b-4f78-bdb9-4d1a66379566 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/d87413e6-145a-4d82-85e0-a447c9faf206 method: GET response: proto: HTTP/2.0 @@ -3360,20 +6936,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 530 + content_length: 823 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"02ea2d7b-2eec-4b5f-bf8e-9c604b1d8560","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-06-10T15:31:55.206689+00:00","error_details":null,"id":"6ef269d0-861b-4f78-bdb9-4d1a66379566","modification_date":"2025-06-10T15:32:39.935207+00:00","name":"tf-snap-cocky-keller","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T22:13:22.765417+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","name":"snap02","size":10000000000,"volume_type":"l_ssd"},"2":{"id":"fff175c8-97ff-4e7b-bfba-7feb57efc6ed","name":"snap03","size":20000000000,"volume_type":"l_ssd"}},"from_server":"","id":"d87413e6-145a-4d82-85e0-a447c9faf206","modification_date":"2025-10-08T22:13:22.765417+00:00","name":"tf-image-determined-wing","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","name":"snap01","size":15000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "530" + - "823" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:42 GMT + - Wed, 08 Oct 2025 22:13:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3381,11 +6957,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 309afb62-0d14-4f69-8154-c184190e062e + - bc8d51aa-ce4c-4f65-a7c9-020e31dc412d status: 200 OK code: 200 - duration: 108.695604ms - - id: 68 + duration: 80.802775ms + - id: 140 request: proto: HTTP/1.1 proto_major: 1 @@ -3400,8 +6976,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cc54061a-2913-4126-8b9a-f8b5d174c4e4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/d87413e6-145a-4d82-85e0-a447c9faf206 method: GET response: proto: HTTP/2.0 @@ -3409,20 +6985,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2322 + content_length: 823 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-06-10T15:31:37.748184+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-determined-gates","id":"cc54061a-2913-4126-8b9a-f8b5d174c4e4","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"2002","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:83","maintenances":[],"modification_date":"2025-06-10T15:31:51.973545+00:00","name":"tf-srv-determined-gates","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,"creation_date":"2025-06-10T15:31:37.748184+00:00","export_uri":null,"id":"02ea2d7b-2eec-4b5f-bf8e-9c604b1d8560","modification_date":"2025-06-10T15:32:39.935207+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"cc54061a-2913-4126-8b9a-f8b5d174c4e4","name":"tf-srv-determined-gates"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T22:13:22.765417+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","name":"snap02","size":10000000000,"volume_type":"l_ssd"},"2":{"id":"fff175c8-97ff-4e7b-bfba-7feb57efc6ed","name":"snap03","size":20000000000,"volume_type":"l_ssd"}},"from_server":"","id":"d87413e6-145a-4d82-85e0-a447c9faf206","modification_date":"2025-10-08T22:13:22.765417+00:00","name":"tf-image-determined-wing","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","name":"snap01","size":15000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "2322" + - "823" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:43 GMT + - Wed, 08 Oct 2025 22:13:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3430,11 +7006,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1286b139-8291-420d-9339-585e87dd3982 + - cbe094b0-e65a-4f35-8844-eb1f99dfd5f4 status: 200 OK code: 200 - duration: 174.875697ms - - id: 69 + duration: 93.009162ms + - id: 141 request: proto: HTTP/1.1 proto_major: 1 @@ -3449,8 +7025,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d1bb834f-67f4-4c47-95ae-dad144790b20 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/df86c0e2-a0be-46c5-9ed1-26969edc7c00 method: GET response: proto: HTTP/2.0 @@ -3458,20 +7034,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2318 + content_length: 516 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-06-10T15:30:38.789226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-lehmann","id":"d1bb834f-67f4-4c47-95ae-dad144790b20","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"403","node_id":"26","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:69","maintenances":[],"modification_date":"2025-06-10T15:30:52.566517+00:00","name":"tf-srv-fervent-lehmann","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,"creation_date":"2025-06-10T15:30:38.789226+00:00","export_uri":null,"id":"eb26164f-d790-4bb7-ac74-595c2cd8fb55","modification_date":"2025-06-10T15:31:32.623679+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d1bb834f-67f4-4c47-95ae-dad144790b20","name":"tf-srv-fervent-lehmann"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.523961+00:00","error_details":null,"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","modification_date":"2025-10-08T22:13:22.529617+00:00","name":"snap01","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2318" + - "516" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:43 GMT + - Wed, 08 Oct 2025 22:13:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3479,11 +7055,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bd8be871-b001-4f75-8f2c-0a5453abe347 + - a734b470-de4d-4da5-bd57-f750cbec7273 status: 200 OK code: 200 - duration: 188.898825ms - - id: 70 + duration: 50.93328ms + - id: 142 request: proto: HTTP/1.1 proto_major: 1 @@ -3498,8 +7074,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/02ea2d7b-2eec-4b5f-bf8e-9c604b1d8560 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc method: GET response: proto: HTTP/2.0 @@ -3507,20 +7083,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 523 + content_length: 516 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:31:37.748184+00:00","export_uri":null,"id":"02ea2d7b-2eec-4b5f-bf8e-9c604b1d8560","modification_date":"2025-06-10T15:32:39.935207+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"cc54061a-2913-4126-8b9a-f8b5d174c4e4","name":"tf-srv-determined-gates"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:13:22.530168+00:00","name":"snap02","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "523" + - "516" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:44 GMT + - Wed, 08 Oct 2025 22:13:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3528,11 +7104,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2df1d524-b8fd-4bf6-8090-d3920078df7f + - 252e3fd8-e1d3-46bc-8f19-7ee5b7899a55 status: 200 OK code: 200 - duration: 88.881045ms - - id: 71 + duration: 55.315758ms + - id: 143 request: proto: HTTP/1.1 proto_major: 1 @@ -3547,8 +7123,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/eb26164f-d790-4bb7-ac74-595c2cd8fb55 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fff175c8-97ff-4e7b-bfba-7feb57efc6ed method: GET response: proto: HTTP/2.0 @@ -3556,20 +7132,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 522 + content_length: 516 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:30:38.789226+00:00","export_uri":null,"id":"eb26164f-d790-4bb7-ac74-595c2cd8fb55","modification_date":"2025-06-10T15:31:32.623679+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d1bb834f-67f4-4c47-95ae-dad144790b20","name":"tf-srv-fervent-lehmann"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:28.794005+00:00","error_details":null,"id":"fff175c8-97ff-4e7b-bfba-7feb57efc6ed","modification_date":"2025-10-08T22:13:22.531465+00:00","name":"snap03","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "522" + - "516" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:44 GMT + - Wed, 08 Oct 2025 22:13:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3577,11 +7153,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5ecb6ca6-6456-4a9e-ab31-3bdaf5966923 + - 46ae47a0-4a7c-4ac4-baf7-fb384fbc5243 status: 200 OK code: 200 - duration: 145.328134ms - - id: 72 + duration: 60.66144ms + - id: 144 request: proto: HTTP/1.1 proto_major: 1 @@ -3596,8 +7172,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cc54061a-2913-4126-8b9a-f8b5d174c4e4/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/d87413e6-145a-4d82-85e0-a447c9faf206 method: GET response: proto: HTTP/2.0 @@ -3605,20 +7181,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 823 uncompressed: false - body: '{"user_data":[]}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T22:13:22.765417+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","name":"snap02","size":10000000000,"volume_type":"l_ssd"},"2":{"id":"fff175c8-97ff-4e7b-bfba-7feb57efc6ed","name":"snap03","size":20000000000,"volume_type":"l_ssd"}},"from_server":"","id":"d87413e6-145a-4d82-85e0-a447c9faf206","modification_date":"2025-10-08T22:13:22.765417+00:00","name":"tf-image-determined-wing","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","name":"snap01","size":15000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "823" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:44 GMT + - Wed, 08 Oct 2025 22:13:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3626,11 +7202,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ebfdf043-97b9-4fe0-a4a6-975a4d6dfd2e + - 663f3e9a-4add-4254-95a4-9a898910a8dc status: 200 OK code: 200 - duration: 134.311123ms - - id: 73 + duration: 78.731042ms + - id: 145 request: proto: HTTP/1.1 proto_major: 1 @@ -3645,8 +7221,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d1bb834f-67f4-4c47-95ae-dad144790b20/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413 method: GET response: proto: HTTP/2.0 @@ -3654,20 +7230,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 2334 uncompressed: false - body: '{"user_data":[]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.006735+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-interesting-sanderson","id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"202","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:a9","maintenances":[],"modification_date":"2025-10-08T22:11:26.747018+00:00","name":"tf-srv-interesting-sanderson","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.006735+00:00","export_uri":null,"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","modification_date":"2025-10-08T22:11:59.752840+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","name":"tf-srv-interesting-sanderson"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "2334" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:44 GMT + - Wed, 08 Oct 2025 22:13:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3675,11 +7251,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6fd661aa-1754-4e95-a13d-b61a002124c2 + - f0c6445f-e17c-4e96-9453-274c8f746838 status: 200 OK code: 200 - duration: 143.83324ms - - id: 74 + duration: 96.819679ms + - id: 146 request: proto: HTTP/1.1 proto_major: 1 @@ -3694,8 +7270,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cc54061a-2913-4126-8b9a-f8b5d174c4e4/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0 method: GET response: proto: HTTP/2.0 @@ -3703,22 +7279,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 2319 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.039313+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-driscoll","id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"501","node_id":"28","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ad","maintenances":[],"modification_date":"2025-10-08T22:11:28.385800+00:00","name":"tf-srv-amazing-driscoll","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.039313+00:00","export_uri":null,"id":"765d8905-fd5d-4f27-812a-083baa39625e","modification_date":"2025-10-08T22:13:18.966171+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","name":"tf-srv-amazing-driscoll"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "2319" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:44 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 22:13:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3726,13 +7300,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dd568358-07c6-4218-b59c-32499be6197e - X-Total-Count: - - "0" + - 7cdb5c4d-cee5-44cf-8350-bbfaef78f226 status: 200 OK code: 200 - duration: 90.268236ms - - id: 75 + duration: 99.795733ms + - id: 147 request: proto: HTTP/1.1 proto_major: 1 @@ -3747,8 +7319,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d1bb834f-67f4-4c47-95ae-dad144790b20/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305 method: GET response: proto: HTTP/2.0 @@ -3756,22 +7328,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 2311 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.035555+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-epic-brattain","id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"2002","node_id":"45","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ab","maintenances":[],"modification_date":"2025-10-08T22:11:30.483070+00:00","name":"tf-srv-epic-brattain","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.035555+00:00","export_uri":null,"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","modification_date":"2025-10-08T22:12:34.490729+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","name":"tf-srv-epic-brattain"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "2311" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:44 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 22:13:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3779,13 +7349,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fdcaa016-a909-438b-a273-66569152336d - X-Total-Count: - - "0" + - 73129f48-9d46-4888-b56f-886a3ecd2a73 status: 200 OK code: 200 - duration: 98.55682ms - - id: 76 + duration: 99.826039ms + - id: 148 request: proto: HTTP/1.1 proto_major: 1 @@ -3800,8 +7368,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6ef269d0-861b-4f78-bdb9-4d1a66379566 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/af6bd612-76ac-4b19-ad87-e49430deaa5b method: GET response: proto: HTTP/2.0 @@ -3809,20 +7377,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 530 + content_length: 528 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"02ea2d7b-2eec-4b5f-bf8e-9c604b1d8560","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-06-10T15:31:55.206689+00:00","error_details":null,"id":"6ef269d0-861b-4f78-bdb9-4d1a66379566","modification_date":"2025-06-10T15:32:39.935207+00:00","name":"tf-snap-cocky-keller","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T22:11:12.006735+00:00","export_uri":null,"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","modification_date":"2025-10-08T22:11:59.752840+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","name":"tf-srv-interesting-sanderson"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "530" + - "528" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:44 GMT + - Wed, 08 Oct 2025 22:13:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3830,11 +7398,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2ec165f0-2439-448c-b43a-64910ccb8116 + - 7cdbc8c8-e227-468b-8aeb-900e3fe066a7 status: 200 OK code: 200 - duration: 88.143311ms - - id: 77 + duration: 55.14449ms + - id: 149 request: proto: HTTP/1.1 proto_major: 1 @@ -3849,8 +7417,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/b1d96ef8-34c7-4ee6-afbf-65c818fdefee + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/765d8905-fd5d-4f27-812a-083baa39625e method: GET response: proto: HTTP/2.0 @@ -3858,20 +7426,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 523 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"eb26164f-d790-4bb7-ac74-595c2cd8fb55","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-06-10T15:30:56.562573+00:00","error_details":null,"id":"b1d96ef8-34c7-4ee6-afbf-65c818fdefee","modification_date":"2025-06-10T15:31:32.623679+00:00","name":"tf-snap-adoring-shirley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T22:11:12.039313+00:00","export_uri":null,"id":"765d8905-fd5d-4f27-812a-083baa39625e","modification_date":"2025-10-08T22:13:18.966171+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","name":"tf-srv-amazing-driscoll"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "533" + - "523" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:44 GMT + - Wed, 08 Oct 2025 22:13:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3879,11 +7447,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4da20488-59eb-496c-a320-550299fe442c + - 4c283bf4-94f0-48b6-8cca-9fe4f00fff0b status: 200 OK code: 200 - duration: 100.48144ms - - id: 78 + duration: 58.095106ms + - id: 150 request: proto: HTTP/1.1 proto_major: 1 @@ -3898,8 +7466,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d1bb834f-67f4-4c47-95ae-dad144790b20 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/19a8fdf6-142b-4c76-bdfb-5b7a024411b5 method: GET response: proto: HTTP/2.0 @@ -3907,20 +7475,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2318 + content_length: 520 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-06-10T15:30:38.789226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-lehmann","id":"d1bb834f-67f4-4c47-95ae-dad144790b20","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"403","node_id":"26","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:69","maintenances":[],"modification_date":"2025-06-10T15:30:52.566517+00:00","name":"tf-srv-fervent-lehmann","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,"creation_date":"2025-06-10T15:30:38.789226+00:00","export_uri":null,"id":"eb26164f-d790-4bb7-ac74-595c2cd8fb55","modification_date":"2025-06-10T15:31:32.623679+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d1bb834f-67f4-4c47-95ae-dad144790b20","name":"tf-srv-fervent-lehmann"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T22:11:12.035555+00:00","export_uri":null,"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","modification_date":"2025-10-08T22:12:34.490729+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","name":"tf-srv-epic-brattain"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2318" + - "520" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:45 GMT + - Wed, 08 Oct 2025 22:13:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3928,11 +7496,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1794be61-7f5c-4fd9-8035-967956f6ac52 + - 1b9064fe-f0af-485a-a13b-52162b5bcd98 status: 200 OK code: 200 - duration: 175.474791ms - - id: 79 + duration: 67.47944ms + - id: 151 request: proto: HTTP/1.1 proto_major: 1 @@ -3947,8 +7515,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cc54061a-2913-4126-8b9a-f8b5d174c4e4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413/user_data method: GET response: proto: HTTP/2.0 @@ -3956,20 +7524,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2322 + content_length: 17 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:37.748184+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-determined-gates","id":"cc54061a-2913-4126-8b9a-f8b5d174c4e4","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"2002","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:83","maintenances":[],"modification_date":"2025-06-10T15:31:51.973545+00:00","name":"tf-srv-determined-gates","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,"creation_date":"2025-06-10T15:31:37.748184+00:00","export_uri":null,"id":"02ea2d7b-2eec-4b5f-bf8e-9c604b1d8560","modification_date":"2025-06-10T15:32:39.935207+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"cc54061a-2913-4126-8b9a-f8b5d174c4e4","name":"tf-srv-determined-gates"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "2322" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:45 GMT + - Wed, 08 Oct 2025 22:13:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3977,11 +7545,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fa57e419-9e7e-4a8f-ad97-979ca0617a56 + - ec3455c1-2697-4b47-b3ca-c585917c1794 status: 200 OK code: 200 - duration: 221.017701ms - - id: 80 + duration: 60.80689ms + - id: 152 request: proto: HTTP/1.1 proto_major: 1 @@ -3996,8 +7564,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/eb26164f-d790-4bb7-ac74-595c2cd8fb55 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305/user_data method: GET response: proto: HTTP/2.0 @@ -4005,20 +7573,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 522 + content_length: 17 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:30:38.789226+00:00","export_uri":null,"id":"eb26164f-d790-4bb7-ac74-595c2cd8fb55","modification_date":"2025-06-10T15:31:32.623679+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d1bb834f-67f4-4c47-95ae-dad144790b20","name":"tf-srv-fervent-lehmann"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "522" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:45 GMT + - Wed, 08 Oct 2025 22:13:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4026,11 +7594,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 500ac9b7-2267-4e7b-bda6-23483b68fd66 + - cdc18a9f-ed40-4226-8068-cb754bbd52f6 status: 200 OK code: 200 - duration: 101.689296ms - - id: 81 + duration: 47.856079ms + - id: 153 request: proto: HTTP/1.1 proto_major: 1 @@ -4045,8 +7613,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/02ea2d7b-2eec-4b5f-bf8e-9c604b1d8560 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0/user_data method: GET response: proto: HTTP/2.0 @@ -4054,20 +7622,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 523 + content_length: 17 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:31:37.748184+00:00","export_uri":null,"id":"02ea2d7b-2eec-4b5f-bf8e-9c604b1d8560","modification_date":"2025-06-10T15:32:39.935207+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"cc54061a-2913-4126-8b9a-f8b5d174c4e4","name":"tf-srv-determined-gates"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "523" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:45 GMT + - Wed, 08 Oct 2025 22:13:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4075,11 +7643,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a51310d0-6e18-4a4a-a498-5b2bef29a892 + - fa3c1493-10e6-48dc-9810-aa3e86587e50 status: 200 OK code: 200 - duration: 142.275469ms - - id: 82 + duration: 62.106797ms + - id: 154 request: proto: HTTP/1.1 proto_major: 1 @@ -4094,8 +7662,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d1bb834f-67f4-4c47-95ae-dad144790b20/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305/private_nics method: GET response: proto: HTTP/2.0 @@ -4103,20 +7671,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 20 uncompressed: false - body: '{"user_data":[]}' + body: '{"private_nics":[]}' headers: Content-Length: - - "17" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:45 GMT + - Wed, 08 Oct 2025 22:13:23 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4124,11 +7694,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9370dcc8-b1a1-4fbc-9713-b5a6b370c64e + - ce1b667d-3f35-432a-8e8e-7ebe69586ab1 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 102.065751ms - - id: 83 + duration: 65.636727ms + - id: 155 request: proto: HTTP/1.1 proto_major: 1 @@ -4143,8 +7715,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cc54061a-2913-4126-8b9a-f8b5d174c4e4/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413/private_nics method: GET response: proto: HTTP/2.0 @@ -4152,20 +7724,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 20 uncompressed: false - body: '{"user_data":[]}' + body: '{"private_nics":[]}' headers: Content-Length: - - "17" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:45 GMT + - Wed, 08 Oct 2025 22:13:23 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4173,11 +7747,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e67ac15a-c0de-4770-a17f-5f7b286bec91 + - 23b0dcd1-4bdd-433a-aa6b-e1b072c94e9f + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 95.861676ms - - id: 84 + duration: 68.304809ms + - id: 156 request: proto: HTTP/1.1 proto_major: 1 @@ -4192,8 +7768,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d1bb834f-67f4-4c47-95ae-dad144790b20/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0/private_nics method: GET response: proto: HTTP/2.0 @@ -4212,11 +7788,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:46 GMT + - Wed, 08 Oct 2025 22:13:23 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4224,13 +7800,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec1a4e9a-f5bf-4d82-bfe5-5f95d17250a0 + - 00cbdab1-8560-4ab4-b8ee-1db76e23cb68 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 122.11491ms - - id: 85 + duration: 69.531391ms + - id: 157 request: proto: HTTP/1.1 proto_major: 1 @@ -4245,8 +7821,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cc54061a-2913-4126-8b9a-f8b5d174c4e4/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fff175c8-97ff-4e7b-bfba-7feb57efc6ed method: GET response: proto: HTTP/2.0 @@ -4254,22 +7830,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 516 uncompressed: false - body: '{"private_nics":[]}' + body: '{"snapshot":{"base_volume":{"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:28.794005+00:00","error_details":null,"id":"fff175c8-97ff-4e7b-bfba-7feb57efc6ed","modification_date":"2025-10-08T22:13:22.531465+00:00","name":"snap03","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "516" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:46 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 22:13:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4277,13 +7851,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3857ffe8-2696-4b84-94aa-8fd3812e1986 - X-Total-Count: - - "0" + - 5962a3a5-49fa-407b-9657-2e1680779f02 status: 200 OK code: 200 - duration: 107.735073ms - - id: 86 + duration: 59.782811ms + - id: 158 request: proto: HTTP/1.1 proto_major: 1 @@ -4298,8 +7870,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/b1d96ef8-34c7-4ee6-afbf-65c818fdefee + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc method: GET response: proto: HTTP/2.0 @@ -4307,20 +7879,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 516 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"eb26164f-d790-4bb7-ac74-595c2cd8fb55","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-06-10T15:30:56.562573+00:00","error_details":null,"id":"b1d96ef8-34c7-4ee6-afbf-65c818fdefee","modification_date":"2025-06-10T15:31:32.623679+00:00","name":"tf-snap-adoring-shirley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:13:22.530168+00:00","name":"snap02","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "533" + - "516" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:46 GMT + - Wed, 08 Oct 2025 22:13:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4328,11 +7900,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa2708fd-a792-43d2-a657-d95ec4c383bd + - ef5ed9a9-630d-4ec2-8194-365a0c59d1a0 status: 200 OK code: 200 - duration: 88.499479ms - - id: 87 + duration: 56.899249ms + - id: 159 request: proto: HTTP/1.1 proto_major: 1 @@ -4347,8 +7919,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6ef269d0-861b-4f78-bdb9-4d1a66379566 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/df86c0e2-a0be-46c5-9ed1-26969edc7c00 method: GET response: proto: HTTP/2.0 @@ -4356,20 +7928,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 530 + content_length: 516 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"02ea2d7b-2eec-4b5f-bf8e-9c604b1d8560","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-06-10T15:31:55.206689+00:00","error_details":null,"id":"6ef269d0-861b-4f78-bdb9-4d1a66379566","modification_date":"2025-06-10T15:32:39.935207+00:00","name":"tf-snap-cocky-keller","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.523961+00:00","error_details":null,"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","modification_date":"2025-10-08T22:13:22.529617+00:00","name":"snap01","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "530" + - "516" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:46 GMT + - Wed, 08 Oct 2025 22:13:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4377,52 +7949,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ee0163a8-b41c-4a35-bb7b-03c0f73fc6ca + - db162acf-a811-41d1-bb22-16eb148dbef9 status: 200 OK code: 200 - duration: 89.492101ms - - id: 88 + duration: 72.834476ms + - id: 160 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 233 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-image-nifty-pascal","root_volume":"b1d96ef8-34c7-4ee6-afbf-65c818fdefee","arch":"x86_64","extra_volumes":{"1":{"id":"6ef269d0-861b-4f78-bdb9-4d1a66379566"}},"project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/d87413e6-145a-4d82-85e0-a447c9faf206 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 735 + content_length: 823 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-06-10T15:32:47.723766+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"6ef269d0-861b-4f78-bdb9-4d1a66379566","name":"tf-snap-cocky-keller","size":10000000000,"volume_type":"l_ssd"}},"from_server":"","id":"87e6bf7f-e6e1-4ece-9618-aef2854658e6","modification_date":"2025-06-10T15:32:47.723766+00:00","name":"tf-image-nifty-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"b1d96ef8-34c7-4ee6-afbf-65c818fdefee","name":"tf-snap-adoring-shirley","size":15000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T22:13:22.765417+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","name":"snap02","size":10000000000,"volume_type":"l_ssd"},"2":{"id":"fff175c8-97ff-4e7b-bfba-7feb57efc6ed","name":"snap03","size":20000000000,"volume_type":"l_ssd"}},"from_server":"","id":"d87413e6-145a-4d82-85e0-a447c9faf206","modification_date":"2025-10-08T22:13:22.765417+00:00","name":"tf-image-determined-wing","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","name":"snap01","size":15000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "735" + - "823" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:47 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/images/87e6bf7f-e6e1-4ece-9618-aef2854658e6 + - Wed, 08 Oct 2025 22:13:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4430,11 +7998,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 70c0bed7-36bb-40b9-a11d-a8535cd3328b - status: 201 Created - code: 201 - duration: 362.922433ms - - id: 89 + - 58160b8e-9541-4f83-b720-f88b6793adb1 + status: 200 OK + code: 200 + duration: 73.466578ms + - id: 161 request: proto: HTTP/1.1 proto_major: 1 @@ -4449,8 +8017,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/87e6bf7f-e6e1-4ece-9618-aef2854658e6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/d87413e6-145a-4d82-85e0-a447c9faf206 method: GET response: proto: HTTP/2.0 @@ -4458,20 +8026,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 735 + content_length: 823 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-06-10T15:32:47.723766+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"6ef269d0-861b-4f78-bdb9-4d1a66379566","name":"tf-snap-cocky-keller","size":10000000000,"volume_type":"l_ssd"}},"from_server":"","id":"87e6bf7f-e6e1-4ece-9618-aef2854658e6","modification_date":"2025-06-10T15:32:47.723766+00:00","name":"tf-image-nifty-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"b1d96ef8-34c7-4ee6-afbf-65c818fdefee","name":"tf-snap-adoring-shirley","size":15000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T22:13:22.765417+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","name":"snap02","size":10000000000,"volume_type":"l_ssd"},"2":{"id":"fff175c8-97ff-4e7b-bfba-7feb57efc6ed","name":"snap03","size":20000000000,"volume_type":"l_ssd"}},"from_server":"","id":"d87413e6-145a-4d82-85e0-a447c9faf206","modification_date":"2025-10-08T22:13:22.765417+00:00","name":"tf-image-determined-wing","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","name":"snap01","size":15000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "735" + - "823" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:47 GMT + - Wed, 08 Oct 2025 22:13:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4479,11 +8047,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 497b117e-d11b-4023-a163-eb8b79322559 + - 6b62584d-66cb-4b6d-810c-00d936cb36ac status: 200 OK code: 200 - duration: 103.146036ms - - id: 90 + duration: 76.298963ms + - id: 162 request: proto: HTTP/1.1 proto_major: 1 @@ -4498,29 +8066,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/87e6bf7f-e6e1-4ece-9618-aef2854658e6 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/d87413e6-145a-4d82-85e0-a447c9faf206 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 735 + content_length: 0 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-06-10T15:32:47.723766+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"6ef269d0-861b-4f78-bdb9-4d1a66379566","name":"tf-snap-cocky-keller","size":10000000000,"volume_type":"l_ssd"}},"from_server":"","id":"87e6bf7f-e6e1-4ece-9618-aef2854658e6","modification_date":"2025-06-10T15:32:47.723766+00:00","name":"tf-image-nifty-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"b1d96ef8-34c7-4ee6-afbf-65c818fdefee","name":"tf-snap-adoring-shirley","size":15000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: "" headers: - Content-Length: - - "735" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:48 GMT + - Wed, 08 Oct 2025 22:13:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4528,11 +8094,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 12af5c4e-99a9-465c-9b7a-1590e975bc59 - status: 200 OK - code: 200 - duration: 125.624903ms - - id: 91 + - 9e224983-da02-4451-87f5-c72b951a3ebe + status: 204 No Content + code: 204 + duration: 327.456618ms + - id: 163 request: proto: HTTP/1.1 proto_major: 1 @@ -4547,8 +8113,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d1bb834f-67f4-4c47-95ae-dad144790b20 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/d87413e6-145a-4d82-85e0-a447c9faf206 method: GET response: proto: HTTP/2.0 @@ -4556,20 +8122,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2318 + content_length: 142 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-06-10T15:30:38.789226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-lehmann","id":"d1bb834f-67f4-4c47-95ae-dad144790b20","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"403","node_id":"26","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:69","maintenances":[],"modification_date":"2025-06-10T15:30:52.566517+00:00","name":"tf-srv-fervent-lehmann","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,"creation_date":"2025-06-10T15:30:38.789226+00:00","export_uri":null,"id":"eb26164f-d790-4bb7-ac74-595c2cd8fb55","modification_date":"2025-06-10T15:31:32.623679+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d1bb834f-67f4-4c47-95ae-dad144790b20","name":"tf-srv-fervent-lehmann"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_image","resource_id":"d87413e6-145a-4d82-85e0-a447c9faf206","type":"not_found"}' headers: Content-Length: - - "2318" + - "142" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:48 GMT + - Wed, 08 Oct 2025 22:13:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4577,11 +8143,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d76d7c73-de53-4992-9b14-785c86d5d420 - status: 200 OK - code: 200 - duration: 159.551558ms - - id: 92 + - 0bc3a246-4963-47f7-9e09-5f20202dce1b + status: 404 Not Found + code: 404 + duration: 36.880911ms + - id: 164 request: proto: HTTP/1.1 proto_major: 1 @@ -4596,8 +8162,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cc54061a-2913-4126-8b9a-f8b5d174c4e4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fff175c8-97ff-4e7b-bfba-7feb57efc6ed method: GET response: proto: HTTP/2.0 @@ -4605,20 +8171,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2322 + content_length: 516 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-06-10T15:31:37.748184+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-determined-gates","id":"cc54061a-2913-4126-8b9a-f8b5d174c4e4","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"2002","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:83","maintenances":[],"modification_date":"2025-06-10T15:31:51.973545+00:00","name":"tf-srv-determined-gates","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,"creation_date":"2025-06-10T15:31:37.748184+00:00","export_uri":null,"id":"02ea2d7b-2eec-4b5f-bf8e-9c604b1d8560","modification_date":"2025-06-10T15:32:39.935207+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"cc54061a-2913-4126-8b9a-f8b5d174c4e4","name":"tf-srv-determined-gates"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:28.794005+00:00","error_details":null,"id":"fff175c8-97ff-4e7b-bfba-7feb57efc6ed","modification_date":"2025-10-08T22:13:22.531465+00:00","name":"snap03","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2322" + - "516" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:48 GMT + - Wed, 08 Oct 2025 22:13:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4626,11 +8192,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0965d6e2-0ec6-4ff4-bdde-5b4731d3249b + - 31a48e43-32e7-41a9-94cd-3eb10463ff35 status: 200 OK code: 200 - duration: 141.67882ms - - id: 93 + duration: 47.860268ms + - id: 165 request: proto: HTTP/1.1 proto_major: 1 @@ -4645,8 +8211,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/b1d96ef8-34c7-4ee6-afbf-65c818fdefee + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc method: GET response: proto: HTTP/2.0 @@ -4654,20 +8220,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 516 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"eb26164f-d790-4bb7-ac74-595c2cd8fb55","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-06-10T15:30:56.562573+00:00","error_details":null,"id":"b1d96ef8-34c7-4ee6-afbf-65c818fdefee","modification_date":"2025-06-10T15:31:32.623679+00:00","name":"tf-snap-adoring-shirley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:13:22.530168+00:00","name":"snap02","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "533" + - "516" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:48 GMT + - Wed, 08 Oct 2025 22:13:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4675,11 +8241,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6e87aa80-1cba-4306-b4a3-b6fc3111f1b9 + - 3d7b7ebd-53a6-44b4-8ad2-02a97b2c4a69 status: 200 OK code: 200 - duration: 126.942964ms - - id: 94 + duration: 60.55942ms + - id: 166 request: proto: HTTP/1.1 proto_major: 1 @@ -4694,8 +8260,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6ef269d0-861b-4f78-bdb9-4d1a66379566 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/df86c0e2-a0be-46c5-9ed1-26969edc7c00 method: GET response: proto: HTTP/2.0 @@ -4703,20 +8269,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 530 + content_length: 516 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"02ea2d7b-2eec-4b5f-bf8e-9c604b1d8560","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-06-10T15:31:55.206689+00:00","error_details":null,"id":"6ef269d0-861b-4f78-bdb9-4d1a66379566","modification_date":"2025-06-10T15:32:39.935207+00:00","name":"tf-snap-cocky-keller","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.523961+00:00","error_details":null,"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","modification_date":"2025-10-08T22:13:22.529617+00:00","name":"snap01","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "530" + - "516" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:48 GMT + - Wed, 08 Oct 2025 22:13:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4724,11 +8290,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 318279dd-833c-47b8-9c44-99bf8c3c594e + - 5a35913c-54fb-4500-92c6-dbc852bf469a status: 200 OK code: 200 - duration: 110.753253ms - - id: 95 + duration: 63.43144ms + - id: 167 request: proto: HTTP/1.1 proto_major: 1 @@ -4743,29 +8309,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/87e6bf7f-e6e1-4ece-9618-aef2854658e6 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 735 + content_length: 0 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-06-10T15:32:47.723766+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"6ef269d0-861b-4f78-bdb9-4d1a66379566","name":"tf-snap-cocky-keller","size":10000000000,"volume_type":"l_ssd"}},"from_server":"","id":"87e6bf7f-e6e1-4ece-9618-aef2854658e6","modification_date":"2025-06-10T15:32:47.723766+00:00","name":"tf-image-nifty-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"b1d96ef8-34c7-4ee6-afbf-65c818fdefee","name":"tf-snap-adoring-shirley","size":15000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: "" headers: - Content-Length: - - "735" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:49 GMT + - Wed, 08 Oct 2025 22:13:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4773,11 +8337,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5582dec5-810c-40e3-9f16-a8b676999deb - status: 200 OK - code: 200 - duration: 115.026186ms - - id: 96 + - 204ccbfc-f1d0-4048-8b4e-d4bf96a3686c + status: 204 No Content + code: 204 + duration: 107.658657ms + - id: 168 request: proto: HTTP/1.1 proto_major: 1 @@ -4792,29 +8356,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d1bb834f-67f4-4c47-95ae-dad144790b20 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fff175c8-97ff-4e7b-bfba-7feb57efc6ed + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2318 + content_length: 0 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:38.789226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-lehmann","id":"d1bb834f-67f4-4c47-95ae-dad144790b20","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"403","node_id":"26","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:69","maintenances":[],"modification_date":"2025-06-10T15:30:52.566517+00:00","name":"tf-srv-fervent-lehmann","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,"creation_date":"2025-06-10T15:30:38.789226+00:00","export_uri":null,"id":"eb26164f-d790-4bb7-ac74-595c2cd8fb55","modification_date":"2025-06-10T15:31:32.623679+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d1bb834f-67f4-4c47-95ae-dad144790b20","name":"tf-srv-fervent-lehmann"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: "" headers: - Content-Length: - - "2318" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:50 GMT + - Wed, 08 Oct 2025 22:13:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4822,11 +8384,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8732ddf5-8b21-4b7f-befe-fed7e7548658 - status: 200 OK - code: 200 - duration: 166.156805ms - - id: 97 + - 25d4cc2e-2a2e-4584-b65b-6462fdf1fc63 + status: 204 No Content + code: 204 + duration: 126.143023ms + - id: 169 request: proto: HTTP/1.1 proto_major: 1 @@ -4841,29 +8403,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cc54061a-2913-4126-8b9a-f8b5d174c4e4 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/df86c0e2-a0be-46c5-9ed1-26969edc7c00 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2322 + content_length: 0 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:37.748184+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-determined-gates","id":"cc54061a-2913-4126-8b9a-f8b5d174c4e4","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"2002","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:83","maintenances":[],"modification_date":"2025-06-10T15:31:51.973545+00:00","name":"tf-srv-determined-gates","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,"creation_date":"2025-06-10T15:31:37.748184+00:00","export_uri":null,"id":"02ea2d7b-2eec-4b5f-bf8e-9c604b1d8560","modification_date":"2025-06-10T15:32:39.935207+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"cc54061a-2913-4126-8b9a-f8b5d174c4e4","name":"tf-srv-determined-gates"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: "" headers: - Content-Length: - - "2322" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:50 GMT + - Wed, 08 Oct 2025 22:13:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4871,11 +8431,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bcfb6bcc-a7fd-4b45-abdb-f883c73c5e94 - status: 200 OK - code: 200 - duration: 172.440299ms - - id: 98 + - c8863fbd-e6a7-40e2-b627-ea4a23fbeb78 + status: 204 No Content + code: 204 + duration: 137.081569ms + - id: 170 request: proto: HTTP/1.1 proto_major: 1 @@ -4890,8 +8450,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/eb26164f-d790-4bb7-ac74-595c2cd8fb55 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc method: GET response: proto: HTTP/2.0 @@ -4899,20 +8459,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 522 + content_length: 145 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:30:38.789226+00:00","export_uri":null,"id":"eb26164f-d790-4bb7-ac74-595c2cd8fb55","modification_date":"2025-06-10T15:31:32.623679+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d1bb834f-67f4-4c47-95ae-dad144790b20","name":"tf-srv-fervent-lehmann"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"a17c678d-35df-4e96-aad0-a1182565a2cc","type":"not_found"}' headers: Content-Length: - - "522" + - "145" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:50 GMT + - Wed, 08 Oct 2025 22:13:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4920,11 +8480,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cfc2b2b3-7fa9-4b54-a2ee-dab2053b07f2 - status: 200 OK - code: 200 - duration: 130.275284ms - - id: 99 + - f882c367-68c8-4c13-93bb-d2f16b25bc69 + status: 404 Not Found + code: 404 + duration: 31.766012ms + - id: 171 request: proto: HTTP/1.1 proto_major: 1 @@ -4939,8 +8499,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/02ea2d7b-2eec-4b5f-bf8e-9c604b1d8560 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fff175c8-97ff-4e7b-bfba-7feb57efc6ed method: GET response: proto: HTTP/2.0 @@ -4948,20 +8508,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 523 + content_length: 145 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:31:37.748184+00:00","export_uri":null,"id":"02ea2d7b-2eec-4b5f-bf8e-9c604b1d8560","modification_date":"2025-06-10T15:32:39.935207+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"cc54061a-2913-4126-8b9a-f8b5d174c4e4","name":"tf-srv-determined-gates"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"fff175c8-97ff-4e7b-bfba-7feb57efc6ed","type":"not_found"}' headers: Content-Length: - - "523" + - "145" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:50 GMT + - Wed, 08 Oct 2025 22:13:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4969,11 +8529,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f688e648-ab3e-4fe4-a8e5-adbecd050a5d - status: 200 OK - code: 200 - duration: 123.882144ms - - id: 100 + - 1c003787-f61f-4d8d-9b28-85748eaf9c4f + status: 404 Not Found + code: 404 + duration: 33.334427ms + - id: 172 request: proto: HTTP/1.1 proto_major: 1 @@ -4988,8 +8548,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d1bb834f-67f4-4c47-95ae-dad144790b20/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/df86c0e2-a0be-46c5-9ed1-26969edc7c00 method: GET response: proto: HTTP/2.0 @@ -4997,20 +8557,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 145 uncompressed: false - body: '{"user_data":[]}' + body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","type":"not_found"}' headers: Content-Length: - - "17" + - "145" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:50 GMT + - Wed, 08 Oct 2025 22:13:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5018,11 +8578,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 083a199f-2702-483c-a824-b20100349ab7 - status: 200 OK - code: 200 - duration: 155.549181ms - - id: 101 + - d5f96b84-aade-47df-b48b-78ee5ebcd7c3 + status: 404 Not Found + code: 404 + duration: 30.013066ms + - id: 173 request: proto: HTTP/1.1 proto_major: 1 @@ -5037,8 +8597,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cc54061a-2913-4126-8b9a-f8b5d174c4e4/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0 method: GET response: proto: HTTP/2.0 @@ -5046,20 +8606,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 2319 uncompressed: false - body: '{"user_data":[]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.039313+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-driscoll","id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"501","node_id":"28","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ad","maintenances":[],"modification_date":"2025-10-08T22:11:28.385800+00:00","name":"tf-srv-amazing-driscoll","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.039313+00:00","export_uri":null,"id":"765d8905-fd5d-4f27-812a-083baa39625e","modification_date":"2025-10-08T22:13:18.966171+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","name":"tf-srv-amazing-driscoll"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "2319" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:50 GMT + - Wed, 08 Oct 2025 22:13:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5067,11 +8627,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f0f72132-0f88-4944-bcd6-b333db5197b3 + - afd038f0-a001-441a-b303-c9bd8ea791ae status: 200 OK code: 200 - duration: 159.714533ms - - id: 102 + duration: 89.096462ms + - id: 174 request: proto: HTTP/1.1 proto_major: 1 @@ -5086,8 +8646,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d1bb834f-67f4-4c47-95ae-dad144790b20/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413 method: GET response: proto: HTTP/2.0 @@ -5095,22 +8655,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 2334 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.006735+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-interesting-sanderson","id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"202","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:a9","maintenances":[],"modification_date":"2025-10-08T22:11:26.747018+00:00","name":"tf-srv-interesting-sanderson","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.006735+00:00","export_uri":null,"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","modification_date":"2025-10-08T22:11:59.752840+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","name":"tf-srv-interesting-sanderson"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "2334" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:50 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 22:13:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5118,13 +8676,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e88c690e-fba7-4a5c-9173-f8820016ae18 - X-Total-Count: - - "0" + - a586bc82-f036-4ec6-bdb3-26461f086cb3 status: 200 OK code: 200 - duration: 95.339908ms - - id: 103 + duration: 90.888991ms + - id: 175 request: proto: HTTP/1.1 proto_major: 1 @@ -5139,8 +8695,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cc54061a-2913-4126-8b9a-f8b5d174c4e4/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305 method: GET response: proto: HTTP/2.0 @@ -5148,22 +8704,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 2311 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.035555+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-epic-brattain","id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"2002","node_id":"45","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ab","maintenances":[],"modification_date":"2025-10-08T22:11:30.483070+00:00","name":"tf-srv-epic-brattain","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.035555+00:00","export_uri":null,"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","modification_date":"2025-10-08T22:12:34.490729+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","name":"tf-srv-epic-brattain"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "2311" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:50 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 22:13:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5171,50 +8725,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f25b69d-b162-42db-b58d-db24bbc0dd8a - X-Total-Count: - - "0" + - 457068e1-3c5d-4bce-bc38-cc2c3af5e81e status: 200 OK code: 200 - duration: 101.516832ms - - id: 104 + duration: 91.062603ms + - id: 176 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 21 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"poweroff"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/b1d96ef8-34c7-4ee6-afbf-65c818fdefee - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 352 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"eb26164f-d790-4bb7-ac74-595c2cd8fb55","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-06-10T15:30:56.562573+00:00","error_details":null,"id":"b1d96ef8-34c7-4ee6-afbf-65c818fdefee","modification_date":"2025-06-10T15:31:32.623679+00:00","name":"tf-snap-adoring-shirley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"task":{"description":"server_poweroff","href_from":"/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413/action","href_result":"/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413","id":"1a59f06b-ae1b-4e9e-a7d7-31f61b1d9ea2","progress":0,"started_at":"2025-10-08T22:13:25.331259+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "533" + - "352" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:50 GMT + - Wed, 08 Oct 2025 22:13:25 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/1a59f06b-ae1b-4e9e-a7d7-31f61b1d9ea2 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5222,48 +8778,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a3bda648-a25c-4ac5-b3f0-6e3be736034f - status: 200 OK - code: 200 - duration: 91.776294ms - - id: 105 + - 411cd5ce-5604-4613-9b34-80eb237e4ec2 + status: 202 Accepted + code: 202 + duration: 194.455963ms + - id: 177 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 21 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"poweroff"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6ef269d0-861b-4f78-bdb9-4d1a66379566 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 530 + content_length: 352 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"02ea2d7b-2eec-4b5f-bf8e-9c604b1d8560","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-06-10T15:31:55.206689+00:00","error_details":null,"id":"6ef269d0-861b-4f78-bdb9-4d1a66379566","modification_date":"2025-06-10T15:32:39.935207+00:00","name":"tf-snap-cocky-keller","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"task":{"description":"server_poweroff","href_from":"/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0/action","href_result":"/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","id":"07090b6d-b357-4dd0-9d7e-4ac16c3d95ec","progress":0,"started_at":"2025-10-08T22:13:25.343872+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "530" + - "352" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:50 GMT + - Wed, 08 Oct 2025 22:13:25 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/07090b6d-b357-4dd0-9d7e-4ac16c3d95ec Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5271,48 +8831,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 364bbba3-2cab-4483-b6bb-871a6608bc49 - status: 200 OK - code: 200 - duration: 115.363138ms - - id: 106 + - 1a7f7a28-28ba-4041-901f-35f54c76d202 + status: 202 Accepted + code: 202 + duration: 208.144566ms + - id: 178 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 21 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"poweroff"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/87e6bf7f-e6e1-4ece-9618-aef2854658e6 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 735 + content_length: 352 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-06-10T15:32:47.723766+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"6ef269d0-861b-4f78-bdb9-4d1a66379566","name":"tf-snap-cocky-keller","size":10000000000,"volume_type":"l_ssd"}},"from_server":"","id":"87e6bf7f-e6e1-4ece-9618-aef2854658e6","modification_date":"2025-06-10T15:32:47.723766+00:00","name":"tf-image-nifty-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"b1d96ef8-34c7-4ee6-afbf-65c818fdefee","name":"tf-snap-adoring-shirley","size":15000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_poweroff","href_from":"/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305/action","href_result":"/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305","id":"dac5c3f4-bf3f-4bae-8ec7-caebd26810fa","progress":0,"started_at":"2025-10-08T22:13:25.347751+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "735" + - "352" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:50 GMT + - Wed, 08 Oct 2025 22:13:25 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/dac5c3f4-bf3f-4bae-8ec7-caebd26810fa Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5320,11 +8884,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cc5d9139-d50c-4f3d-8af3-960f52c89c88 - status: 200 OK - code: 200 - duration: 97.726663ms - - id: 107 + - 7db102ea-886a-4793-9219-9a94334a9cdc + status: 202 Accepted + code: 202 + duration: 188.803615ms + - id: 179 request: proto: HTTP/1.1 proto_major: 1 @@ -5339,8 +8903,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/87e6bf7f-e6e1-4ece-9618-aef2854658e6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413 method: GET response: proto: HTTP/2.0 @@ -5348,20 +8912,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 735 + content_length: 2294 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-06-10T15:32:47.723766+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"6ef269d0-861b-4f78-bdb9-4d1a66379566","name":"tf-snap-cocky-keller","size":10000000000,"volume_type":"l_ssd"}},"from_server":"","id":"87e6bf7f-e6e1-4ece-9618-aef2854658e6","modification_date":"2025-06-10T15:32:47.723766+00:00","name":"tf-image-nifty-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"b1d96ef8-34c7-4ee6-afbf-65c818fdefee","name":"tf-snap-adoring-shirley","size":15000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"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-10-08T22:11:12.006735+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-interesting-sanderson","id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"202","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:a9","maintenances":[],"modification_date":"2025-10-08T22:13:25.182346+00:00","name":"tf-srv-interesting-sanderson","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.006735+00:00","export_uri":null,"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","modification_date":"2025-10-08T22:11:59.752840+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","name":"tf-srv-interesting-sanderson"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "735" + - "2294" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:51 GMT + - Wed, 08 Oct 2025 22:13:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5369,11 +8933,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c073ba55-4fce-4470-a21a-da64ba1bf753 + - f4d32fd1-e1ae-4b6a-908b-e3529d134529 status: 200 OK code: 200 - duration: 125.677672ms - - id: 108 + duration: 85.947019ms + - id: 180 request: proto: HTTP/1.1 proto_major: 1 @@ -5388,27 +8952,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/87e6bf7f-e6e1-4ece-9618-aef2854658e6 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 2271 uncompressed: false - body: "" + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.035555+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-epic-brattain","id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"2002","node_id":"45","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ab","maintenances":[],"modification_date":"2025-10-08T22:13:25.203730+00:00","name":"tf-srv-epic-brattain","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.035555+00:00","export_uri":null,"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","modification_date":"2025-10-08T22:12:34.490729+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","name":"tf-srv-epic-brattain"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: + Content-Length: + - "2271" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:53 GMT + - Wed, 08 Oct 2025 22:13:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5416,11 +8982,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 065e664f-7584-49a3-9ee2-3a761e3219f7 - status: 204 No Content - code: 204 - duration: 2.064654035s - - id: 109 + - 41655d70-a159-4dde-9162-cbc4f79aab2e + status: 200 OK + code: 200 + duration: 82.723118ms + - id: 181 request: proto: HTTP/1.1 proto_major: 1 @@ -5435,8 +9001,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/87e6bf7f-e6e1-4ece-9618-aef2854658e6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0 method: GET response: proto: HTTP/2.0 @@ -5444,20 +9010,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 142 + content_length: 2279 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_image","resource_id":"87e6bf7f-e6e1-4ece-9618-aef2854658e6","type":"not_found"}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.039313+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-driscoll","id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"501","node_id":"28","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ad","maintenances":[],"modification_date":"2025-10-08T22:13:25.181515+00:00","name":"tf-srv-amazing-driscoll","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.039313+00:00","export_uri":null,"id":"765d8905-fd5d-4f27-812a-083baa39625e","modification_date":"2025-10-08T22:13:18.966171+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","name":"tf-srv-amazing-driscoll"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "142" + - "2279" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:53 GMT + - Wed, 08 Oct 2025 22:13:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5465,11 +9031,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fdf4f20c-45ad-475a-bf05-21fa5794317c - status: 404 Not Found - code: 404 - duration: 32.350169ms - - id: 110 + - e63a0daf-c015-48c9-a749-f6e4f698774e + status: 200 OK + code: 200 + duration: 90.568168ms + - id: 182 request: proto: HTTP/1.1 proto_major: 1 @@ -5484,8 +9050,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6ef269d0-861b-4f78-bdb9-4d1a66379566 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413 method: GET response: proto: HTTP/2.0 @@ -5493,20 +9059,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 530 + content_length: 2294 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"02ea2d7b-2eec-4b5f-bf8e-9c604b1d8560","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-06-10T15:31:55.206689+00:00","error_details":null,"id":"6ef269d0-861b-4f78-bdb9-4d1a66379566","modification_date":"2025-06-10T15:32:39.935207+00:00","name":"tf-snap-cocky-keller","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","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-10-08T22:11:12.006735+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-interesting-sanderson","id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"202","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:a9","maintenances":[],"modification_date":"2025-10-08T22:13:25.182346+00:00","name":"tf-srv-interesting-sanderson","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.006735+00:00","export_uri":null,"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","modification_date":"2025-10-08T22:11:59.752840+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","name":"tf-srv-interesting-sanderson"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "530" + - "2294" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:54 GMT + - Wed, 08 Oct 2025 22:13:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5514,11 +9080,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 12e054dc-b453-43e4-8c77-b2dbdcdde676 + - 8e2a09d8-7ea6-4628-b469-743543fed006 status: 200 OK code: 200 - duration: 119.182991ms - - id: 111 + duration: 89.81254ms + - id: 183 request: proto: HTTP/1.1 proto_major: 1 @@ -5533,8 +9099,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/b1d96ef8-34c7-4ee6-afbf-65c818fdefee + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0 method: GET response: proto: HTTP/2.0 @@ -5542,20 +9108,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 2279 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"eb26164f-d790-4bb7-ac74-595c2cd8fb55","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-06-10T15:30:56.562573+00:00","error_details":null,"id":"b1d96ef8-34c7-4ee6-afbf-65c818fdefee","modification_date":"2025-06-10T15:31:32.623679+00:00","name":"tf-snap-adoring-shirley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","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-10-08T22:11:12.039313+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-driscoll","id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"501","node_id":"28","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ad","maintenances":[],"modification_date":"2025-10-08T22:13:25.181515+00:00","name":"tf-srv-amazing-driscoll","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.039313+00:00","export_uri":null,"id":"765d8905-fd5d-4f27-812a-083baa39625e","modification_date":"2025-10-08T22:13:18.966171+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","name":"tf-srv-amazing-driscoll"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "533" + - "2279" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:54 GMT + - Wed, 08 Oct 2025 22:13:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5563,11 +9129,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 34bc64be-266f-4403-86bf-fc0378b7e643 + - 34a0accc-4edd-41e2-a253-a0e7039027df status: 200 OK code: 200 - duration: 150.711359ms - - id: 112 + duration: 81.614354ms + - id: 184 request: proto: HTTP/1.1 proto_major: 1 @@ -5582,27 +9148,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6ef269d0-861b-4f78-bdb9-4d1a66379566 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 2271 uncompressed: false - body: "" + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.035555+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-epic-brattain","id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"2002","node_id":"45","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ab","maintenances":[],"modification_date":"2025-10-08T22:13:25.203730+00:00","name":"tf-srv-epic-brattain","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.035555+00:00","export_uri":null,"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","modification_date":"2025-10-08T22:12:34.490729+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","name":"tf-srv-epic-brattain"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: + Content-Length: + - "2271" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:54 GMT + - Wed, 08 Oct 2025 22:13:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5610,11 +9178,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 53c69dbe-6e01-464c-9f0d-2eda44f4c8d1 - status: 204 No Content - code: 204 - duration: 246.684444ms - - id: 113 + - 2cb37255-3ec0-4d3e-bee3-983e086f9d5c + status: 200 OK + code: 200 + duration: 104.050026ms + - id: 185 request: proto: HTTP/1.1 proto_major: 1 @@ -5629,27 +9197,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/b1d96ef8-34c7-4ee6-afbf-65c818fdefee - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 2279 uncompressed: false - body: "" + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.039313+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-driscoll","id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"501","node_id":"28","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ad","maintenances":[],"modification_date":"2025-10-08T22:13:25.181515+00:00","name":"tf-srv-amazing-driscoll","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.039313+00:00","export_uri":null,"id":"765d8905-fd5d-4f27-812a-083baa39625e","modification_date":"2025-10-08T22:13:18.966171+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","name":"tf-srv-amazing-driscoll"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: + Content-Length: + - "2279" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:54 GMT + - Wed, 08 Oct 2025 22:13:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5657,11 +9227,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - af8f2bf0-7ef5-44c3-9402-aeec1185b165 - status: 204 No Content - code: 204 - duration: 292.828231ms - - id: 114 + - 8bb6c3b4-05e3-4db8-be69-4bc13934ad8a + status: 200 OK + code: 200 + duration: 89.516518ms + - id: 186 request: proto: HTTP/1.1 proto_major: 1 @@ -5676,8 +9246,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6ef269d0-861b-4f78-bdb9-4d1a66379566 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413 method: GET response: proto: HTTP/2.0 @@ -5685,20 +9255,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 145 + content_length: 2294 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"6ef269d0-861b-4f78-bdb9-4d1a66379566","type":"not_found"}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.006735+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-interesting-sanderson","id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"202","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:a9","maintenances":[],"modification_date":"2025-10-08T22:13:25.182346+00:00","name":"tf-srv-interesting-sanderson","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.006735+00:00","export_uri":null,"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","modification_date":"2025-10-08T22:11:59.752840+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","name":"tf-srv-interesting-sanderson"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "145" + - "2294" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:54 GMT + - Wed, 08 Oct 2025 22:13:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5706,11 +9276,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b39b38a1-09ec-4a39-bcfe-2587b0a82789 - status: 404 Not Found - code: 404 - duration: 293.370257ms - - id: 115 + - 9c0e3c85-9e86-4e43-afde-cfef5057cc2a + status: 200 OK + code: 200 + duration: 104.764883ms + - id: 187 request: proto: HTTP/1.1 proto_major: 1 @@ -5725,8 +9295,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/b1d96ef8-34c7-4ee6-afbf-65c818fdefee + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305 method: GET response: proto: HTTP/2.0 @@ -5734,20 +9304,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 145 + content_length: 2271 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"b1d96ef8-34c7-4ee6-afbf-65c818fdefee","type":"not_found"}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.035555+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-epic-brattain","id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"2002","node_id":"45","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ab","maintenances":[],"modification_date":"2025-10-08T22:13:25.203730+00:00","name":"tf-srv-epic-brattain","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.035555+00:00","export_uri":null,"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","modification_date":"2025-10-08T22:12:34.490729+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","name":"tf-srv-epic-brattain"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "145" + - "2271" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:54 GMT + - Wed, 08 Oct 2025 22:13:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5755,11 +9325,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bdb2599d-73f8-4869-9c38-ea8b117e0dd5 - status: 404 Not Found - code: 404 - duration: 249.019022ms - - id: 116 + - c7436eb3-2f6a-42f5-92ea-ce178c778785 + status: 200 OK + code: 200 + duration: 89.776208ms + - id: 188 request: proto: HTTP/1.1 proto_major: 1 @@ -5774,8 +9344,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cc54061a-2913-4126-8b9a-f8b5d174c4e4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0 method: GET response: proto: HTTP/2.0 @@ -5783,20 +9353,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2322 + content_length: 2279 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-06-10T15:31:37.748184+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-determined-gates","id":"cc54061a-2913-4126-8b9a-f8b5d174c4e4","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"2002","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:83","maintenances":[],"modification_date":"2025-06-10T15:31:51.973545+00:00","name":"tf-srv-determined-gates","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,"creation_date":"2025-06-10T15:31:37.748184+00:00","export_uri":null,"id":"02ea2d7b-2eec-4b5f-bf8e-9c604b1d8560","modification_date":"2025-06-10T15:32:39.935207+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"cc54061a-2913-4126-8b9a-f8b5d174c4e4","name":"tf-srv-determined-gates"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.039313+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-driscoll","id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"501","node_id":"28","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ad","maintenances":[],"modification_date":"2025-10-08T22:13:25.181515+00:00","name":"tf-srv-amazing-driscoll","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.039313+00:00","export_uri":null,"id":"765d8905-fd5d-4f27-812a-083baa39625e","modification_date":"2025-10-08T22:13:18.966171+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","name":"tf-srv-amazing-driscoll"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2322" + - "2279" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:54 GMT + - Wed, 08 Oct 2025 22:13:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5804,11 +9374,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8569d574-5179-4699-b911-312eb8ba32fa + - 15112ecc-beb9-4ad2-95fd-89d20b6d9b21 status: 200 OK code: 200 - duration: 232.164954ms - - id: 117 + duration: 103.794113ms + - id: 189 request: proto: HTTP/1.1 proto_major: 1 @@ -5823,8 +9393,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d1bb834f-67f4-4c47-95ae-dad144790b20 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305 method: GET response: proto: HTTP/2.0 @@ -5832,20 +9402,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2318 + content_length: 2271 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-06-10T15:30:38.789226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-lehmann","id":"d1bb834f-67f4-4c47-95ae-dad144790b20","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"403","node_id":"26","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:69","maintenances":[],"modification_date":"2025-06-10T15:30:52.566517+00:00","name":"tf-srv-fervent-lehmann","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,"creation_date":"2025-06-10T15:30:38.789226+00:00","export_uri":null,"id":"eb26164f-d790-4bb7-ac74-595c2cd8fb55","modification_date":"2025-06-10T15:31:32.623679+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d1bb834f-67f4-4c47-95ae-dad144790b20","name":"tf-srv-fervent-lehmann"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.035555+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-epic-brattain","id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"2002","node_id":"45","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ab","maintenances":[],"modification_date":"2025-10-08T22:13:25.203730+00:00","name":"tf-srv-epic-brattain","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.035555+00:00","export_uri":null,"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","modification_date":"2025-10-08T22:12:34.490729+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","name":"tf-srv-epic-brattain"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2318" + - "2271" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:55 GMT + - Wed, 08 Oct 2025 22:13:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5853,52 +9423,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f7f5aa6c-e33c-4164-9d42-b6ef7876e146 + - e4905151-081c-479e-be26-922f143d1408 status: 200 OK code: 200 - duration: 400.466942ms - - id: 118 + duration: 94.151538ms + - id: 190 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 21 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweroff"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cc54061a-2913-4126-8b9a-f8b5d174c4e4/action - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 352 + content_length: 2294 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/cc54061a-2913-4126-8b9a-f8b5d174c4e4/action","href_result":"/servers/cc54061a-2913-4126-8b9a-f8b5d174c4e4","id":"97f0732f-c2ae-4e4b-bde0-103d65490b82","progress":0,"started_at":"2025-06-10T15:32:55.199429+00:00","status":"pending","terminated_at":null,"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-10-08T22:11:12.006735+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-interesting-sanderson","id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"202","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:a9","maintenances":[],"modification_date":"2025-10-08T22:13:25.182346+00:00","name":"tf-srv-interesting-sanderson","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.006735+00:00","export_uri":null,"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","modification_date":"2025-10-08T22:11:59.752840+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","name":"tf-srv-interesting-sanderson"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "352" + - "2294" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:55 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/97f0732f-c2ae-4e4b-bde0-103d65490b82 + - Wed, 08 Oct 2025 22:13:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5906,11 +9472,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f9ab0c59-b1c1-4189-bd22-80aefb5c1685 - status: 202 Accepted - code: 202 - duration: 426.752608ms - - id: 119 + - 997edb36-963f-46dd-9911-5a75e60bb774 + status: 200 OK + code: 200 + duration: 101.279112ms + - id: 191 request: proto: HTTP/1.1 proto_major: 1 @@ -5925,8 +9491,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cc54061a-2913-4126-8b9a-f8b5d174c4e4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0 method: GET response: proto: HTTP/2.0 @@ -5934,20 +9500,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2282 + content_length: 2279 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-06-10T15:31:37.748184+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-determined-gates","id":"cc54061a-2913-4126-8b9a-f8b5d174c4e4","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"2002","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:83","maintenances":[],"modification_date":"2025-06-10T15:32:54.934636+00:00","name":"tf-srv-determined-gates","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:31:37.748184+00:00","export_uri":null,"id":"02ea2d7b-2eec-4b5f-bf8e-9c604b1d8560","modification_date":"2025-06-10T15:32:39.935207+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"cc54061a-2913-4126-8b9a-f8b5d174c4e4","name":"tf-srv-determined-gates"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.039313+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-driscoll","id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"501","node_id":"28","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ad","maintenances":[],"modification_date":"2025-10-08T22:13:25.181515+00:00","name":"tf-srv-amazing-driscoll","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.039313+00:00","export_uri":null,"id":"765d8905-fd5d-4f27-812a-083baa39625e","modification_date":"2025-10-08T22:13:18.966171+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","name":"tf-srv-amazing-driscoll"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2282" + - "2279" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:55 GMT + - Wed, 08 Oct 2025 22:13:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5955,52 +9521,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4152a037-a53a-4ebd-9688-190304955e38 + - d7e6917a-06b9-4b85-bd05-bd88681e13a5 status: 200 OK code: 200 - duration: 289.204656ms - - id: 120 + duration: 96.627013ms + - id: 192 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 21 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweroff"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d1bb834f-67f4-4c47-95ae-dad144790b20/action - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 352 + content_length: 2178 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/d1bb834f-67f4-4c47-95ae-dad144790b20/action","href_result":"/servers/d1bb834f-67f4-4c47-95ae-dad144790b20","id":"f2eb5777-64e3-47fe-97ec-f6efc86c5230","progress":0,"started_at":"2025-06-10T15:32:55.295755+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.006735+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-interesting-sanderson","id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:75:a9","maintenances":[],"modification_date":"2025-10-08T22:13:44.836183+00:00","name":"tf-srv-interesting-sanderson","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.006735+00:00","export_uri":null,"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","modification_date":"2025-10-08T22:11:59.752840+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","name":"tf-srv-interesting-sanderson"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "352" + - "2178" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:55 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/f2eb5777-64e3-47fe-97ec-f6efc86c5230 + - Wed, 08 Oct 2025 22:13:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6008,11 +9570,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 18213bfa-24fc-49c4-9ddd-0f78d1722fcd - status: 202 Accepted - code: 202 - duration: 526.21131ms - - id: 121 + - 7891ed3e-02b1-4b0e-81d3-b8fb1d9b0e80 + status: 200 OK + code: 200 + duration: 93.666559ms + - id: 193 request: proto: HTTP/1.1 proto_major: 1 @@ -6027,8 +9589,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d1bb834f-67f4-4c47-95ae-dad144790b20 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305 method: GET response: proto: HTTP/2.0 @@ -6036,20 +9598,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2278 + content_length: 2271 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-06-10T15:30:38.789226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-lehmann","id":"d1bb834f-67f4-4c47-95ae-dad144790b20","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"403","node_id":"26","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:69","maintenances":[],"modification_date":"2025-06-10T15:32:55.103993+00:00","name":"tf-srv-fervent-lehmann","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:30:38.789226+00:00","export_uri":null,"id":"eb26164f-d790-4bb7-ac74-595c2cd8fb55","modification_date":"2025-06-10T15:31:32.623679+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d1bb834f-67f4-4c47-95ae-dad144790b20","name":"tf-srv-fervent-lehmann"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.035555+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-epic-brattain","id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"2002","node_id":"45","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ab","maintenances":[],"modification_date":"2025-10-08T22:13:25.203730+00:00","name":"tf-srv-epic-brattain","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.035555+00:00","export_uri":null,"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","modification_date":"2025-10-08T22:12:34.490729+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","name":"tf-srv-epic-brattain"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2278" + - "2271" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:55 GMT + - Wed, 08 Oct 2025 22:13:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6057,11 +9619,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 29638ffe-399f-40b6-b401-0d781782e88a + - 196c7969-ad9e-4b4f-8e1e-a0f472c97937 status: 200 OK code: 200 - duration: 214.649246ms - - id: 122 + duration: 108.23306ms + - id: 194 request: proto: HTTP/1.1 proto_major: 1 @@ -6076,8 +9638,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cc54061a-2913-4126-8b9a-f8b5d174c4e4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413 method: GET response: proto: HTTP/2.0 @@ -6085,20 +9647,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2282 + content_length: 2178 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-06-10T15:31:37.748184+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-determined-gates","id":"cc54061a-2913-4126-8b9a-f8b5d174c4e4","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"2002","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:83","maintenances":[],"modification_date":"2025-06-10T15:32:54.934636+00:00","name":"tf-srv-determined-gates","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:31:37.748184+00:00","export_uri":null,"id":"02ea2d7b-2eec-4b5f-bf8e-9c604b1d8560","modification_date":"2025-06-10T15:32:39.935207+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"cc54061a-2913-4126-8b9a-f8b5d174c4e4","name":"tf-srv-determined-gates"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.006735+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-interesting-sanderson","id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:75:a9","maintenances":[],"modification_date":"2025-10-08T22:13:44.836183+00:00","name":"tf-srv-interesting-sanderson","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.006735+00:00","export_uri":null,"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","modification_date":"2025-10-08T22:11:59.752840+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","name":"tf-srv-interesting-sanderson"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2282" + - "2178" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:00 GMT + - Wed, 08 Oct 2025 22:13:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6106,11 +9668,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 01fec7b5-5c4d-4abd-9948-d24464defdf0 + - 26d4dda3-0e95-4149-9862-2019adf66cbb status: 200 OK code: 200 - duration: 157.793188ms - - id: 123 + duration: 95.528052ms + - id: 195 request: proto: HTTP/1.1 proto_major: 1 @@ -6125,29 +9687,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d1bb834f-67f4-4c47-95ae-dad144790b20 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2278 + content_length: 0 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-06-10T15:30:38.789226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-lehmann","id":"d1bb834f-67f4-4c47-95ae-dad144790b20","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"403","node_id":"26","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:69","maintenances":[],"modification_date":"2025-06-10T15:32:55.103993+00:00","name":"tf-srv-fervent-lehmann","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:30:38.789226+00:00","export_uri":null,"id":"eb26164f-d790-4bb7-ac74-595c2cd8fb55","modification_date":"2025-06-10T15:31:32.623679+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d1bb834f-67f4-4c47-95ae-dad144790b20","name":"tf-srv-fervent-lehmann"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: "" headers: - Content-Length: - - "2278" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:00 GMT + - Wed, 08 Oct 2025 22:13:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6155,11 +9715,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2c9ed7dc-d42a-4487-9145-50b7ca999b8f - status: 200 OK - code: 200 - duration: 199.483324ms - - id: 124 + - 83d283f3-83a8-4d00-b6e7-87cc3f401586 + status: 204 No Content + code: 204 + duration: 169.605249ms + - id: 196 request: proto: HTTP/1.1 proto_major: 1 @@ -6174,8 +9734,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cc54061a-2913-4126-8b9a-f8b5d174c4e4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413 method: GET response: proto: HTTP/2.0 @@ -6183,20 +9743,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2282 + content_length: 143 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-06-10T15:31:37.748184+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-determined-gates","id":"cc54061a-2913-4126-8b9a-f8b5d174c4e4","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"2002","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:83","maintenances":[],"modification_date":"2025-06-10T15:32:54.934636+00:00","name":"tf-srv-determined-gates","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:31:37.748184+00:00","export_uri":null,"id":"02ea2d7b-2eec-4b5f-bf8e-9c604b1d8560","modification_date":"2025-06-10T15:32:39.935207+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"cc54061a-2913-4126-8b9a-f8b5d174c4e4","name":"tf-srv-determined-gates"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","type":"not_found"}' headers: Content-Length: - - "2282" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:05 GMT + - Wed, 08 Oct 2025 22:13:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6204,11 +9764,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5eaab875-a84d-4e27-81d3-bc5b7cb0a806 - status: 200 OK - code: 200 - duration: 216.495076ms - - id: 125 + - 4ba8fd81-49b1-4e70-a37f-1583ba6538d1 + status: 404 Not Found + code: 404 + duration: 65.719331ms + - id: 197 request: proto: HTTP/1.1 proto_major: 1 @@ -6223,8 +9783,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d1bb834f-67f4-4c47-95ae-dad144790b20 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/af6bd612-76ac-4b19-ad87-e49430deaa5b method: GET response: proto: HTTP/2.0 @@ -6232,20 +9792,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2278 + content_length: 446 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-06-10T15:30:38.789226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-lehmann","id":"d1bb834f-67f4-4c47-95ae-dad144790b20","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"403","node_id":"26","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:69","maintenances":[],"modification_date":"2025-06-10T15:32:55.103993+00:00","name":"tf-srv-fervent-lehmann","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:30:38.789226+00:00","export_uri":null,"id":"eb26164f-d790-4bb7-ac74-595c2cd8fb55","modification_date":"2025-06-10T15:31:32.623679+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d1bb834f-67f4-4c47-95ae-dad144790b20","name":"tf-srv-fervent-lehmann"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T22:11:12.006735+00:00","export_uri":null,"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","modification_date":"2025-10-08T22:13:45.969344+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2278" + - "446" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:06 GMT + - Wed, 08 Oct 2025 22:13:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6253,11 +9813,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ee7bb0cb-aa2f-4861-84cc-5bf0823d3614 + - 366e1cfe-09f3-488f-95b4-2236d82127db status: 200 OK code: 200 - duration: 191.091857ms - - id: 126 + duration: 59.702788ms + - id: 198 request: proto: HTTP/1.1 proto_major: 1 @@ -6272,29 +9832,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cc54061a-2913-4126-8b9a-f8b5d174c4e4 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/af6bd612-76ac-4b19-ad87-e49430deaa5b + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2282 + content_length: 0 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-06-10T15:31:37.748184+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-determined-gates","id":"cc54061a-2913-4126-8b9a-f8b5d174c4e4","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"2002","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:83","maintenances":[],"modification_date":"2025-06-10T15:32:54.934636+00:00","name":"tf-srv-determined-gates","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:31:37.748184+00:00","export_uri":null,"id":"02ea2d7b-2eec-4b5f-bf8e-9c604b1d8560","modification_date":"2025-06-10T15:32:39.935207+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"cc54061a-2913-4126-8b9a-f8b5d174c4e4","name":"tf-srv-determined-gates"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: "" headers: - Content-Length: - - "2282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:11 GMT + - Wed, 08 Oct 2025 22:13:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6302,11 +9860,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 345fa8b4-09bf-4b6e-820d-911ccfdde43f - status: 200 OK - code: 200 - duration: 175.04868ms - - id: 127 + - 17514f9b-e8c8-4901-9379-b5eae96ea23c + status: 204 No Content + code: 204 + duration: 85.214321ms + - id: 199 request: proto: HTTP/1.1 proto_major: 1 @@ -6321,8 +9879,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d1bb834f-67f4-4c47-95ae-dad144790b20 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0 method: GET response: proto: HTTP/2.0 @@ -6330,20 +9888,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2278 + content_length: 2163 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-06-10T15:30:38.789226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-lehmann","id":"d1bb834f-67f4-4c47-95ae-dad144790b20","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"403","node_id":"26","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:69","maintenances":[],"modification_date":"2025-06-10T15:32:55.103993+00:00","name":"tf-srv-fervent-lehmann","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:30:38.789226+00:00","export_uri":null,"id":"eb26164f-d790-4bb7-ac74-595c2cd8fb55","modification_date":"2025-06-10T15:31:32.623679+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d1bb834f-67f4-4c47-95ae-dad144790b20","name":"tf-srv-fervent-lehmann"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.039313+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-driscoll","id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:75:ad","maintenances":[],"modification_date":"2025-10-08T22:13:45.945023+00:00","name":"tf-srv-amazing-driscoll","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.039313+00:00","export_uri":null,"id":"765d8905-fd5d-4f27-812a-083baa39625e","modification_date":"2025-10-08T22:13:18.966171+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","name":"tf-srv-amazing-driscoll"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2278" + - "2163" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:11 GMT + - Wed, 08 Oct 2025 22:13:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6351,11 +9909,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65f68d8a-81eb-4489-922e-5d4020804e37 + - fce020d7-8a21-452f-befc-0faffe4aa586 status: 200 OK code: 200 - duration: 163.246216ms - - id: 128 + duration: 87.416079ms + - id: 200 request: proto: HTTP/1.1 proto_major: 1 @@ -6370,8 +9928,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cc54061a-2913-4126-8b9a-f8b5d174c4e4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305 method: GET response: proto: HTTP/2.0 @@ -6379,20 +9937,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2282 + content_length: 2154 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-06-10T15:31:37.748184+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-determined-gates","id":"cc54061a-2913-4126-8b9a-f8b5d174c4e4","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"2002","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:83","maintenances":[],"modification_date":"2025-06-10T15:32:54.934636+00:00","name":"tf-srv-determined-gates","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:31:37.748184+00:00","export_uri":null,"id":"02ea2d7b-2eec-4b5f-bf8e-9c604b1d8560","modification_date":"2025-06-10T15:32:39.935207+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"cc54061a-2913-4126-8b9a-f8b5d174c4e4","name":"tf-srv-determined-gates"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.035555+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-epic-brattain","id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:75:ab","maintenances":[],"modification_date":"2025-10-08T22:13:46.319061+00:00","name":"tf-srv-epic-brattain","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.035555+00:00","export_uri":null,"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","modification_date":"2025-10-08T22:12:34.490729+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","name":"tf-srv-epic-brattain"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2282" + - "2154" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:16 GMT + - Wed, 08 Oct 2025 22:13:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6400,11 +9958,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7180db57-b354-4638-9503-d1a8e8f8b814 + - b06f2af1-8e94-4873-990a-8b9c899fb7ab status: 200 OK code: 200 - duration: 174.31255ms - - id: 129 + duration: 94.349282ms + - id: 201 request: proto: HTTP/1.1 proto_major: 1 @@ -6419,8 +9977,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d1bb834f-67f4-4c47-95ae-dad144790b20 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0 method: GET response: proto: HTTP/2.0 @@ -6428,20 +9986,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2162 + content_length: 2163 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:38.789226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-lehmann","id":"d1bb834f-67f4-4c47-95ae-dad144790b20","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:69","maintenances":[],"modification_date":"2025-06-10T15:33:14.218430+00:00","name":"tf-srv-fervent-lehmann","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,"creation_date":"2025-06-10T15:30:38.789226+00:00","export_uri":null,"id":"eb26164f-d790-4bb7-ac74-595c2cd8fb55","modification_date":"2025-06-10T15:31:32.623679+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d1bb834f-67f4-4c47-95ae-dad144790b20","name":"tf-srv-fervent-lehmann"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.039313+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-driscoll","id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:75:ad","maintenances":[],"modification_date":"2025-10-08T22:13:45.945023+00:00","name":"tf-srv-amazing-driscoll","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.039313+00:00","export_uri":null,"id":"765d8905-fd5d-4f27-812a-083baa39625e","modification_date":"2025-10-08T22:13:18.966171+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","name":"tf-srv-amazing-driscoll"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2162" + - "2163" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:16 GMT + - Wed, 08 Oct 2025 22:13:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6449,11 +10007,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 352a6555-b859-443b-98d7-bf688f01d2ee + - 29ced926-a1b1-475c-b50f-147429584590 status: 200 OK code: 200 - duration: 216.089636ms - - id: 130 + duration: 80.530013ms + - id: 202 request: proto: HTTP/1.1 proto_major: 1 @@ -6468,8 +10026,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d1bb834f-67f4-4c47-95ae-dad144790b20 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305 method: GET response: proto: HTTP/2.0 @@ -6477,20 +10035,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2162 + content_length: 2154 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:38.789226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-lehmann","id":"d1bb834f-67f4-4c47-95ae-dad144790b20","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:69","maintenances":[],"modification_date":"2025-06-10T15:33:14.218430+00:00","name":"tf-srv-fervent-lehmann","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,"creation_date":"2025-06-10T15:30:38.789226+00:00","export_uri":null,"id":"eb26164f-d790-4bb7-ac74-595c2cd8fb55","modification_date":"2025-06-10T15:31:32.623679+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d1bb834f-67f4-4c47-95ae-dad144790b20","name":"tf-srv-fervent-lehmann"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.035555+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-epic-brattain","id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:75:ab","maintenances":[],"modification_date":"2025-10-08T22:13:46.319061+00:00","name":"tf-srv-epic-brattain","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.035555+00:00","export_uri":null,"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","modification_date":"2025-10-08T22:12:34.490729+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","name":"tf-srv-epic-brattain"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2162" + - "2154" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:16 GMT + - Wed, 08 Oct 2025 22:13:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6498,11 +10056,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f8843c1f-6de0-4dc8-8aa7-d4b2a775be27 + - a9f99425-94cc-4fdc-84e9-cd3ae4b23469 status: 200 OK code: 200 - duration: 270.357007ms - - id: 131 + duration: 108.647158ms + - id: 203 request: proto: HTTP/1.1 proto_major: 1 @@ -6517,8 +10075,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d1bb834f-67f4-4c47-95ae-dad144790b20 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0 method: DELETE response: proto: HTTP/2.0 @@ -6535,9 +10093,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:16 GMT + - Wed, 08 Oct 2025 22:13:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6545,11 +10103,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9f725e3e-2110-4d7f-9003-8f044935b1eb + - ed45976d-6f6a-4a36-9b16-c31e1f875d1d status: 204 No Content code: 204 - duration: 297.965402ms - - id: 132 + duration: 106.995757ms + - id: 204 request: proto: HTTP/1.1 proto_major: 1 @@ -6564,29 +10122,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d1bb834f-67f4-4c47-95ae-dad144790b20 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 0 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"d1bb834f-67f4-4c47-95ae-dad144790b20","type":"not_found"}' + body: "" headers: - Content-Length: - - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:17 GMT + - Wed, 08 Oct 2025 22:13:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6594,11 +10150,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8790c680-8c0d-4849-8507-036e4ba69324 - status: 404 Not Found - code: 404 - duration: 100.168973ms - - id: 133 + - e61e22e0-a97b-4929-b638-de4f7050999e + status: 204 No Content + code: 204 + duration: 101.124759ms + - id: 205 request: proto: HTTP/1.1 proto_major: 1 @@ -6613,8 +10169,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/eb26164f-d790-4bb7-ac74-595c2cd8fb55 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0 method: GET response: proto: HTTP/2.0 @@ -6622,20 +10178,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 446 + content_length: 143 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:30:38.789226+00:00","export_uri":null,"id":"eb26164f-d790-4bb7-ac74-595c2cd8fb55","modification_date":"2025-06-10T15:33:16.831712+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","type":"not_found"}' headers: Content-Length: - - "446" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:17 GMT + - Wed, 08 Oct 2025 22:13:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6643,11 +10199,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5467f70d-9d35-4799-b537-d63635e677d7 - status: 200 OK - code: 200 - duration: 255.305098ms - - id: 134 + - b770925d-eab4-4bb0-a074-780d10399e7d + status: 404 Not Found + code: 404 + duration: 47.643771ms + - id: 206 request: proto: HTTP/1.1 proto_major: 1 @@ -6662,27 +10218,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/eb26164f-d790-4bb7-ac74-595c2cd8fb55 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 143 uncompressed: false - body: "" + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","type":"not_found"}' headers: + Content-Length: + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:17 GMT + - Wed, 08 Oct 2025 22:13:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6690,11 +10248,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b7c449f3-d119-435e-9e67-301002942515 - status: 204 No Content - code: 204 - duration: 186.876741ms - - id: 135 + - 9af700b3-648b-40c1-addb-c43b7555d53f + status: 404 Not Found + code: 404 + duration: 54.472069ms + - id: 207 request: proto: HTTP/1.1 proto_major: 1 @@ -6709,8 +10267,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cc54061a-2913-4126-8b9a-f8b5d174c4e4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/765d8905-fd5d-4f27-812a-083baa39625e method: GET response: proto: HTTP/2.0 @@ -6718,20 +10276,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2165 + content_length: 446 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:37.748184+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-determined-gates","id":"cc54061a-2913-4126-8b9a-f8b5d174c4e4","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:83","maintenances":[],"modification_date":"2025-06-10T15:33:16.411200+00:00","name":"tf-srv-determined-gates","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,"creation_date":"2025-06-10T15:31:37.748184+00:00","export_uri":null,"id":"02ea2d7b-2eec-4b5f-bf8e-9c604b1d8560","modification_date":"2025-06-10T15:32:39.935207+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"cc54061a-2913-4126-8b9a-f8b5d174c4e4","name":"tf-srv-determined-gates"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T22:11:12.039313+00:00","export_uri":null,"id":"765d8905-fd5d-4f27-812a-083baa39625e","modification_date":"2025-10-08T22:13:51.038729+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":null,"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2165" + - "446" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:21 GMT + - Wed, 08 Oct 2025 22:13:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6739,11 +10297,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4412f3b2-5673-4b54-9e49-c89262a18d33 + - 7e807f8f-8ac8-4c00-b5cc-4ad1c8b8f962 status: 200 OK code: 200 - duration: 238.4504ms - - id: 136 + duration: 52.135852ms + - id: 208 request: proto: HTTP/1.1 proto_major: 1 @@ -6758,8 +10316,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cc54061a-2913-4126-8b9a-f8b5d174c4e4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/19a8fdf6-142b-4c76-bdfb-5b7a024411b5 method: GET response: proto: HTTP/2.0 @@ -6767,20 +10325,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2165 + content_length: 446 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:37.748184+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-determined-gates","id":"cc54061a-2913-4126-8b9a-f8b5d174c4e4","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:83","maintenances":[],"modification_date":"2025-06-10T15:33:16.411200+00:00","name":"tf-srv-determined-gates","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,"creation_date":"2025-06-10T15:31:37.748184+00:00","export_uri":null,"id":"02ea2d7b-2eec-4b5f-bf8e-9c604b1d8560","modification_date":"2025-06-10T15:32:39.935207+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"cc54061a-2913-4126-8b9a-f8b5d174c4e4","name":"tf-srv-determined-gates"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T22:11:12.035555+00:00","export_uri":null,"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","modification_date":"2025-10-08T22:13:51.086365+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":null,"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2165" + - "446" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:21 GMT + - Wed, 08 Oct 2025 22:13:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6788,11 +10346,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b43e8e55-c33e-493b-83fe-e65db516caf4 + - 6852efba-bc0e-4db4-85ba-b60e9f291131 status: 200 OK code: 200 - duration: 272.408263ms - - id: 137 + duration: 50.329524ms + - id: 209 request: proto: HTTP/1.1 proto_major: 1 @@ -6807,8 +10365,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cc54061a-2913-4126-8b9a-f8b5d174c4e4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/765d8905-fd5d-4f27-812a-083baa39625e method: DELETE response: proto: HTTP/2.0 @@ -6825,9 +10383,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:22 GMT + - Wed, 08 Oct 2025 22:13:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6835,11 +10393,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cb8cd466-f093-4a73-9579-5858eef807cc + - bc012212-0b08-4f26-ae4a-31079468b79a status: 204 No Content code: 204 - duration: 361.823749ms - - id: 138 + duration: 132.064873ms + - id: 210 request: proto: HTTP/1.1 proto_major: 1 @@ -6854,29 +10412,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cc54061a-2913-4126-8b9a-f8b5d174c4e4 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/19a8fdf6-142b-4c76-bdfb-5b7a024411b5 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 0 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"cc54061a-2913-4126-8b9a-f8b5d174c4e4","type":"not_found"}' + body: "" headers: - Content-Length: - - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:22 GMT + - Wed, 08 Oct 2025 22:13:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6884,11 +10440,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1fe8506e-7706-4026-92ec-b618ee24f6b7 - status: 404 Not Found - code: 404 - duration: 178.924928ms - - id: 139 + - 07af587b-27d9-45b0-bcd3-5a2e767edcf2 + status: 204 No Content + code: 204 + duration: 93.717561ms + - id: 211 request: proto: HTTP/1.1 proto_major: 1 @@ -6903,8 +10459,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/02ea2d7b-2eec-4b5f-bf8e-9c604b1d8560 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/d87413e6-145a-4d82-85e0-a447c9faf206 method: GET response: proto: HTTP/2.0 @@ -6912,20 +10468,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 446 + content_length: 142 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:31:37.748184+00:00","export_uri":null,"id":"02ea2d7b-2eec-4b5f-bf8e-9c604b1d8560","modification_date":"2025-06-10T15:33:21.844284+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_image","resource_id":"d87413e6-145a-4d82-85e0-a447c9faf206","type":"not_found"}' headers: Content-Length: - - "446" + - "142" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:22 GMT + - Wed, 08 Oct 2025 22:13:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6933,11 +10489,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4a344100-beae-4cfd-a27d-e1909c824153 - status: 200 OK - code: 200 - duration: 93.75794ms - - id: 140 + - 549c5d45-b796-47fc-bd5f-06778ac13ff9 + status: 404 Not Found + code: 404 + duration: 32.768212ms + - id: 212 request: proto: HTTP/1.1 proto_major: 1 @@ -6952,27 +10508,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/02ea2d7b-2eec-4b5f-bf8e-9c604b1d8560 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/df86c0e2-a0be-46c5-9ed1-26969edc7c00 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 145 uncompressed: false - body: "" + body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","type":"not_found"}' headers: + Content-Length: + - "145" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:22 GMT + - Wed, 08 Oct 2025 22:13:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6980,11 +10538,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7d6874bb-855b-4244-a27a-a351af30956f - status: 204 No Content - code: 204 - duration: 224.444714ms - - id: 141 + - 8c883831-7531-43df-b5e6-ea0a6c21e3f3 + status: 404 Not Found + code: 404 + duration: 30.606839ms + - id: 213 request: proto: HTTP/1.1 proto_major: 1 @@ -6999,8 +10557,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/87e6bf7f-e6e1-4ece-9618-aef2854658e6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc method: GET response: proto: HTTP/2.0 @@ -7008,20 +10566,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 142 + content_length: 145 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_image","resource_id":"87e6bf7f-e6e1-4ece-9618-aef2854658e6","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"a17c678d-35df-4e96-aad0-a1182565a2cc","type":"not_found"}' headers: Content-Length: - - "142" + - "145" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:22 GMT + - Wed, 08 Oct 2025 22:13:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7029,11 +10587,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4e8f145c-d78d-43c1-b8a6-61c5cecda0df + - ac197c7d-163c-48d5-abb2-b8aaa3ea0172 status: 404 Not Found code: 404 - duration: 216.311132ms - - id: 142 + duration: 35.448425ms + - id: 214 request: proto: HTTP/1.1 proto_major: 1 @@ -7048,8 +10606,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/b1d96ef8-34c7-4ee6-afbf-65c818fdefee + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fff175c8-97ff-4e7b-bfba-7feb57efc6ed method: GET response: proto: HTTP/2.0 @@ -7059,7 +10617,7 @@ interactions: trailer: {} content_length: 145 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"b1d96ef8-34c7-4ee6-afbf-65c818fdefee","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"fff175c8-97ff-4e7b-bfba-7feb57efc6ed","type":"not_found"}' headers: Content-Length: - "145" @@ -7068,9 +10626,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:22 GMT + - Wed, 08 Oct 2025 22:13:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7078,11 +10636,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7b399426-002a-474a-ad15-538fe4d8b560 + - c02e61f7-17fa-43a0-8029-ed892a2f6a37 status: 404 Not Found code: 404 - duration: 68.580543ms - - id: 143 + duration: 27.941503ms + - id: 215 request: proto: HTTP/1.1 proto_major: 1 @@ -7097,8 +10655,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6ef269d0-861b-4f78-bdb9-4d1a66379566 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305 method: GET response: proto: HTTP/2.0 @@ -7106,20 +10664,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 145 + content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"6ef269d0-861b-4f78-bdb9-4d1a66379566","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","type":"not_found"}' headers: Content-Length: - - "145" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:22 GMT + - Wed, 08 Oct 2025 22:13:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7127,11 +10685,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 85fb1789-f942-4667-b2ba-a93fce04872f + - ecf7ddf5-437a-4cc7-b4b1-07bb58cf8cab status: 404 Not Found code: 404 - duration: 33.885989ms - - id: 144 + duration: 57.019657ms + - id: 216 request: proto: HTTP/1.1 proto_major: 1 @@ -7146,8 +10704,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d1bb834f-67f4-4c47-95ae-dad144790b20 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0 method: GET response: proto: HTTP/2.0 @@ -7157,7 +10715,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"d1bb834f-67f4-4c47-95ae-dad144790b20","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","type":"not_found"}' headers: Content-Length: - "143" @@ -7166,9 +10724,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:23 GMT + - Wed, 08 Oct 2025 22:13:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7176,11 +10734,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 98c17c22-e539-435c-b096-49269028cc04 + - b17d74c4-552b-4430-b37d-9533c675cd7b status: 404 Not Found code: 404 - duration: 102.953835ms - - id: 145 + duration: 74.301943ms + - id: 217 request: proto: HTTP/1.1 proto_major: 1 @@ -7195,8 +10753,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cc54061a-2913-4126-8b9a-f8b5d174c4e4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413 method: GET response: proto: HTTP/2.0 @@ -7206,7 +10764,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"cc54061a-2913-4126-8b9a-f8b5d174c4e4","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","type":"not_found"}' headers: Content-Length: - "143" @@ -7215,9 +10773,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:23 GMT + - Wed, 08 Oct 2025 22:13:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7225,7 +10783,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 35ceda56-7aaa-4de7-9346-6b9d6d3b8f91 + - e9fa157d-603e-42df-9a29-04efd0bac592 status: 404 Not Found code: 404 - duration: 197.109271ms + duration: 48.498491ms diff --git a/internal/services/instance/types.go b/internal/services/instance/types.go index 43b4101d9..4e86efb61 100644 --- a/internal/services/instance/types.go +++ b/internal/services/instance/types.go @@ -57,31 +57,37 @@ func expandImageExtraVolumesUpdateTemplates(snapshotIDs []string) map[string]*in return volTemplates } +func flattenImageRootVolume(volume *instance.VolumeSummary, zone scw.Zone) any { + volumeFlat := map[string]any{ + "id": zonal.NewIDString(zone, volume.ID), + "name": volume.Name, + "size": volume.Size, + "volume_type": volume.VolumeType, + } + + return []map[string]any{volumeFlat} +} + func flattenImageExtraVolumes(volumes map[string]*instance.Volume, zone scw.Zone) any { volumesFlat := []map[string]any(nil) - for _, volume := range volumes { - server := map[string]any{} + for index := 1; index < len(volumes)+1; index++ { + volume := volumes[strconv.Itoa(index)] + + volumeFlat := map[string]any{ + "id": zonal.NewIDString(zone, volume.ID), + "name": volume.Name, + "size": volume.Size, + "volume_type": volume.VolumeType, + "tags": volume.Tags, + } if volume.Server != nil { + server := map[string]any{} server["id"] = volume.Server.ID server["name"] = volume.Server.Name + volumeFlat["server"] = server } - volumeFlat := map[string]any{ - "id": zonal.NewIDString(zone, volume.ID), - "name": volume.Name, - "export_uri": volume.ExportURI, //nolint:staticcheck - "size": volume.Size, - "volume_type": volume.VolumeType, - "creation_date": volume.CreationDate, - "modification_date": volume.ModificationDate, - "organization": volume.Organization, - "project": volume.Project, - "tags": volume.Tags, - "state": volume.State, - "zone": volume.Zone, - "server": server, - } volumesFlat = append(volumesFlat, volumeFlat) } diff --git a/templates/resources/instance_image.md.tmpl b/templates/resources/instance_image.md.tmpl index 91009a4e3..f182e78dd 100644 --- a/templates/resources/instance_image.md.tmpl +++ b/templates/resources/instance_image.md.tmpl @@ -69,7 +69,7 @@ resource "scaleway_instance_snapshot" "server_snapshot" { resource "scaleway_instance_image" "image" { name = "image_with_extra_volumes" root_volume_id = scaleway_instance_snapshot.server_snapshot.id - additional_volumes = [ + additional_volume_ids = [ scaleway_instance_snapshot.volume_snapshot.id ] } @@ -83,9 +83,6 @@ The following arguments are supported: - `name` - (Optional) The name of the image. If not provided it will be randomly generated. - `architecture` - (Optional, default `x86_64`) The architecture the image is compatible with. Possible values are: `x86_64` or `arm`. - `additional_volume_ids` - (Optional) List of IDs of the snapshots of the additional volumes to be attached to the image. - --> **Important:** For now it is only possible to have 1 additional_volume. - - `tags` - (Optional) A list of tags to apply to the image. - `public` - (Optional) Set to `true` if the image is public. - `zone` - (Defaults to provider `zone`) The [zone](../guides/regions_and_zones.md#zones) in which the image should be created. @@ -104,26 +101,27 @@ In addition to all arguments above, the following attributes are exported: - `from_server_id` - ID of the server the image is based on (in case it is a backup). - `state` - State of the image. Possible values are: `available`, `creating` or `error`. - `organization_id` - The organization ID the image is associated with. +- `root_volume` - The description of the root volume attached to the image. + + -> The `root_volume` block contains : + - `id` - The ID of the volume. + - `name` - The name of the volume. + - `size` - The size of the volume. + - `volume_type` - The type of volume, possible values are `l_ssd` and `sbs_snapshot`. + - `additional_volumes` - The description of the extra volumes attached to the image. -> The `additional_volumes` block contains : - `id` - The ID of the volume. - `name` - The name of the volume. - - `export_uri` - The export URI of the volume. - `size` - The size of the volume. - - `volume_type` - The type of volume, possible values are `l_ssd` and `b_ssd`. - - `creation_date` - Date of the volume creation. - - `modification_date` - Date of volume latest update. - - `organization` - The organization ID the volume is associated with. - - `project` - ID of the project the volume is associated with + - `volume_type` - The type of volume, possible values are `l_ssd` and `sbs_snapshot`. - `tags` - List of tags associated with the volume. - - `state` - State of the volume. - - `zone` - The [zone](../guides/regions_and_zones.md#zones) in which the volume is. - `server` - Description of the server containing the volume (in case the image is a backup from a server). - -> The `server` block contains : - - `id` - ID of the server containing the volume. - - `name` - Name of the server containing the volume. + -> The `server` block contains : + - `id` - ID of the server containing the volume. + - `name` - Name of the server containing the volume. ## Import