diff --git a/internal/services/block/snapshot_test.go b/internal/services/block/snapshot_test.go
index 04a60c60ac..ac654fc9b8 100644
--- a/internal/services/block/snapshot_test.go
+++ b/internal/services/block/snapshot_test.go
@@ -65,7 +65,7 @@ func TestAccSnapshot_FromS3(t *testing.T) {
resource "scaleway_object" "qcow-object" {
bucket = scaleway_object_bucket.snapshot-bucket.name
key = "test-acc-block-snapshot.qcow2"
- file = "testfixtures/small_image.qcow2"
+ file = "testfixture/small_image.qcow2"
}
resource "scaleway_block_snapshot" "qcow-block-snapshot" {
diff --git a/internal/services/block/testfixtures/small_image.qcow2 b/internal/services/block/testfixture/small_image.qcow2
similarity index 100%
rename from internal/services/block/testfixtures/small_image.qcow2
rename to internal/services/block/testfixture/small_image.qcow2
diff --git a/internal/services/instance/image_test.go b/internal/services/instance/image_test.go
index 582262dc48..e290926ab4 100644
--- a/internal/services/instance/image_test.go
+++ b/internal/services/instance/image_test.go
@@ -15,6 +15,9 @@ import (
)
func TestAccImage_BlockVolume(t *testing.T) {
+ t.Skip("Resources \"scaleway_instance_volume\" and \"scaleway_instance_snapshot\" are depracated")
+ // TestAccImage_ExternalBlockVolume should suffice to test the same logic with scaleway_block_volumes
+
tt := acctest.NewTestTools(t)
defer tt.Cleanup()
resource.ParallelTest(t, resource.TestCase{
@@ -213,7 +216,7 @@ func TestAccImage_Server(t *testing.T) {
ProviderFactories: tt.ProviderFactories,
CheckDestroy: resource.ComposeTestCheckFunc(
isImageDestroyed(tt),
- isSnapshotDestroyed(tt),
+ blocktestfuncs.IsSnapshotDestroyed(tt),
instancechecks.IsServerDestroyed(tt),
),
Steps: []resource.TestStep{
@@ -278,6 +281,9 @@ func TestAccImage_Server(t *testing.T) {
}
func TestAccImage_ServerWithBlockVolume(t *testing.T) {
+ t.Skip("Resources \"scaleway_instance_volume\" and \"scaleway_instance_snapshot\" are depracated")
+ // TestAccImage_ServerWithSBSVolume should suffice to test the same logic with block volumes
+
tt := acctest.NewTestTools(t)
defer tt.Cleanup()
resource.ParallelTest(t, resource.TestCase{
diff --git a/internal/services/instance/server_test.go b/internal/services/instance/server_test.go
index c6893ba39c..7eb2df1cc1 100644
--- a/internal/services/instance/server_test.go
+++ b/internal/services/instance/server_test.go
@@ -245,6 +245,8 @@ func TestAccServer_RootVolume_Boot(t *testing.T) {
}
func TestAccServer_RootVolume_ID(t *testing.T) {
+ t.Skip("Resource \"scaleway_instance_volume\" is deprecated")
+
tt := acctest.NewTestTools(t)
defer tt.Cleanup()
resource.ParallelTest(t, resource.TestCase{
@@ -545,6 +547,8 @@ EOF
}
func TestAccServer_AdditionalVolumes(t *testing.T) {
+ t.Skip("Resource \"scaleway_instance_volume\" is deprecated")
+
tt := acctest.NewTestTools(t)
defer tt.Cleanup()
resource.ParallelTest(t, resource.TestCase{
@@ -621,6 +625,8 @@ func TestAccServer_AdditionalVolumes(t *testing.T) {
}
func TestAccServer_AdditionalVolumesDetach(t *testing.T) {
+ t.Skip("Resource \"scaleway_instance_volume\" is deprecated")
+
tt := acctest.NewTestTools(t)
defer tt.Cleanup()
resource.ParallelTest(t, resource.TestCase{
@@ -1009,6 +1015,8 @@ func TestAccServer_AlterTags(t *testing.T) {
}
func TestAccServer_WithDefaultRootVolumeAndAdditionalVolume(t *testing.T) {
+ t.Skip("Resource \"scaleway_instance_volume\" is deprecated")
+
tt := acctest.NewTestTools(t)
defer tt.Cleanup()
resource.ParallelTest(t, resource.TestCase{
@@ -1041,6 +1049,8 @@ func TestAccServer_WithDefaultRootVolumeAndAdditionalVolume(t *testing.T) {
}
func TestAccServer_ServerWithBlockNonDefaultZone(t *testing.T) {
+ t.Skip("Resource \"scaleway_instance_volume\" is deprecated")
+
tt := acctest.NewTestTools(t)
defer tt.Cleanup()
resource.ParallelTest(t, resource.TestCase{
@@ -1714,21 +1724,21 @@ func TestAccServer_BlockExternal(t *testing.T) {
size_in_gb = 10
}
- resource "scaleway_instance_volume" "volume" {
- type = "b_ssd"
- size_in_gb = 10
+ resource "scaleway_block_volume" "bigger-volume" {
+ iops = 15000
+ size_in_gb = 15
}
resource "scaleway_instance_server" "main" {
image = "ubuntu_jammy"
type = "PLAY2-PICO"
- additional_volume_ids = [scaleway_block_volume.volume.id, scaleway_instance_volume.volume.id]
+ additional_volume_ids = [scaleway_block_volume.volume.id, scaleway_block_volume.bigger-volume.id]
}`,
Check: resource.ComposeTestCheckFunc(
resource.TestCheckResourceAttr("scaleway_instance_server.main", "type", "PLAY2-PICO"),
resource.TestCheckResourceAttr("scaleway_instance_server.main", "additional_volume_ids.#", "2"),
resource.TestCheckResourceAttrPair("scaleway_instance_server.main", "additional_volume_ids.0", "scaleway_block_volume.volume", "id"),
- resource.TestCheckResourceAttrPair("scaleway_instance_server.main", "additional_volume_ids.1", "scaleway_instance_volume.volume", "id"),
+ resource.TestCheckResourceAttrPair("scaleway_instance_server.main", "additional_volume_ids.1", "scaleway_block_volume.bigger-volume", "id"),
),
},
},
diff --git a/internal/services/instance/snapshot_data_source_test.go b/internal/services/instance/snapshot_data_source_test.go
index d80a40d90a..29db7c0e32 100644
--- a/internal/services/instance/snapshot_data_source_test.go
+++ b/internal/services/instance/snapshot_data_source_test.go
@@ -10,6 +10,8 @@ import (
)
func TestAccDataSourceSnapshot_Basic(t *testing.T) {
+ t.Skip("Resources \"scaleway_instance_volume\" and \"scaleway_instance_snapshot\" are depracated")
+
tt := acctest.NewTestTools(t)
defer tt.Cleanup()
diff --git a/internal/services/instance/snapshot_test.go b/internal/services/instance/snapshot_test.go
index b34272770e..b6f7bb8cc5 100644
--- a/internal/services/instance/snapshot_test.go
+++ b/internal/services/instance/snapshot_test.go
@@ -14,6 +14,8 @@ import (
)
func TestAccSnapshot_BlockVolume(t *testing.T) {
+ t.Skip("Resource \"scaleway_instance_snapshot\" is depracated for block volumes")
+
tt := acctest.NewTestTools(t)
defer tt.Cleanup()
resource.ParallelTest(t, resource.TestCase{
@@ -111,6 +113,8 @@ func TestAccSnapshot_Server(t *testing.T) {
}
func TestAccSnapshot_ServerWithBlockVolume(t *testing.T) {
+ t.Skip("Resource \"scaleway_instance_snapshot\" is depracated for block volumes")
+
tt := acctest.NewTestTools(t)
defer tt.Cleanup()
resource.ParallelTest(t, resource.TestCase{
@@ -153,6 +157,8 @@ func TestAccSnapshot_ServerWithBlockVolume(t *testing.T) {
}
func TestAccSnapshot_RenameSnapshot(t *testing.T) {
+ t.Skip("Resource \"scaleway_instance_snapshot\" is depracated for block volumes")
+
tt := acctest.NewTestTools(t)
defer tt.Cleanup()
resource.ParallelTest(t, resource.TestCase{
@@ -198,6 +204,9 @@ func TestAccSnapshot_RenameSnapshot(t *testing.T) {
}
func TestAccSnapshot_FromObject(t *testing.T) {
+ t.Skip("Resource \"scaleway_instance_snapshot\" is depracated")
+ // TestAccSnapshot_FromS3 tests the same logic on the scaleway_block_snapshot resource
+
tt := acctest.NewTestTools(t)
defer tt.Cleanup()
resource.ParallelTest(t, resource.TestCase{
@@ -217,7 +226,7 @@ func TestAccSnapshot_FromObject(t *testing.T) {
file = "testfixture/empty.qcow2"
}
- resource "scaleway_instance_snapshot" "snapshot" {
+ resource "scaleway_block_snapshot" "snapshot" {
name = "test-instance-snapshot-import-from-object"
type = "b_ssd"
import {
diff --git a/internal/services/instance/testdata/data-source-snapshot-basic.cassette.yaml b/internal/services/instance/testdata/data-source-snapshot-basic.cassette.yaml
deleted file mode 100644
index 1bb0faa0d0..0000000000
--- a/internal/services/instance/testdata/data-source-snapshot-basic.cassette.yaml
+++ /dev/null
@@ -1,1936 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 123
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"name":"tf-vol-elastic-thompson","project":"105bdce1-64c0-48ab-899d-868455867ecf","volume_type":"b_ssd","size":2000000000}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 444
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:48:42.299945+00:00","export_uri":null,"id":"2a478f78-5e6d-4385-abaf-3f24740c7a7a","modification_date":"2025-01-27T13:48:42.299945+00:00","name":"tf-vol-elastic-thompson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":2000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "444"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48:41 GMT
- Location:
- - https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2a478f78-5e6d-4385-abaf-3f24740c7a7a
- 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:
- - edba33eb-7c3c-486c-9f2d-657cb2f50e2b
- status: 201 Created
- code: 201
- duration: 185.910917ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2a478f78-5e6d-4385-abaf-3f24740c7a7a
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 444
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:48:42.299945+00:00","export_uri":null,"id":"2a478f78-5e6d-4385-abaf-3f24740c7a7a","modification_date":"2025-01-27T13:48:42.299945+00:00","name":"tf-vol-elastic-thompson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":2000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "444"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48:42 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:
- - 065b0824-8b4d-426b-ad57-d2f034574076
- status: 200 OK
- code: 200
- duration: 68.9605ms
- - id: 2
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2a478f78-5e6d-4385-abaf-3f24740c7a7a
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 444
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:48:42.299945+00:00","export_uri":null,"id":"2a478f78-5e6d-4385-abaf-3f24740c7a7a","modification_date":"2025-01-27T13:48:42.299945+00:00","name":"tf-vol-elastic-thompson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":2000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "444"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48:42 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:
- - 0564c81f-e6a3-4213-98e7-e62bc73eecd4
- status: 200 OK
- code: 200
- duration: 85.238375ms
- - id: 3
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 131
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"name":"tf-snapshot-ds-basic","volume_id":"2a478f78-5e6d-4385-abaf-3f24740c7a7a","project":"105bdce1-64c0-48ab-899d-868455867ecf"}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) 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: 842
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"2a478f78-5e6d-4385-abaf-3f24740c7a7a","name":"tf-vol-elastic-thompson"},"creation_date":"2025-01-27T13:48:42.652734+00:00","error_details":null,"id":"7fd238d6-a920-4725-8954-b4068051fdc4","modification_date":"2025-01-27T13:48:42.652734+00:00","name":"tf-snapshot-ds-basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":2000000000,"state":"snapshotting","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"},"task":{"description":"volume_snapshot","href_from":"/snapshots","href_result":"snapshots/7fd238d6-a920-4725-8954-b4068051fdc4","id":"1cf7f937-adf4-4863-948b-e50b68de6fc9","progress":0,"started_at":"2025-01-27T13:48:42.832797+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "842"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48:42 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:
- - 0c06655c-68b6-4351-b2a0-f14c386bc447
- status: 201 Created
- code: 201
- duration: 449.860833ms
- - id: 4
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/7fd238d6-a920-4725-8954-b4068051fdc4
- 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":"2a478f78-5e6d-4385-abaf-3f24740c7a7a","name":"tf-vol-elastic-thompson"},"creation_date":"2025-01-27T13:48:42.652734+00:00","error_details":null,"id":"7fd238d6-a920-4725-8954-b4068051fdc4","modification_date":"2025-01-27T13:48:42.652734+00:00","name":"tf-snapshot-ds-basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":2000000000,"state":"snapshotting","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "531"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48:42 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:
- - 2fbfdaa5-8902-4bc5-bbf6-7f699ed0649d
- status: 200 OK
- code: 200
- duration: 88.915333ms
- - id: 5
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/7fd238d6-a920-4725-8954-b4068051fdc4
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 528
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"2a478f78-5e6d-4385-abaf-3f24740c7a7a","name":"tf-vol-elastic-thompson"},"creation_date":"2025-01-27T13:48:42.652734+00:00","error_details":null,"id":"7fd238d6-a920-4725-8954-b4068051fdc4","modification_date":"2025-01-27T13:48:45.053160+00:00","name":"tf-snapshot-ds-basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":2000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "528"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48:48 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:
- - 34795ece-ecf2-494f-87f9-e918481fcbe4
- status: 200 OK
- code: 200
- duration: 85.367542ms
- - id: 6
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/7fd238d6-a920-4725-8954-b4068051fdc4
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 528
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"2a478f78-5e6d-4385-abaf-3f24740c7a7a","name":"tf-vol-elastic-thompson"},"creation_date":"2025-01-27T13:48:42.652734+00:00","error_details":null,"id":"7fd238d6-a920-4725-8954-b4068051fdc4","modification_date":"2025-01-27T13:48:45.053160+00:00","name":"tf-snapshot-ds-basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":2000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "528"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48:47 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:
- - d9afefd7-5415-45ce-8296-c46b5bd95ed9
- status: 200 OK
- code: 200
- duration: 116.090917ms
- - id: 7
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2a478f78-5e6d-4385-abaf-3f24740c7a7a
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 444
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:48:42.299945+00:00","export_uri":null,"id":"2a478f78-5e6d-4385-abaf-3f24740c7a7a","modification_date":"2025-01-27T13:48:45.053160+00:00","name":"tf-vol-elastic-thompson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":2000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "444"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48:48 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:
- - a32d49c9-903d-4743-aee2-3ecfbb3216f8
- status: 200 OK
- code: 200
- duration: 80.495083ms
- - id: 8
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/7fd238d6-a920-4725-8954-b4068051fdc4
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 528
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"2a478f78-5e6d-4385-abaf-3f24740c7a7a","name":"tf-vol-elastic-thompson"},"creation_date":"2025-01-27T13:48:42.652734+00:00","error_details":null,"id":"7fd238d6-a920-4725-8954-b4068051fdc4","modification_date":"2025-01-27T13:48:45.053160+00:00","name":"tf-snapshot-ds-basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":2000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "528"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48:48 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:
- - d46b3573-2176-45e7-a273-9b6fb4cde02d
- status: 200 OK
- code: 200
- duration: 69.646291ms
- - id: 9
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2a478f78-5e6d-4385-abaf-3f24740c7a7a
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 444
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:48:42.299945+00:00","export_uri":null,"id":"2a478f78-5e6d-4385-abaf-3f24740c7a7a","modification_date":"2025-01-27T13:48:45.053160+00:00","name":"tf-vol-elastic-thompson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":2000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "444"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48:48 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:
- - 8f5e287b-370d-4b4d-9b98-fc8023550b82
- status: 200 OK
- code: 200
- duration: 82.459833ms
- - id: 10
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/7fd238d6-a920-4725-8954-b4068051fdc4
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 528
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"2a478f78-5e6d-4385-abaf-3f24740c7a7a","name":"tf-vol-elastic-thompson"},"creation_date":"2025-01-27T13:48:42.652734+00:00","error_details":null,"id":"7fd238d6-a920-4725-8954-b4068051fdc4","modification_date":"2025-01-27T13:48:45.053160+00:00","name":"tf-snapshot-ds-basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":2000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "528"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48:48 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:
- - 45950357-2d00-46a8-8a03-4ed00f67a9dd
- status: 200 OK
- code: 200
- duration: 81.307167ms
- - id: 11
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/7fd238d6-a920-4725-8954-b4068051fdc4
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 528
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"2a478f78-5e6d-4385-abaf-3f24740c7a7a","name":"tf-vol-elastic-thompson"},"creation_date":"2025-01-27T13:48:42.652734+00:00","error_details":null,"id":"7fd238d6-a920-4725-8954-b4068051fdc4","modification_date":"2025-01-27T13:48:45.053160+00:00","name":"tf-snapshot-ds-basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":2000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "528"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48:48 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:
- - 18a57d44-d190-48f6-9c60-86d09bbe02f2
- status: 200 OK
- code: 200
- duration: 84.933667ms
- - id: 12
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots?name=tf-snapshot-ds-basic
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 531
- uncompressed: false
- body: '{"snapshots":[{"base_volume":{"id":"2a478f78-5e6d-4385-abaf-3f24740c7a7a","name":"tf-vol-elastic-thompson"},"creation_date":"2025-01-27T13:48:42.652734+00:00","error_details":null,"id":"7fd238d6-a920-4725-8954-b4068051fdc4","modification_date":"2025-01-27T13:48:45.053160+00:00","name":"tf-snapshot-ds-basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":2000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}]}'
- headers:
- Content-Length:
- - "531"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48:48 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:
- - 57fef6f7-65b1-48b1-a162-25e2a2f4f143
- X-Total-Count:
- - "1"
- status: 200 OK
- code: 200
- duration: 217.986667ms
- - id: 13
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/7fd238d6-a920-4725-8954-b4068051fdc4
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 528
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"2a478f78-5e6d-4385-abaf-3f24740c7a7a","name":"tf-vol-elastic-thompson"},"creation_date":"2025-01-27T13:48:42.652734+00:00","error_details":null,"id":"7fd238d6-a920-4725-8954-b4068051fdc4","modification_date":"2025-01-27T13:48:45.053160+00:00","name":"tf-snapshot-ds-basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":2000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "528"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48:48 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:
- - 1e16848d-45e1-4817-bae6-5d9b53b84b2d
- status: 200 OK
- code: 200
- duration: 88.471208ms
- - id: 14
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/7fd238d6-a920-4725-8954-b4068051fdc4
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 528
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"2a478f78-5e6d-4385-abaf-3f24740c7a7a","name":"tf-vol-elastic-thompson"},"creation_date":"2025-01-27T13:48:42.652734+00:00","error_details":null,"id":"7fd238d6-a920-4725-8954-b4068051fdc4","modification_date":"2025-01-27T13:48:45.053160+00:00","name":"tf-snapshot-ds-basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":2000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "528"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48: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:
- - 5b4d894b-4f03-4593-8379-3887159d7cf0
- status: 200 OK
- code: 200
- duration: 86.019709ms
- - id: 15
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots?name=tf-snapshot-ds-basic
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 531
- uncompressed: false
- body: '{"snapshots":[{"base_volume":{"id":"2a478f78-5e6d-4385-abaf-3f24740c7a7a","name":"tf-vol-elastic-thompson"},"creation_date":"2025-01-27T13:48:42.652734+00:00","error_details":null,"id":"7fd238d6-a920-4725-8954-b4068051fdc4","modification_date":"2025-01-27T13:48:45.053160+00:00","name":"tf-snapshot-ds-basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":2000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}]}'
- headers:
- Content-Length:
- - "531"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48:49 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:
- - 0e1df135-08c8-4a2d-9c7f-4c55598647a8
- X-Total-Count:
- - "1"
- status: 200 OK
- code: 200
- duration: 199.814792ms
- - id: 16
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/7fd238d6-a920-4725-8954-b4068051fdc4
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 528
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"2a478f78-5e6d-4385-abaf-3f24740c7a7a","name":"tf-vol-elastic-thompson"},"creation_date":"2025-01-27T13:48:42.652734+00:00","error_details":null,"id":"7fd238d6-a920-4725-8954-b4068051fdc4","modification_date":"2025-01-27T13:48:45.053160+00:00","name":"tf-snapshot-ds-basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":2000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "528"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48: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:
- - a79e1668-9c3e-49a1-9dfb-cb063598672f
- status: 200 OK
- code: 200
- duration: 96.85825ms
- - id: 17
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/7fd238d6-a920-4725-8954-b4068051fdc4
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 528
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"2a478f78-5e6d-4385-abaf-3f24740c7a7a","name":"tf-vol-elastic-thompson"},"creation_date":"2025-01-27T13:48:42.652734+00:00","error_details":null,"id":"7fd238d6-a920-4725-8954-b4068051fdc4","modification_date":"2025-01-27T13:48:45.053160+00:00","name":"tf-snapshot-ds-basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":2000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "528"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48: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:
- - 3ca52b68-67b5-4597-8d20-cbabe6f5839c
- status: 200 OK
- code: 200
- duration: 92.887083ms
- - id: 18
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/7fd238d6-a920-4725-8954-b4068051fdc4
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 528
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"2a478f78-5e6d-4385-abaf-3f24740c7a7a","name":"tf-vol-elastic-thompson"},"creation_date":"2025-01-27T13:48:42.652734+00:00","error_details":null,"id":"7fd238d6-a920-4725-8954-b4068051fdc4","modification_date":"2025-01-27T13:48:45.053160+00:00","name":"tf-snapshot-ds-basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":2000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "528"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48: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:
- - 644f2b32-83c2-4ab0-9c31-89981923b290
- status: 200 OK
- code: 200
- duration: 100.802208ms
- - id: 19
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/7fd238d6-a920-4725-8954-b4068051fdc4
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 528
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"2a478f78-5e6d-4385-abaf-3f24740c7a7a","name":"tf-vol-elastic-thompson"},"creation_date":"2025-01-27T13:48:42.652734+00:00","error_details":null,"id":"7fd238d6-a920-4725-8954-b4068051fdc4","modification_date":"2025-01-27T13:48:45.053160+00:00","name":"tf-snapshot-ds-basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":2000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "528"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48: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:
- - 48d8c609-c7d3-4ea0-be72-0d0538ac6532
- status: 200 OK
- code: 200
- duration: 137.034ms
- - id: 20
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots?name=tf-snapshot-ds-basic
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 531
- uncompressed: false
- body: '{"snapshots":[{"base_volume":{"id":"2a478f78-5e6d-4385-abaf-3f24740c7a7a","name":"tf-vol-elastic-thompson"},"creation_date":"2025-01-27T13:48:42.652734+00:00","error_details":null,"id":"7fd238d6-a920-4725-8954-b4068051fdc4","modification_date":"2025-01-27T13:48:45.053160+00:00","name":"tf-snapshot-ds-basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":2000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}]}'
- headers:
- Content-Length:
- - "531"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48:49 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:
- - 27ab4fe6-2ba7-4eef-b8f3-fb6759d9cb67
- X-Total-Count:
- - "1"
- status: 200 OK
- code: 200
- duration: 240.919334ms
- - id: 21
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/7fd238d6-a920-4725-8954-b4068051fdc4
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 528
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"2a478f78-5e6d-4385-abaf-3f24740c7a7a","name":"tf-vol-elastic-thompson"},"creation_date":"2025-01-27T13:48:42.652734+00:00","error_details":null,"id":"7fd238d6-a920-4725-8954-b4068051fdc4","modification_date":"2025-01-27T13:48:45.053160+00:00","name":"tf-snapshot-ds-basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":2000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "528"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48: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:
- - c6efe39e-f083-47f2-85a3-067d5ae1766e
- status: 200 OK
- code: 200
- duration: 74.2205ms
- - id: 22
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2a478f78-5e6d-4385-abaf-3f24740c7a7a
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 444
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:48:42.299945+00:00","export_uri":null,"id":"2a478f78-5e6d-4385-abaf-3f24740c7a7a","modification_date":"2025-01-27T13:48:45.053160+00:00","name":"tf-vol-elastic-thompson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":2000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "444"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48: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:
- - 12de7f67-1b70-40ea-883d-66c0f278d672
- status: 200 OK
- code: 200
- duration: 81.829792ms
- - id: 23
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/7fd238d6-a920-4725-8954-b4068051fdc4
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 528
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"2a478f78-5e6d-4385-abaf-3f24740c7a7a","name":"tf-vol-elastic-thompson"},"creation_date":"2025-01-27T13:48:42.652734+00:00","error_details":null,"id":"7fd238d6-a920-4725-8954-b4068051fdc4","modification_date":"2025-01-27T13:48:45.053160+00:00","name":"tf-snapshot-ds-basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":2000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "528"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48: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:
- - 7372adce-d698-4364-9278-cd5ea41685ef
- status: 200 OK
- code: 200
- duration: 130.945958ms
- - id: 24
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/7fd238d6-a920-4725-8954-b4068051fdc4
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 528
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"2a478f78-5e6d-4385-abaf-3f24740c7a7a","name":"tf-vol-elastic-thompson"},"creation_date":"2025-01-27T13:48:42.652734+00:00","error_details":null,"id":"7fd238d6-a920-4725-8954-b4068051fdc4","modification_date":"2025-01-27T13:48:45.053160+00:00","name":"tf-snapshot-ds-basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":2000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "528"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48: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:
- - 3abc5b6a-e171-4bd6-bdc1-bbb54f84cdee
- status: 200 OK
- code: 200
- duration: 96.478542ms
- - id: 25
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots?name=tf-snapshot-ds-basic
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 531
- uncompressed: false
- body: '{"snapshots":[{"base_volume":{"id":"2a478f78-5e6d-4385-abaf-3f24740c7a7a","name":"tf-vol-elastic-thompson"},"creation_date":"2025-01-27T13:48:42.652734+00:00","error_details":null,"id":"7fd238d6-a920-4725-8954-b4068051fdc4","modification_date":"2025-01-27T13:48:45.053160+00:00","name":"tf-snapshot-ds-basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":2000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}]}'
- headers:
- Content-Length:
- - "531"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48:50 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:
- - cbb717d0-ff04-4fa4-9c09-3d3fdbab3793
- X-Total-Count:
- - "1"
- status: 200 OK
- code: 200
- duration: 236.746209ms
- - id: 26
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/7fd238d6-a920-4725-8954-b4068051fdc4
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 528
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"2a478f78-5e6d-4385-abaf-3f24740c7a7a","name":"tf-vol-elastic-thompson"},"creation_date":"2025-01-27T13:48:42.652734+00:00","error_details":null,"id":"7fd238d6-a920-4725-8954-b4068051fdc4","modification_date":"2025-01-27T13:48:45.053160+00:00","name":"tf-snapshot-ds-basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":2000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "528"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48: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:
- - d9aab0a3-249a-47e4-8a12-d4a02206f05b
- status: 200 OK
- code: 200
- duration: 79.231959ms
- - id: 27
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/7fd238d6-a920-4725-8954-b4068051fdc4
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 528
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"2a478f78-5e6d-4385-abaf-3f24740c7a7a","name":"tf-vol-elastic-thompson"},"creation_date":"2025-01-27T13:48:42.652734+00:00","error_details":null,"id":"7fd238d6-a920-4725-8954-b4068051fdc4","modification_date":"2025-01-27T13:48:45.053160+00:00","name":"tf-snapshot-ds-basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":2000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "528"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48: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:
- - 29c05535-ec24-44b1-ba31-a5795cd2b370
- status: 200 OK
- code: 200
- duration: 88.165458ms
- - id: 28
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots?name=tf-snapshot-ds-basic
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 531
- uncompressed: false
- body: '{"snapshots":[{"base_volume":{"id":"2a478f78-5e6d-4385-abaf-3f24740c7a7a","name":"tf-vol-elastic-thompson"},"creation_date":"2025-01-27T13:48:42.652734+00:00","error_details":null,"id":"7fd238d6-a920-4725-8954-b4068051fdc4","modification_date":"2025-01-27T13:48:45.053160+00:00","name":"tf-snapshot-ds-basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":2000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}]}'
- headers:
- Content-Length:
- - "531"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48:51 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:
- - 5f959beb-8777-4252-a72f-efbcde5bce52
- X-Total-Count:
- - "1"
- status: 200 OK
- code: 200
- duration: 238.530667ms
- - id: 29
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/7fd238d6-a920-4725-8954-b4068051fdc4
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 528
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"2a478f78-5e6d-4385-abaf-3f24740c7a7a","name":"tf-vol-elastic-thompson"},"creation_date":"2025-01-27T13:48:42.652734+00:00","error_details":null,"id":"7fd238d6-a920-4725-8954-b4068051fdc4","modification_date":"2025-01-27T13:48:45.053160+00:00","name":"tf-snapshot-ds-basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":2000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "528"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48:51 GMT
- Server:
- - Scaleway API Gateway (fr-par-3;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 60544809-d70f-4ede-9c98-48d9f38badbc
- status: 200 OK
- code: 200
- duration: 79.906917ms
- - id: 30
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/7fd238d6-a920-4725-8954-b4068051fdc4
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 528
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"2a478f78-5e6d-4385-abaf-3f24740c7a7a","name":"tf-vol-elastic-thompson"},"creation_date":"2025-01-27T13:48:42.652734+00:00","error_details":null,"id":"7fd238d6-a920-4725-8954-b4068051fdc4","modification_date":"2025-01-27T13:48:45.053160+00:00","name":"tf-snapshot-ds-basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":2000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "528"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48:51 GMT
- Server:
- - Scaleway API Gateway (fr-par-3;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - d7bc46e7-0bb1-47e7-96b2-b76ac46890d1
- status: 200 OK
- code: 200
- duration: 87.810291ms
- - id: 31
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/7fd238d6-a920-4725-8954-b4068051fdc4
- method: DELETE
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 0
- uncompressed: false
- body: ""
- headers:
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48:51 GMT
- Server:
- - Scaleway API Gateway (fr-par-3;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 956aa9fa-cc4d-4616-a10b-597812038ae3
- status: 204 No Content
- code: 204
- duration: 142.678166ms
- - id: 32
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/7fd238d6-a920-4725-8954-b4068051fdc4
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 145
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"7fd238d6-a920-4725-8954-b4068051fdc4","type":"not_found"}'
- headers:
- Content-Length:
- - "145"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48:51 GMT
- Server:
- - Scaleway API Gateway (fr-par-3;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - dd241e20-7077-4c0a-b486-7a3714e2eb48
- status: 404 Not Found
- code: 404
- duration: 35.618041ms
- - id: 33
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2a478f78-5e6d-4385-abaf-3f24740c7a7a
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 444
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:48:42.299945+00:00","export_uri":null,"id":"2a478f78-5e6d-4385-abaf-3f24740c7a7a","modification_date":"2025-01-27T13:48:45.053160+00:00","name":"tf-vol-elastic-thompson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":2000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "444"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48:51 GMT
- Server:
- - Scaleway API Gateway (fr-par-3;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - f042c9ba-1ba2-432d-833f-235ba8d91539
- status: 200 OK
- code: 200
- duration: 79.411958ms
- - id: 34
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2a478f78-5e6d-4385-abaf-3f24740c7a7a
- method: DELETE
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 0
- uncompressed: false
- body: ""
- headers:
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48:52 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:
- - 9f4d5807-b2cf-4574-ab81-d2fcc0a03c19
- status: 204 No Content
- code: 204
- duration: 167.86725ms
- - id: 35
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2a478f78-5e6d-4385-abaf-3f24740c7a7a
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 143
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"2a478f78-5e6d-4385-abaf-3f24740c7a7a","type":"not_found"}'
- headers:
- Content-Length:
- - "143"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48:51 GMT
- Server:
- - Scaleway API Gateway (fr-par-3;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 848d4ef5-16eb-4dd4-9b2f-f5c4125d0f09
- status: 404 Not Found
- code: 404
- duration: 35.700125ms
- - id: 36
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/7fd238d6-a920-4725-8954-b4068051fdc4
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 145
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"7fd238d6-a920-4725-8954-b4068051fdc4","type":"not_found"}'
- headers:
- Content-Length:
- - "145"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48:51 GMT
- Server:
- - Scaleway API Gateway (fr-par-3;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 8e8dc477-858c-4817-bcf1-f74a0c81b834
- status: 404 Not Found
- code: 404
- duration: 29.241083ms
- - id: 37
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/7fd238d6-a920-4725-8954-b4068051fdc4
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 145
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"7fd238d6-a920-4725-8954-b4068051fdc4","type":"not_found"}'
- headers:
- Content-Length:
- - "145"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48:52 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:
- - 37e2f959-31ca-4559-936d-76d199ac478e
- status: 404 Not Found
- code: 404
- duration: 31.980625ms
- - id: 38
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/7fd238d6-a920-4725-8954-b4068051fdc4
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 145
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"7fd238d6-a920-4725-8954-b4068051fdc4","type":"not_found"}'
- headers:
- Content-Length:
- - "145"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48:51 GMT
- Server:
- - Scaleway API Gateway (fr-par-3;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - bd76159c-35b0-45b2-adc3-2f42a7b1fa1a
- status: 404 Not Found
- code: 404
- duration: 34.662291ms
diff --git a/internal/services/instance/testdata/image-block-volume.cassette.yaml b/internal/services/instance/testdata/image-block-volume.cassette.yaml
deleted file mode 100644
index fb3a40bbb8..0000000000
--- a/internal/services/instance/testdata/image-block-volume.cassette.yaml
+++ /dev/null
@@ -1,2018 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 124
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"name":"tf-vol-exciting-babbage","project":"105bdce1-64c0-48ab-899d-868455867ecf","volume_type":"b_ssd","size":20000000000}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/volumes
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 445
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:53:54.781608+00:00","export_uri":null,"id":"caa216a4-f212-4037-8f5a-f4d0765ecb46","modification_date":"2025-01-27T13:53:54.781608+00:00","name":"tf-vol-exciting-babbage","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "445"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:53:54 GMT
- Location:
- - https://api.scaleway.com/instance/v1/zones/nl-ams-1/volumes/caa216a4-f212-4037-8f5a-f4d0765ecb46
- 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:
- - 288cb600-f621-4ee7-a401-7786cbbd2a93
- status: 201 Created
- code: 201
- duration: 239.176417ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/volumes/caa216a4-f212-4037-8f5a-f4d0765ecb46
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 445
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:53:54.781608+00:00","export_uri":null,"id":"caa216a4-f212-4037-8f5a-f4d0765ecb46","modification_date":"2025-01-27T13:53:54.781608+00:00","name":"tf-vol-exciting-babbage","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "445"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:53: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:
- - 7e845e3e-d376-40e3-924a-4b8048bb55e9
- status: 200 OK
- code: 200
- duration: 118.233792ms
- - id: 2
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/volumes/caa216a4-f212-4037-8f5a-f4d0765ecb46
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 445
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:53:54.781608+00:00","export_uri":null,"id":"caa216a4-f212-4037-8f5a-f4d0765ecb46","modification_date":"2025-01-27T13:53:54.781608+00:00","name":"tf-vol-exciting-babbage","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "445"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:53: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:
- - 433e4a80-a6b1-4d45-aaae-456dac4cf2ed
- status: 200 OK
- code: 200
- duration: 114.377125ms
- - id: 3
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 131
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"name":"tf-snap-sleepy-moser","volume_id":"caa216a4-f212-4037-8f5a-f4d0765ecb46","project":"105bdce1-64c0-48ab-899d-868455867ecf"}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/snapshots
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 843
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"caa216a4-f212-4037-8f5a-f4d0765ecb46","name":"tf-vol-exciting-babbage"},"creation_date":"2025-01-27T13:53:55.276521+00:00","error_details":null,"id":"2c8076b1-3e79-4481-9548-cc9343a60d51","modification_date":"2025-01-27T13:53:55.276521+00:00","name":"tf-snap-sleepy-moser","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"b_ssd","zone":"nl-ams-1"},"task":{"description":"volume_snapshot","href_from":"/snapshots","href_result":"snapshots/2c8076b1-3e79-4481-9548-cc9343a60d51","id":"226c72b9-508a-4610-9250-48ad29f576a2","progress":0,"started_at":"2025-01-27T13:53:55.467121+00:00","status":"pending","terminated_at":null,"zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "843"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:53: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:
- - d9c6b41f-cf51-4707-9d09-dd5caea441c9
- status: 201 Created
- code: 201
- duration: 532.131708ms
- - id: 4
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/snapshots/2c8076b1-3e79-4481-9548-cc9343a60d51
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 532
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"caa216a4-f212-4037-8f5a-f4d0765ecb46","name":"tf-vol-exciting-babbage"},"creation_date":"2025-01-27T13:53:55.276521+00:00","error_details":null,"id":"2c8076b1-3e79-4481-9548-cc9343a60d51","modification_date":"2025-01-27T13:53:55.276521+00:00","name":"tf-snap-sleepy-moser","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"b_ssd","zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "532"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:53: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:
- - 4afe22fb-b5ff-419b-a1e5-1e8f28bfb331
- status: 200 OK
- code: 200
- duration: 128.520334ms
- - id: 5
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/snapshots/2c8076b1-3e79-4481-9548-cc9343a60d51
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 529
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"caa216a4-f212-4037-8f5a-f4d0765ecb46","name":"tf-vol-exciting-babbage"},"creation_date":"2025-01-27T13:53:55.276521+00:00","error_details":null,"id":"2c8076b1-3e79-4481-9548-cc9343a60d51","modification_date":"2025-01-27T13:53:57.129037+00:00","name":"tf-snap-sleepy-moser","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "529"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:54: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:
- - 14d96b00-5ae8-4feb-97f9-6e62c3c9cf8f
- status: 200 OK
- code: 200
- duration: 123.000417ms
- - id: 6
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/snapshots/2c8076b1-3e79-4481-9548-cc9343a60d51
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 529
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"caa216a4-f212-4037-8f5a-f4d0765ecb46","name":"tf-vol-exciting-babbage"},"creation_date":"2025-01-27T13:53:55.276521+00:00","error_details":null,"id":"2c8076b1-3e79-4481-9548-cc9343a60d51","modification_date":"2025-01-27T13:53:57.129037+00:00","name":"tf-snap-sleepy-moser","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "529"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:54: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:
- - 064f095e-d5a1-44d6-b823-5e24be1ad18d
- status: 200 OK
- code: 200
- duration: 128.808875ms
- - id: 7
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 190
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"name":"test_image_basic","root_volume":"2c8076b1-3e79-4481-9548-cc9343a60d51","arch":"x86_64","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["tag1","tag2","tag3"],"public":false}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/images
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 621
- uncompressed: false
- body: '{"image":{"arch":"x86_64","creation_date":"2025-01-27T13:54:01.174868+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"389542c2-3775-41e8-944e-d89ad829d821","modification_date":"2025-01-27T13:54:01.174868+00:00","name":"test_image_basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"2c8076b1-3e79-4481-9548-cc9343a60d51","name":"tf-snap-sleepy-moser","size":20000000000,"volume_type":"b_ssd"},"state":"available","tags":["tag1","tag2","tag3"],"zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "621"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:54:00 GMT
- Location:
- - https://api.scaleway.com/instance/v1/zones/nl-ams-1/images/389542c2-3775-41e8-944e-d89ad829d821
- 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:
- - dc1e6cc1-b7c0-41e8-8b28-851ed35e62e7
- status: 201 Created
- code: 201
- duration: 313.2555ms
- - id: 8
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/images/389542c2-3775-41e8-944e-d89ad829d821
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 621
- uncompressed: false
- body: '{"image":{"arch":"x86_64","creation_date":"2025-01-27T13:54:01.174868+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"389542c2-3775-41e8-944e-d89ad829d821","modification_date":"2025-01-27T13:54:01.174868+00:00","name":"test_image_basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"2c8076b1-3e79-4481-9548-cc9343a60d51","name":"tf-snap-sleepy-moser","size":20000000000,"volume_type":"b_ssd"},"state":"available","tags":["tag1","tag2","tag3"],"zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "621"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:54:01 GMT
- Server:
- - Scaleway API Gateway (fr-par-3;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 870a4a12-9bb8-40b5-8e74-2f9f7fe1e77b
- status: 200 OK
- code: 200
- duration: 115.325417ms
- - id: 9
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/images/389542c2-3775-41e8-944e-d89ad829d821
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 621
- uncompressed: false
- body: '{"image":{"arch":"x86_64","creation_date":"2025-01-27T13:54:01.174868+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"389542c2-3775-41e8-944e-d89ad829d821","modification_date":"2025-01-27T13:54:01.174868+00:00","name":"test_image_basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"2c8076b1-3e79-4481-9548-cc9343a60d51","name":"tf-snap-sleepy-moser","size":20000000000,"volume_type":"b_ssd"},"state":"available","tags":["tag1","tag2","tag3"],"zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "621"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:54:01 GMT
- Server:
- - Scaleway API Gateway (fr-par-3;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - db48aa05-c329-4f47-8a1b-568fc3049629
- status: 200 OK
- code: 200
- duration: 111.02075ms
- - id: 10
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/volumes/caa216a4-f212-4037-8f5a-f4d0765ecb46
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 445
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:53:54.781608+00:00","export_uri":null,"id":"caa216a4-f212-4037-8f5a-f4d0765ecb46","modification_date":"2025-01-27T13:53:57.129037+00:00","name":"tf-vol-exciting-babbage","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "445"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:54:01 GMT
- Server:
- - Scaleway API Gateway (fr-par-3;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 28f858f2-f264-4ce5-8789-f3f5cf2f1b98
- status: 200 OK
- code: 200
- duration: 97.181583ms
- - id: 11
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/snapshots/2c8076b1-3e79-4481-9548-cc9343a60d51
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 529
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"caa216a4-f212-4037-8f5a-f4d0765ecb46","name":"tf-vol-exciting-babbage"},"creation_date":"2025-01-27T13:53:55.276521+00:00","error_details":null,"id":"2c8076b1-3e79-4481-9548-cc9343a60d51","modification_date":"2025-01-27T13:53:57.129037+00:00","name":"tf-snap-sleepy-moser","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "529"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:54:01 GMT
- Server:
- - Scaleway API Gateway (fr-par-3;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - e29f9f6f-aff9-418a-be8b-623ea169e6c0
- status: 200 OK
- code: 200
- duration: 110.037333ms
- - id: 12
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/images/389542c2-3775-41e8-944e-d89ad829d821
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 621
- uncompressed: false
- body: '{"image":{"arch":"x86_64","creation_date":"2025-01-27T13:54:01.174868+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"389542c2-3775-41e8-944e-d89ad829d821","modification_date":"2025-01-27T13:54:01.174868+00:00","name":"test_image_basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"2c8076b1-3e79-4481-9548-cc9343a60d51","name":"tf-snap-sleepy-moser","size":20000000000,"volume_type":"b_ssd"},"state":"available","tags":["tag1","tag2","tag3"],"zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "621"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:54:01 GMT
- Server:
- - Scaleway API Gateway (fr-par-3;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - a4e59c1d-f934-4e88-b37c-ce6b9d2e2b8d
- status: 200 OK
- code: 200
- duration: 123.952958ms
- - id: 13
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/volumes/caa216a4-f212-4037-8f5a-f4d0765ecb46
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 445
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:53:54.781608+00:00","export_uri":null,"id":"caa216a4-f212-4037-8f5a-f4d0765ecb46","modification_date":"2025-01-27T13:53:57.129037+00:00","name":"tf-vol-exciting-babbage","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "445"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:54:02 GMT
- Server:
- - Scaleway API Gateway (fr-par-3;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 04eed3e8-ac55-46bc-9996-5bd51a6510a2
- status: 200 OK
- code: 200
- duration: 100.283583ms
- - id: 14
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/snapshots/2c8076b1-3e79-4481-9548-cc9343a60d51
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 529
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"caa216a4-f212-4037-8f5a-f4d0765ecb46","name":"tf-vol-exciting-babbage"},"creation_date":"2025-01-27T13:53:55.276521+00:00","error_details":null,"id":"2c8076b1-3e79-4481-9548-cc9343a60d51","modification_date":"2025-01-27T13:53:57.129037+00:00","name":"tf-snap-sleepy-moser","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "529"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:54:02 GMT
- Server:
- - Scaleway API Gateway (fr-par-3;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 780a355d-7ee4-43f6-be36-78e4d77ae3fb
- status: 200 OK
- code: 200
- duration: 104.541417ms
- - id: 15
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/images/389542c2-3775-41e8-944e-d89ad829d821
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 621
- uncompressed: false
- body: '{"image":{"arch":"x86_64","creation_date":"2025-01-27T13:54:01.174868+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"389542c2-3775-41e8-944e-d89ad829d821","modification_date":"2025-01-27T13:54:01.174868+00:00","name":"test_image_basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"2c8076b1-3e79-4481-9548-cc9343a60d51","name":"tf-snap-sleepy-moser","size":20000000000,"volume_type":"b_ssd"},"state":"available","tags":["tag1","tag2","tag3"],"zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "621"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:54:02 GMT
- Server:
- - Scaleway API Gateway (fr-par-3;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 9f73610a-23af-46e9-a8da-28fb21efccdf
- status: 200 OK
- code: 200
- duration: 278.741833ms
- - id: 16
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/volumes/caa216a4-f212-4037-8f5a-f4d0765ecb46
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 445
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:53:54.781608+00:00","export_uri":null,"id":"caa216a4-f212-4037-8f5a-f4d0765ecb46","modification_date":"2025-01-27T13:53:57.129037+00:00","name":"tf-vol-exciting-babbage","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "445"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:54:02 GMT
- Server:
- - Scaleway API Gateway (fr-par-3;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 178bd94c-a377-47ae-87bc-6a3e2b0df4ff
- status: 200 OK
- code: 200
- duration: 102.313708ms
- - id: 17
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/snapshots/2c8076b1-3e79-4481-9548-cc9343a60d51
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 529
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"caa216a4-f212-4037-8f5a-f4d0765ecb46","name":"tf-vol-exciting-babbage"},"creation_date":"2025-01-27T13:53:55.276521+00:00","error_details":null,"id":"2c8076b1-3e79-4481-9548-cc9343a60d51","modification_date":"2025-01-27T13:53:57.129037+00:00","name":"tf-snap-sleepy-moser","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "529"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:54:02 GMT
- Server:
- - Scaleway API Gateway (fr-par-3;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 24542520-4ded-4da1-a56b-3995f8c77510
- status: 200 OK
- code: 200
- duration: 126.157125ms
- - id: 18
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/images/389542c2-3775-41e8-944e-d89ad829d821
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 621
- uncompressed: false
- body: '{"image":{"arch":"x86_64","creation_date":"2025-01-27T13:54:01.174868+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"389542c2-3775-41e8-944e-d89ad829d821","modification_date":"2025-01-27T13:54:01.174868+00:00","name":"test_image_basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"2c8076b1-3e79-4481-9548-cc9343a60d51","name":"tf-snap-sleepy-moser","size":20000000000,"volume_type":"b_ssd"},"state":"available","tags":["tag1","tag2","tag3"],"zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "621"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:54:02 GMT
- Server:
- - Scaleway API Gateway (fr-par-3;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 3e36d3a0-3c0b-4cb9-8ca9-a6d8d9d58809
- status: 200 OK
- code: 200
- duration: 132.204916ms
- - id: 19
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/images/389542c2-3775-41e8-944e-d89ad829d821
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 621
- uncompressed: false
- body: '{"image":{"arch":"x86_64","creation_date":"2025-01-27T13:54:01.174868+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"389542c2-3775-41e8-944e-d89ad829d821","modification_date":"2025-01-27T13:54:01.174868+00:00","name":"test_image_basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"2c8076b1-3e79-4481-9548-cc9343a60d51","name":"tf-snap-sleepy-moser","size":20000000000,"volume_type":"b_ssd"},"state":"available","tags":["tag1","tag2","tag3"],"zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "621"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:54:03 GMT
- Server:
- - Scaleway API Gateway (fr-par-3;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - c265d700-e40e-4ecd-8b78-8b8383335dc1
- status: 200 OK
- code: 200
- duration: 105.278708ms
- - id: 20
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/images/389542c2-3775-41e8-944e-d89ad829d821
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 621
- uncompressed: false
- body: '{"image":{"arch":"x86_64","creation_date":"2025-01-27T13:54:01.174868+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"389542c2-3775-41e8-944e-d89ad829d821","modification_date":"2025-01-27T13:54:01.174868+00:00","name":"test_image_basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"2c8076b1-3e79-4481-9548-cc9343a60d51","name":"tf-snap-sleepy-moser","size":20000000000,"volume_type":"b_ssd"},"state":"available","tags":["tag1","tag2","tag3"],"zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "621"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:54:03 GMT
- Server:
- - Scaleway API Gateway (fr-par-3;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 2dbfaad8-f416-4551-b0c0-1102894568d8
- status: 200 OK
- code: 200
- duration: 124.529625ms
- - id: 21
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 75
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"name":"test_image_renamed","arch":"arm","tags":["new tag"],"public":true}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/images/389542c2-3775-41e8-944e-d89ad829d821
- method: PATCH
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 606
- uncompressed: false
- body: '{"image":{"arch":"arm","creation_date":"2025-01-27T13:54:01.174868+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"389542c2-3775-41e8-944e-d89ad829d821","modification_date":"2025-01-27T13:54:03.720744+00:00","name":"test_image_renamed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":true,"root_volume":{"id":"2c8076b1-3e79-4481-9548-cc9343a60d51","name":"tf-snap-sleepy-moser","size":20000000000,"volume_type":"b_ssd"},"state":"available","tags":["new tag"],"zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "606"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:54:03 GMT
- Server:
- - Scaleway API Gateway (fr-par-3;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - f21c6c14-7d1e-436c-be95-8928970ad7d4
- status: 200 OK
- code: 200
- duration: 160.083958ms
- - id: 22
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/images/389542c2-3775-41e8-944e-d89ad829d821
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 606
- uncompressed: false
- body: '{"image":{"arch":"arm","creation_date":"2025-01-27T13:54:01.174868+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"389542c2-3775-41e8-944e-d89ad829d821","modification_date":"2025-01-27T13:54:03.720744+00:00","name":"test_image_renamed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":true,"root_volume":{"id":"2c8076b1-3e79-4481-9548-cc9343a60d51","name":"tf-snap-sleepy-moser","size":20000000000,"volume_type":"b_ssd"},"state":"available","tags":["new tag"],"zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "606"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:54:03 GMT
- Server:
- - Scaleway API Gateway (fr-par-3;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - dd2c28d3-428f-44fd-bdae-ef629de2a829
- status: 200 OK
- code: 200
- duration: 66.616625ms
- - id: 23
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/images/389542c2-3775-41e8-944e-d89ad829d821
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 606
- uncompressed: false
- body: '{"image":{"arch":"arm","creation_date":"2025-01-27T13:54:01.174868+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"389542c2-3775-41e8-944e-d89ad829d821","modification_date":"2025-01-27T13:54:03.720744+00:00","name":"test_image_renamed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":true,"root_volume":{"id":"2c8076b1-3e79-4481-9548-cc9343a60d51","name":"tf-snap-sleepy-moser","size":20000000000,"volume_type":"b_ssd"},"state":"available","tags":["new tag"],"zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "606"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:54:03 GMT
- Server:
- - Scaleway API Gateway (fr-par-3;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - b79c810d-53b0-42e7-bd63-157a72fa3fdc
- status: 200 OK
- code: 200
- duration: 56.665708ms
- - id: 24
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/volumes/caa216a4-f212-4037-8f5a-f4d0765ecb46
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 445
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:53:54.781608+00:00","export_uri":null,"id":"caa216a4-f212-4037-8f5a-f4d0765ecb46","modification_date":"2025-01-27T13:53:57.129037+00:00","name":"tf-vol-exciting-babbage","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "445"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:54:03 GMT
- Server:
- - Scaleway API Gateway (fr-par-3;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - df69b433-9523-4a42-909c-f901663e2646
- status: 200 OK
- code: 200
- duration: 99.340667ms
- - id: 25
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/snapshots/2c8076b1-3e79-4481-9548-cc9343a60d51
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 529
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"caa216a4-f212-4037-8f5a-f4d0765ecb46","name":"tf-vol-exciting-babbage"},"creation_date":"2025-01-27T13:53:55.276521+00:00","error_details":null,"id":"2c8076b1-3e79-4481-9548-cc9343a60d51","modification_date":"2025-01-27T13:53:57.129037+00:00","name":"tf-snap-sleepy-moser","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "529"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:54:03 GMT
- Server:
- - Scaleway API Gateway (fr-par-3;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 9ab30988-a47f-438b-9c34-994783ad1d45
- status: 200 OK
- code: 200
- duration: 107.151042ms
- - id: 26
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/images/389542c2-3775-41e8-944e-d89ad829d821
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 606
- uncompressed: false
- body: '{"image":{"arch":"arm","creation_date":"2025-01-27T13:54:01.174868+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"389542c2-3775-41e8-944e-d89ad829d821","modification_date":"2025-01-27T13:54:03.720744+00:00","name":"test_image_renamed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":true,"root_volume":{"id":"2c8076b1-3e79-4481-9548-cc9343a60d51","name":"tf-snap-sleepy-moser","size":20000000000,"volume_type":"b_ssd"},"state":"available","tags":["new tag"],"zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "606"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:54:03 GMT
- Server:
- - Scaleway API Gateway (fr-par-3;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 2d3f4925-44f5-4674-889e-8ec795388464
- status: 200 OK
- code: 200
- duration: 65.097417ms
- - id: 27
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/volumes/caa216a4-f212-4037-8f5a-f4d0765ecb46
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 445
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:53:54.781608+00:00","export_uri":null,"id":"caa216a4-f212-4037-8f5a-f4d0765ecb46","modification_date":"2025-01-27T13:53:57.129037+00:00","name":"tf-vol-exciting-babbage","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "445"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:54:03 GMT
- Server:
- - Scaleway API Gateway (fr-par-3;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - b3239eed-ac8b-4bae-8144-4a3d016a836d
- status: 200 OK
- code: 200
- duration: 98.954542ms
- - id: 28
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/snapshots/2c8076b1-3e79-4481-9548-cc9343a60d51
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 529
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"caa216a4-f212-4037-8f5a-f4d0765ecb46","name":"tf-vol-exciting-babbage"},"creation_date":"2025-01-27T13:53:55.276521+00:00","error_details":null,"id":"2c8076b1-3e79-4481-9548-cc9343a60d51","modification_date":"2025-01-27T13:53:57.129037+00:00","name":"tf-snap-sleepy-moser","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "529"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:54: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:
- - 40951775-afe9-469c-be0f-059da878f640
- status: 200 OK
- code: 200
- duration: 97.135417ms
- - id: 29
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/images/389542c2-3775-41e8-944e-d89ad829d821
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 606
- uncompressed: false
- body: '{"image":{"arch":"arm","creation_date":"2025-01-27T13:54:01.174868+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"389542c2-3775-41e8-944e-d89ad829d821","modification_date":"2025-01-27T13:54:03.720744+00:00","name":"test_image_renamed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":true,"root_volume":{"id":"2c8076b1-3e79-4481-9548-cc9343a60d51","name":"tf-snap-sleepy-moser","size":20000000000,"volume_type":"b_ssd"},"state":"available","tags":["new tag"],"zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "606"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:54: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:
- - 906d8663-23e3-467d-854a-3817d5391bc5
- status: 200 OK
- code: 200
- duration: 63.623417ms
- - id: 30
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/images/389542c2-3775-41e8-944e-d89ad829d821
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 606
- uncompressed: false
- body: '{"image":{"arch":"arm","creation_date":"2025-01-27T13:54:01.174868+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"389542c2-3775-41e8-944e-d89ad829d821","modification_date":"2025-01-27T13:54:03.720744+00:00","name":"test_image_renamed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":true,"root_volume":{"id":"2c8076b1-3e79-4481-9548-cc9343a60d51","name":"tf-snap-sleepy-moser","size":20000000000,"volume_type":"b_ssd"},"state":"available","tags":["new tag"],"zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "606"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:54:06 GMT
- Server:
- - Scaleway API Gateway (fr-par-3;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - f61237d1-88a6-4819-8d30-7e3066176b0b
- status: 200 OK
- code: 200
- duration: 56.976667ms
- - id: 31
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/images/389542c2-3775-41e8-944e-d89ad829d821
- method: DELETE
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 0
- uncompressed: false
- body: ""
- headers:
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:54:06 GMT
- Server:
- - Scaleway API Gateway (fr-par-3;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - f6b0cb7e-124b-473c-a7f1-91cd0a2710a1
- status: 204 No Content
- code: 204
- duration: 185.700375ms
- - id: 32
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/images/389542c2-3775-41e8-944e-d89ad829d821
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 142
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_image","resource_id":"389542c2-3775-41e8-944e-d89ad829d821","type":"not_found"}'
- headers:
- Content-Length:
- - "142"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:54:06 GMT
- Server:
- - Scaleway API Gateway (fr-par-3;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 24dacb5a-c261-4280-ada5-b40f12d60fa7
- status: 404 Not Found
- code: 404
- duration: 58.017833ms
- - id: 33
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/snapshots/2c8076b1-3e79-4481-9548-cc9343a60d51
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 529
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"caa216a4-f212-4037-8f5a-f4d0765ecb46","name":"tf-vol-exciting-babbage"},"creation_date":"2025-01-27T13:53:55.276521+00:00","error_details":null,"id":"2c8076b1-3e79-4481-9548-cc9343a60d51","modification_date":"2025-01-27T13:53:57.129037+00:00","name":"tf-snap-sleepy-moser","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "529"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:54:06 GMT
- Server:
- - Scaleway API Gateway (fr-par-3;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - df4566fd-cad0-4ab6-8eab-1be8f2f2d842
- status: 200 OK
- code: 200
- duration: 105.958209ms
- - id: 34
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/snapshots/2c8076b1-3e79-4481-9548-cc9343a60d51
- method: DELETE
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 0
- uncompressed: false
- body: ""
- headers:
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:54:06 GMT
- Server:
- - Scaleway API Gateway (fr-par-3;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 2ab934af-3af6-412a-80ff-9d4f3288ce9e
- status: 204 No Content
- code: 204
- duration: 193.618459ms
- - id: 35
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/snapshots/2c8076b1-3e79-4481-9548-cc9343a60d51
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 145
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"2c8076b1-3e79-4481-9548-cc9343a60d51","type":"not_found"}'
- headers:
- Content-Length:
- - "145"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:54:06 GMT
- Server:
- - Scaleway API Gateway (fr-par-3;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 7521f77d-cd59-42e8-a15a-a3048535927e
- status: 404 Not Found
- code: 404
- duration: 57.672917ms
- - id: 36
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/volumes/caa216a4-f212-4037-8f5a-f4d0765ecb46
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 445
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:53:54.781608+00:00","export_uri":null,"id":"caa216a4-f212-4037-8f5a-f4d0765ecb46","modification_date":"2025-01-27T13:53:57.129037+00:00","name":"tf-vol-exciting-babbage","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "445"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:54:06 GMT
- Server:
- - Scaleway API Gateway (fr-par-3;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - ebe2d097-c340-43b6-8c61-8e14c75405b5
- status: 200 OK
- code: 200
- duration: 100.489459ms
- - id: 37
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/volumes/caa216a4-f212-4037-8f5a-f4d0765ecb46
- method: DELETE
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 0
- uncompressed: false
- body: ""
- headers:
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:54:07 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:
- - 616b48c7-9b94-4908-bce0-96f6dad28354
- status: 204 No Content
- code: 204
- duration: 169.005542ms
- - id: 38
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/images/389542c2-3775-41e8-944e-d89ad829d821
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 142
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_image","resource_id":"389542c2-3775-41e8-944e-d89ad829d821","type":"not_found"}'
- headers:
- Content-Length:
- - "142"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:54:07 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:
- - e4ab1aba-ebdf-4254-9f20-c403e8501cff
- status: 404 Not Found
- code: 404
- duration: 61.202167ms
- - id: 39
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/snapshots/2c8076b1-3e79-4481-9548-cc9343a60d51
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 145
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"2c8076b1-3e79-4481-9548-cc9343a60d51","type":"not_found"}'
- headers:
- Content-Length:
- - "145"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:54:07 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:
- - 003703ad-1c3d-4a91-89bc-a8f8f5cfae29
- status: 404 Not Found
- code: 404
- duration: 53.555667ms
- - id: 40
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/volumes/caa216a4-f212-4037-8f5a-f4d0765ecb46
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 143
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"caa216a4-f212-4037-8f5a-f4d0765ecb46","type":"not_found"}'
- headers:
- Content-Length:
- - "143"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:54:06 GMT
- Server:
- - Scaleway API Gateway (fr-par-3;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - be575481-23ae-4dc2-9a7f-a3557ba52661
- status: 404 Not Found
- code: 404
- duration: 55.769791ms
diff --git a/internal/services/instance/testdata/image-server-with-block-volume.cassette.yaml b/internal/services/instance/testdata/image-server-with-block-volume.cassette.yaml
deleted file mode 100644
index 75b15f9c3a..0000000000
--- a/internal/services/instance/testdata/image-server-with-block-volume.cassette.yaml
+++ /dev/null
@@ -1,6715 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 35639
- uncompressed: false
- body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":6710886400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":13421772800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":6710886400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":6710886400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":13421772800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":6710886400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":13421772800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":6710886400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":13421772800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}'
- headers:
- Content-Length:
- - "35639"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:18:30 GMT
- Link:
- - ; rel="next",; rel="last"
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 33cb7d18-44bf-4739-aea5-51cb7e7ce7da
- X-Total-Count:
- - "68"
- status: 200 OK
- code: 200
- duration: 322.657ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 13164
- uncompressed: false
- body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":1,"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":200000000000}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":100000000000}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":50000000000}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":25000000000}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":200000000000}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":100000000000}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":50000000000}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":1000000000000,"min_size":500000000000}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":200000000000}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":300000000000}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":400000000000}}}}'
- headers:
- Content-Length:
- - "13164"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:18:30 GMT
- Link:
- - ; rel="first",; rel="previous",; rel="last"
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - bc513a7b-7618-441a-af1e-544a61fc7370
- X-Total-Count:
- - "68"
- status: 200 OK
- code: 200
- duration: 67.3675ms
- - id: 2
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 124
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"name":"tf-vol-cranky-blackwell","project":"105bdce1-64c0-48ab-899d-868455867ecf","volume_type":"b_ssd","size":21000000000}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 445
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-12T15:18:30.774581+00:00","export_uri":null,"id":"89f83395-b4cf-4fee-9853-833f24fdd971","modification_date":"2025-02-12T15:18:30.774581+00:00","name":"tf-vol-cranky-blackwell","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":21000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "445"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:18:30 GMT
- Location:
- - https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/89f83395-b4cf-4fee-9853-833f24fdd971
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 2c292021-7016-4bb2-b0fe-90f556715071
- status: 201 Created
- code: 201
- duration: 425.594083ms
- - id: 3
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/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: 1300
- uncompressed: false
- body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["AMP2-C1","AMP2-C2","AMP2-C4","AMP2-C8","AMP2-C12","AMP2-C24","AMP2-C48","AMP2-C60","COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"56d4019c-8305-467a-a3f2-70498ad799df","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"},{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"5dbc71d9-cb05-4a0c-853d-0ba7a14d9c45","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":2}'
- headers:
- Content-Length:
- - "1300"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:18:30 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - a90788bc-4514-410f-9d84-65a12c995c5d
- status: 200 OK
- code: 200
- duration: 99.220875ms
- - id: 4
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/89f83395-b4cf-4fee-9853-833f24fdd971
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 445
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-12T15:18:30.774581+00:00","export_uri":null,"id":"89f83395-b4cf-4fee-9853-833f24fdd971","modification_date":"2025-02-12T15:18:30.774581+00:00","name":"tf-vol-cranky-blackwell","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":21000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "445"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:18:30 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 6332e09c-9be6-4b0d-b05a-120fa6a5680a
- status: 200 OK
- code: 200
- duration: 100.653416ms
- - id: 5
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/89f83395-b4cf-4fee-9853-833f24fdd971
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 445
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-12T15:18:30.774581+00:00","export_uri":null,"id":"89f83395-b4cf-4fee-9853-833f24fdd971","modification_date":"2025-02-12T15:18:30.774581+00:00","name":"tf-vol-cranky-blackwell","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":21000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "445"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:18:30 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 0778dca1-6fa3-475d-b427-77ce3f5d93c5
- status: 200 OK
- code: 200
- duration: 91.135292ms
- - id: 6
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 138
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"name":"tf-snap-distracted-poincare","volume_id":"89f83395-b4cf-4fee-9853-833f24fdd971","project":"105bdce1-64c0-48ab-899d-868455867ecf"}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 850
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"89f83395-b4cf-4fee-9853-833f24fdd971","name":"tf-vol-cranky-blackwell"},"creation_date":"2025-02-12T15:18:31.227612+00:00","error_details":null,"id":"f97824b7-3276-4224-b71a-d450304ed14c","modification_date":"2025-02-12T15:18:31.227612+00:00","name":"tf-snap-distracted-poincare","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":21000000000,"state":"snapshotting","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"},"task":{"description":"volume_snapshot","href_from":"/snapshots","href_result":"snapshots/f97824b7-3276-4224-b71a-d450304ed14c","id":"ff9160c4-64cd-49b4-9dda-c891deea748b","progress":0,"started_at":"2025-02-12T15:18:31.419186+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "850"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:18:31 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 11a248c8-4295-48d1-b58b-6ae536c89560
- status: 201 Created
- code: 201
- duration: 521.114583ms
- - id: 7
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f97824b7-3276-4224-b71a-d450304ed14c
- 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":"89f83395-b4cf-4fee-9853-833f24fdd971","name":"tf-vol-cranky-blackwell"},"creation_date":"2025-02-12T15:18:31.227612+00:00","error_details":null,"id":"f97824b7-3276-4224-b71a-d450304ed14c","modification_date":"2025-02-12T15:18:31.227612+00:00","name":"tf-snap-distracted-poincare","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":21000000000,"state":"snapshotting","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "539"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:18:31 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - f0b63f94-ab19-4300-aeae-f01b1a6ca690
- status: 200 OK
- code: 200
- duration: 100.988708ms
- - id: 8
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 274
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"name":"tf-srv-reverent-cerf","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"5dbc71d9-cb05-4a0c-853d-0ba7a14d9c45","volumes":{"0":{"boot":false,"size":20000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2112
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-12T15:18:31.373972+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-reverent-cerf","id":"1780c24c-59ed-4db8-bb22-7191af979336","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:44.425699+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5dbc71d9-cb05-4a0c-853d-0ba7a14d9c45","modification_date":"2024-10-14T09:05:44.425699+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":"781c70f1-db12-4aa7-a697-839e030ebfca","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:93:c4:43","maintenances":[],"modification_date":"2025-02-12T15:18:31.373972+00:00","name":"tf-srv-reverent-cerf","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-02-12T15:18:31.373972+00:00","export_uri":null,"id":"55312258-0bc4-449f-b2a3-e95fcb3fa094","modification_date":"2025-02-12T15:18:31.373972+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"1780c24c-59ed-4db8-bb22-7191af979336","name":"tf-srv-reverent-cerf"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2112"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:18:31 GMT
- Location:
- - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1780c24c-59ed-4db8-bb22-7191af979336
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - d6bff40c-5492-4ee1-a24a-41df59df5bd8
- status: 201 Created
- code: 201
- duration: 806.465084ms
- - id: 9
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1780c24c-59ed-4db8-bb22-7191af979336
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2112
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-12T15:18:31.373972+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-reverent-cerf","id":"1780c24c-59ed-4db8-bb22-7191af979336","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:44.425699+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5dbc71d9-cb05-4a0c-853d-0ba7a14d9c45","modification_date":"2024-10-14T09:05:44.425699+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":"781c70f1-db12-4aa7-a697-839e030ebfca","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:93:c4:43","maintenances":[],"modification_date":"2025-02-12T15:18:31.373972+00:00","name":"tf-srv-reverent-cerf","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-02-12T15:18:31.373972+00:00","export_uri":null,"id":"55312258-0bc4-449f-b2a3-e95fcb3fa094","modification_date":"2025-02-12T15:18:31.373972+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"1780c24c-59ed-4db8-bb22-7191af979336","name":"tf-srv-reverent-cerf"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2112"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:18:31 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 0b4ea924-489c-4ac7-831f-95d9ba92f99c
- status: 200 OK
- code: 200
- duration: 167.925875ms
- - id: 10
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1780c24c-59ed-4db8-bb22-7191af979336
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2112
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-12T15:18:31.373972+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-reverent-cerf","id":"1780c24c-59ed-4db8-bb22-7191af979336","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:44.425699+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5dbc71d9-cb05-4a0c-853d-0ba7a14d9c45","modification_date":"2024-10-14T09:05:44.425699+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":"781c70f1-db12-4aa7-a697-839e030ebfca","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:93:c4:43","maintenances":[],"modification_date":"2025-02-12T15:18:31.373972+00:00","name":"tf-srv-reverent-cerf","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-02-12T15:18:31.373972+00:00","export_uri":null,"id":"55312258-0bc4-449f-b2a3-e95fcb3fa094","modification_date":"2025-02-12T15:18:31.373972+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"1780c24c-59ed-4db8-bb22-7191af979336","name":"tf-srv-reverent-cerf"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2112"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:18:31 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - cb9f1afa-a6cf-4342-a2c3-29bd1afcff92
- status: 200 OK
- code: 200
- duration: 172.073291ms
- - id: 11
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 20
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"action":"poweron"}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1780c24c-59ed-4db8-bb22-7191af979336/action
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 357
- uncompressed: false
- body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/1780c24c-59ed-4db8-bb22-7191af979336/action","href_result":"/servers/1780c24c-59ed-4db8-bb22-7191af979336","id":"b15ae153-23fb-4615-952d-1aaf14df7e89","progress":0,"started_at":"2025-02-12T15:18:32.353039+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "357"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:18:32 GMT
- Location:
- - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/b15ae153-23fb-4615-952d-1aaf14df7e89
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 4cb7bb22-5dec-43da-a9bc-12f7b2119f61
- status: 202 Accepted
- code: 202
- duration: 333.49975ms
- - id: 12
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1780c24c-59ed-4db8-bb22-7191af979336
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2134
- uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-12T15:18:31.373972+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-reverent-cerf","id":"1780c24c-59ed-4db8-bb22-7191af979336","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:44.425699+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5dbc71d9-cb05-4a0c-853d-0ba7a14d9c45","modification_date":"2024-10-14T09:05:44.425699+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":"781c70f1-db12-4aa7-a697-839e030ebfca","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:93:c4:43","maintenances":[],"modification_date":"2025-02-12T15:18:32.116505+00:00","name":"tf-srv-reverent-cerf","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-02-12T15:18:31.373972+00:00","export_uri":null,"id":"55312258-0bc4-449f-b2a3-e95fcb3fa094","modification_date":"2025-02-12T15:18:31.373972+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"1780c24c-59ed-4db8-bb22-7191af979336","name":"tf-srv-reverent-cerf"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2134"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:18:32 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 8ba2a9f4-4c2d-4fec-975f-fcf77d6b3b73
- status: 200 OK
- code: 200
- duration: 248.339541ms
- - id: 13
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f97824b7-3276-4224-b71a-d450304ed14c
- 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":"89f83395-b4cf-4fee-9853-833f24fdd971","name":"tf-vol-cranky-blackwell"},"creation_date":"2025-02-12T15:18:31.227612+00:00","error_details":null,"id":"f97824b7-3276-4224-b71a-d450304ed14c","modification_date":"2025-02-12T15:18:34.957281+00:00","name":"tf-snap-distracted-poincare","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":21000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "536"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:18:36 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - a5e34339-9feb-46dd-8880-7a0f9c1b0773
- status: 200 OK
- code: 200
- duration: 111.807833ms
- - id: 14
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f97824b7-3276-4224-b71a-d450304ed14c
- 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":"89f83395-b4cf-4fee-9853-833f24fdd971","name":"tf-vol-cranky-blackwell"},"creation_date":"2025-02-12T15:18:31.227612+00:00","error_details":null,"id":"f97824b7-3276-4224-b71a-d450304ed14c","modification_date":"2025-02-12T15:18:34.957281+00:00","name":"tf-snap-distracted-poincare","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":21000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "536"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:18:36 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 3fe19dba-03b7-4b7a-886e-bcb5e5bb95ba
- status: 200 OK
- code: 200
- duration: 106.14475ms
- - id: 15
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1780c24c-59ed-4db8-bb22-7191af979336
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2238
- uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-12T15:18:31.373972+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-reverent-cerf","id":"1780c24c-59ed-4db8-bb22-7191af979336","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:44.425699+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5dbc71d9-cb05-4a0c-853d-0ba7a14d9c45","modification_date":"2024-10-14T09:05:44.425699+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":"781c70f1-db12-4aa7-a697-839e030ebfca","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:93:c4:43","maintenances":[],"modification_date":"2025-02-12T15:18:32.116505+00:00","name":"tf-srv-reverent-cerf","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-02-12T15:18:31.373972+00:00","export_uri":null,"id":"55312258-0bc4-449f-b2a3-e95fcb3fa094","modification_date":"2025-02-12T15:18:31.373972+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"1780c24c-59ed-4db8-bb22-7191af979336","name":"tf-srv-reverent-cerf"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2238"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:18:37 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 79a8c031-dae0-4bc8-ae1a-892a63b26d51
- status: 200 OK
- code: 200
- duration: 698.2605ms
- - id: 16
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1780c24c-59ed-4db8-bb22-7191af979336
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2238
- uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-12T15:18:31.373972+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-reverent-cerf","id":"1780c24c-59ed-4db8-bb22-7191af979336","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:44.425699+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5dbc71d9-cb05-4a0c-853d-0ba7a14d9c45","modification_date":"2024-10-14T09:05:44.425699+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":"781c70f1-db12-4aa7-a697-839e030ebfca","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:93:c4:43","maintenances":[],"modification_date":"2025-02-12T15:18:32.116505+00:00","name":"tf-srv-reverent-cerf","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-02-12T15:18:31.373972+00:00","export_uri":null,"id":"55312258-0bc4-449f-b2a3-e95fcb3fa094","modification_date":"2025-02-12T15:18:31.373972+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"1780c24c-59ed-4db8-bb22-7191af979336","name":"tf-srv-reverent-cerf"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2238"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:18:43 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - a1832a64-fca1-47a6-bbfa-7e278859cf7d
- status: 200 OK
- code: 200
- duration: 195.517917ms
- - id: 17
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1780c24c-59ed-4db8-bb22-7191af979336
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2238
- uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-12T15:18:31.373972+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-reverent-cerf","id":"1780c24c-59ed-4db8-bb22-7191af979336","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:44.425699+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5dbc71d9-cb05-4a0c-853d-0ba7a14d9c45","modification_date":"2024-10-14T09:05:44.425699+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":"781c70f1-db12-4aa7-a697-839e030ebfca","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:93:c4:43","maintenances":[],"modification_date":"2025-02-12T15:18:32.116505+00:00","name":"tf-srv-reverent-cerf","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-02-12T15:18:31.373972+00:00","export_uri":null,"id":"55312258-0bc4-449f-b2a3-e95fcb3fa094","modification_date":"2025-02-12T15:18:31.373972+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"1780c24c-59ed-4db8-bb22-7191af979336","name":"tf-srv-reverent-cerf"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2238"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:18:48 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 771d7796-cc7f-4f51-b77f-31d0f7985ba6
- status: 200 OK
- code: 200
- duration: 191.616208ms
- - id: 18
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1780c24c-59ed-4db8-bb22-7191af979336
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2269
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-12T15:18:31.373972+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-reverent-cerf","id":"1780c24c-59ed-4db8-bb22-7191af979336","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:44.425699+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5dbc71d9-cb05-4a0c-853d-0ba7a14d9c45","modification_date":"2024-10-14T09:05:44.425699+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":"781c70f1-db12-4aa7-a697-839e030ebfca","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:93:c4:43","maintenances":[],"modification_date":"2025-02-12T15:18:48.907477+00:00","name":"tf-srv-reverent-cerf","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-02-12T15:18:31.373972+00:00","export_uri":null,"id":"55312258-0bc4-449f-b2a3-e95fcb3fa094","modification_date":"2025-02-12T15:18:31.373972+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"1780c24c-59ed-4db8-bb22-7191af979336","name":"tf-srv-reverent-cerf"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2269"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:18:53 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 7a715de0-ecd6-4103-aca9-5693e29c9eab
- status: 200 OK
- code: 200
- duration: 175.93825ms
- - id: 19
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1780c24c-59ed-4db8-bb22-7191af979336
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2269
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-12T15:18:31.373972+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-reverent-cerf","id":"1780c24c-59ed-4db8-bb22-7191af979336","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:44.425699+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5dbc71d9-cb05-4a0c-853d-0ba7a14d9c45","modification_date":"2024-10-14T09:05:44.425699+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":"781c70f1-db12-4aa7-a697-839e030ebfca","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:93:c4:43","maintenances":[],"modification_date":"2025-02-12T15:18:48.907477+00:00","name":"tf-srv-reverent-cerf","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-02-12T15:18:31.373972+00:00","export_uri":null,"id":"55312258-0bc4-449f-b2a3-e95fcb3fa094","modification_date":"2025-02-12T15:18:31.373972+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"1780c24c-59ed-4db8-bb22-7191af979336","name":"tf-srv-reverent-cerf"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2269"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:18:53 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 450fbed3-bb7a-408b-ab88-fc80928128f4
- status: 200 OK
- code: 200
- duration: 189.422041ms
- - id: 20
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/55312258-0bc4-449f-b2a3-e95fcb3fa094
- 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-02-12T15:18:31.373972+00:00","export_uri":null,"id":"55312258-0bc4-449f-b2a3-e95fcb3fa094","modification_date":"2025-02-12T15:18:31.373972+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"1780c24c-59ed-4db8-bb22-7191af979336","name":"tf-srv-reverent-cerf"},"size":20000000000,"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, 12 Feb 2025 15:18:53 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 880f7027-e2a1-4b7d-bba7-049ac5fdbf8c
- status: 200 OK
- code: 200
- duration: 119.957958ms
- - id: 21
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1780c24c-59ed-4db8-bb22-7191af979336/user_data
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 17
- uncompressed: false
- body: '{"user_data":[]}'
- headers:
- Content-Length:
- - "17"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:18:54 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - e542fc9b-f477-4ea0-b261-7e8f172010bb
- status: 200 OK
- code: 200
- duration: 102.302333ms
- - id: 22
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1780c24c-59ed-4db8-bb22-7191af979336/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, 12 Feb 2025 15:18:54 GMT
- Link:
- - ; rel="last"
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - b6b31786-5ff6-4b72-b9d8-8c51ccf89582
- X-Total-Count:
- - "0"
- status: 200 OK
- code: 200
- duration: 115.273666ms
- - id: 23
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/89f83395-b4cf-4fee-9853-833f24fdd971
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 445
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-12T15:18:30.774581+00:00","export_uri":null,"id":"89f83395-b4cf-4fee-9853-833f24fdd971","modification_date":"2025-02-12T15:18:34.957281+00:00","name":"tf-vol-cranky-blackwell","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":21000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "445"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:18:54 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - b48dfc47-63a6-4da1-b5f7-c4598a9d7d82
- status: 200 OK
- code: 200
- duration: 101.158125ms
- - id: 24
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1780c24c-59ed-4db8-bb22-7191af979336
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2269
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-12T15:18:31.373972+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-reverent-cerf","id":"1780c24c-59ed-4db8-bb22-7191af979336","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:44.425699+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5dbc71d9-cb05-4a0c-853d-0ba7a14d9c45","modification_date":"2024-10-14T09:05:44.425699+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":"781c70f1-db12-4aa7-a697-839e030ebfca","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:93:c4:43","maintenances":[],"modification_date":"2025-02-12T15:18:48.907477+00:00","name":"tf-srv-reverent-cerf","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-02-12T15:18:31.373972+00:00","export_uri":null,"id":"55312258-0bc4-449f-b2a3-e95fcb3fa094","modification_date":"2025-02-12T15:18:31.373972+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"1780c24c-59ed-4db8-bb22-7191af979336","name":"tf-srv-reverent-cerf"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2269"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:18:54 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 058fc16e-857b-4b18-905c-949ee267d256
- status: 200 OK
- code: 200
- duration: 205.24325ms
- - id: 25
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f97824b7-3276-4224-b71a-d450304ed14c
- 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":"89f83395-b4cf-4fee-9853-833f24fdd971","name":"tf-vol-cranky-blackwell"},"creation_date":"2025-02-12T15:18:31.227612+00:00","error_details":null,"id":"f97824b7-3276-4224-b71a-d450304ed14c","modification_date":"2025-02-12T15:18:34.957281+00:00","name":"tf-snap-distracted-poincare","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":21000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "536"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:18:54 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 0e1d395f-b979-43c3-b369-d3a22d836227
- status: 200 OK
- code: 200
- duration: 107.509833ms
- - id: 26
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/89f83395-b4cf-4fee-9853-833f24fdd971
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 445
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-12T15:18:30.774581+00:00","export_uri":null,"id":"89f83395-b4cf-4fee-9853-833f24fdd971","modification_date":"2025-02-12T15:18:34.957281+00:00","name":"tf-vol-cranky-blackwell","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":21000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "445"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:18:55 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - b61e889e-142a-4d54-b7e9-29a8d6f5bde9
- status: 200 OK
- code: 200
- duration: 104.222917ms
- - id: 27
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1780c24c-59ed-4db8-bb22-7191af979336
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2269
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-12T15:18:31.373972+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-reverent-cerf","id":"1780c24c-59ed-4db8-bb22-7191af979336","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:44.425699+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5dbc71d9-cb05-4a0c-853d-0ba7a14d9c45","modification_date":"2024-10-14T09:05:44.425699+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":"781c70f1-db12-4aa7-a697-839e030ebfca","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:93:c4:43","maintenances":[],"modification_date":"2025-02-12T15:18:48.907477+00:00","name":"tf-srv-reverent-cerf","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-02-12T15:18:31.373972+00:00","export_uri":null,"id":"55312258-0bc4-449f-b2a3-e95fcb3fa094","modification_date":"2025-02-12T15:18:31.373972+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"1780c24c-59ed-4db8-bb22-7191af979336","name":"tf-srv-reverent-cerf"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2269"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:18:55 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - aea8ddaa-e629-4bcc-9ec8-00338efb1857
- status: 200 OK
- code: 200
- duration: 178.394292ms
- - id: 28
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f97824b7-3276-4224-b71a-d450304ed14c
- 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":"89f83395-b4cf-4fee-9853-833f24fdd971","name":"tf-vol-cranky-blackwell"},"creation_date":"2025-02-12T15:18:31.227612+00:00","error_details":null,"id":"f97824b7-3276-4224-b71a-d450304ed14c","modification_date":"2025-02-12T15:18:34.957281+00:00","name":"tf-snap-distracted-poincare","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":21000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "536"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:18:55 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 6c0e14e6-c149-4c47-8054-25c944c850a5
- status: 200 OK
- code: 200
- duration: 112.788625ms
- - id: 29
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/55312258-0bc4-449f-b2a3-e95fcb3fa094
- 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-02-12T15:18:31.373972+00:00","export_uri":null,"id":"55312258-0bc4-449f-b2a3-e95fcb3fa094","modification_date":"2025-02-12T15:18:31.373972+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"1780c24c-59ed-4db8-bb22-7191af979336","name":"tf-srv-reverent-cerf"},"size":20000000000,"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, 12 Feb 2025 15:18:54 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 3c790b71-1e43-461e-987c-a9dd9cd953a7
- status: 200 OK
- code: 200
- duration: 108.278542ms
- - id: 30
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1780c24c-59ed-4db8-bb22-7191af979336/user_data
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 17
- uncompressed: false
- body: '{"user_data":[]}'
- headers:
- Content-Length:
- - "17"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:18:55 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - e3a1d184-2748-4731-b515-82104a979025
- status: 200 OK
- code: 200
- duration: 118.969042ms
- - id: 31
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1780c24c-59ed-4db8-bb22-7191af979336/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, 12 Feb 2025 15:18:55 GMT
- Link:
- - ; rel="last"
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 30989539-d05e-4a21-b80d-4a564d06af0f
- X-Total-Count:
- - "0"
- status: 200 OK
- code: 200
- duration: 104.178875ms
- - id: 32
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/89f83395-b4cf-4fee-9853-833f24fdd971
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 445
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-12T15:18:30.774581+00:00","export_uri":null,"id":"89f83395-b4cf-4fee-9853-833f24fdd971","modification_date":"2025-02-12T15:18:34.957281+00:00","name":"tf-vol-cranky-blackwell","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":21000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "445"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:18:55 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 5f1e148a-f963-4737-abcc-ad336ad4600f
- status: 200 OK
- code: 200
- duration: 97.859667ms
- - id: 33
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1780c24c-59ed-4db8-bb22-7191af979336
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2269
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-12T15:18:31.373972+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-reverent-cerf","id":"1780c24c-59ed-4db8-bb22-7191af979336","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:44.425699+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5dbc71d9-cb05-4a0c-853d-0ba7a14d9c45","modification_date":"2024-10-14T09:05:44.425699+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":"781c70f1-db12-4aa7-a697-839e030ebfca","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:93:c4:43","maintenances":[],"modification_date":"2025-02-12T15:18:48.907477+00:00","name":"tf-srv-reverent-cerf","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-02-12T15:18:31.373972+00:00","export_uri":null,"id":"55312258-0bc4-449f-b2a3-e95fcb3fa094","modification_date":"2025-02-12T15:18:31.373972+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"1780c24c-59ed-4db8-bb22-7191af979336","name":"tf-srv-reverent-cerf"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2269"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:18:55 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - d72b23b9-eac1-45cb-8b0f-5ad4e7c227c6
- status: 200 OK
- code: 200
- duration: 190.794584ms
- - id: 34
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f97824b7-3276-4224-b71a-d450304ed14c
- 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":"89f83395-b4cf-4fee-9853-833f24fdd971","name":"tf-vol-cranky-blackwell"},"creation_date":"2025-02-12T15:18:31.227612+00:00","error_details":null,"id":"f97824b7-3276-4224-b71a-d450304ed14c","modification_date":"2025-02-12T15:18:34.957281+00:00","name":"tf-snap-distracted-poincare","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":21000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "536"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:18:55 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 64fdbbdb-f489-47c6-9954-2721888a696a
- status: 200 OK
- code: 200
- duration: 113.199542ms
- - id: 35
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/55312258-0bc4-449f-b2a3-e95fcb3fa094
- 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-02-12T15:18:31.373972+00:00","export_uri":null,"id":"55312258-0bc4-449f-b2a3-e95fcb3fa094","modification_date":"2025-02-12T15:18:31.373972+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"1780c24c-59ed-4db8-bb22-7191af979336","name":"tf-srv-reverent-cerf"},"size":20000000000,"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, 12 Feb 2025 15:18:55 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - afe37ee1-bf88-4095-b305-74ec9b253fe0
- status: 200 OK
- code: 200
- duration: 107.485791ms
- - id: 36
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1780c24c-59ed-4db8-bb22-7191af979336/user_data
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 17
- uncompressed: false
- body: '{"user_data":[]}'
- headers:
- Content-Length:
- - "17"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:18:56 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 6fd54511-668c-4cb7-86d7-8cf3ee1407ca
- status: 200 OK
- code: 200
- duration: 106.439ms
- - id: 37
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1780c24c-59ed-4db8-bb22-7191af979336/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, 12 Feb 2025 15:18:56 GMT
- Link:
- - ; rel="last"
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 4dfbfd26-580b-40ee-a94a-3c448bfaf616
- X-Total-Count:
- - "0"
- status: 200 OK
- code: 200
- duration: 136.365167ms
- - id: 38
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 136
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"name":"tf-snap-stupefied-hellman","volume_id":"55312258-0bc4-449f-b2a3-e95fcb3fa094","project":"105bdce1-64c0-48ab-899d-868455867ecf"}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 849
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"55312258-0bc4-449f-b2a3-e95fcb3fa094","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-02-12T15:18:56.896267+00:00","error_details":null,"id":"1b0ce8dc-403d-4ab9-b326-d30ddee68e64","modification_date":"2025-02-12T15:18:56.896267+00:00","name":"tf-snap-stupefied-hellman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"task":{"description":"volume_snapshot","href_from":"/snapshots","href_result":"snapshots/1b0ce8dc-403d-4ab9-b326-d30ddee68e64","id":"16f90202-138e-4f2d-aefa-37f35a0366f2","progress":0,"started_at":"2025-02-12T15:18:57.157090+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "849"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:18:57 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 937d8177-b2bb-42f1-a694-9c0f0c7a4d8c
- status: 201 Created
- code: 201
- duration: 1.031219292s
- - id: 39
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/1b0ce8dc-403d-4ab9-b326-d30ddee68e64
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 538
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"55312258-0bc4-449f-b2a3-e95fcb3fa094","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-02-12T15:18:56.896267+00:00","error_details":null,"id":"1b0ce8dc-403d-4ab9-b326-d30ddee68e64","modification_date":"2025-02-12T15:18:56.896267+00:00","name":"tf-snap-stupefied-hellman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "538"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:18:57 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - a616496b-c283-4536-aec1-99a61607f78b
- status: 200 OK
- code: 200
- duration: 117.207458ms
- - id: 40
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/1b0ce8dc-403d-4ab9-b326-d30ddee68e64
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 538
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"55312258-0bc4-449f-b2a3-e95fcb3fa094","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-02-12T15:18:56.896267+00:00","error_details":null,"id":"1b0ce8dc-403d-4ab9-b326-d30ddee68e64","modification_date":"2025-02-12T15:18:56.896267+00:00","name":"tf-snap-stupefied-hellman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "538"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:02 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 485fae65-73f3-4565-8bd6-c08464de4b32
- status: 200 OK
- code: 200
- duration: 98.3555ms
- - id: 41
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/1b0ce8dc-403d-4ab9-b326-d30ddee68e64
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 538
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"55312258-0bc4-449f-b2a3-e95fcb3fa094","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-02-12T15:18:56.896267+00:00","error_details":null,"id":"1b0ce8dc-403d-4ab9-b326-d30ddee68e64","modification_date":"2025-02-12T15:18:56.896267+00:00","name":"tf-snap-stupefied-hellman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "538"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:07 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - a816d69a-7f49-4ea2-ab56-06b59aab6685
- status: 200 OK
- code: 200
- duration: 116.591125ms
- - id: 42
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/1b0ce8dc-403d-4ab9-b326-d30ddee68e64
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 538
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"55312258-0bc4-449f-b2a3-e95fcb3fa094","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-02-12T15:18:56.896267+00:00","error_details":null,"id":"1b0ce8dc-403d-4ab9-b326-d30ddee68e64","modification_date":"2025-02-12T15:18:56.896267+00:00","name":"tf-snap-stupefied-hellman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "538"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:13 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 571e69ac-2297-454f-aa4c-1a54d3ae2a07
- status: 200 OK
- code: 200
- duration: 100.041833ms
- - id: 43
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/1b0ce8dc-403d-4ab9-b326-d30ddee68e64
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 538
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"55312258-0bc4-449f-b2a3-e95fcb3fa094","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-02-12T15:18:56.896267+00:00","error_details":null,"id":"1b0ce8dc-403d-4ab9-b326-d30ddee68e64","modification_date":"2025-02-12T15:18:56.896267+00:00","name":"tf-snap-stupefied-hellman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "538"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:18 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - c1932610-f8d3-4a70-a495-39feb89a21f1
- status: 200 OK
- code: 200
- duration: 243.034292ms
- - id: 44
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/1b0ce8dc-403d-4ab9-b326-d30ddee68e64
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 538
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"55312258-0bc4-449f-b2a3-e95fcb3fa094","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-02-12T15:18:56.896267+00:00","error_details":null,"id":"1b0ce8dc-403d-4ab9-b326-d30ddee68e64","modification_date":"2025-02-12T15:18:56.896267+00:00","name":"tf-snap-stupefied-hellman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "538"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:23 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - a093da12-7f57-4f54-abef-5260c23c7917
- status: 200 OK
- code: 200
- duration: 106.877291ms
- - id: 45
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/1b0ce8dc-403d-4ab9-b326-d30ddee68e64
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 535
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"55312258-0bc4-449f-b2a3-e95fcb3fa094","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-02-12T15:18:56.896267+00:00","error_details":null,"id":"1b0ce8dc-403d-4ab9-b326-d30ddee68e64","modification_date":"2025-02-12T15:19:23.710368+00:00","name":"tf-snap-stupefied-hellman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "535"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:28 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 7f1e4550-80f6-496a-829e-b7ca64b36bdb
- status: 200 OK
- code: 200
- duration: 104.735875ms
- - id: 46
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/1b0ce8dc-403d-4ab9-b326-d30ddee68e64
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 535
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"55312258-0bc4-449f-b2a3-e95fcb3fa094","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-02-12T15:18:56.896267+00:00","error_details":null,"id":"1b0ce8dc-403d-4ab9-b326-d30ddee68e64","modification_date":"2025-02-12T15:19:23.710368+00:00","name":"tf-snap-stupefied-hellman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "535"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:28 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 1cc752de-cd25-44ef-8296-68014cc5567d
- status: 200 OK
- code: 200
- duration: 119.489875ms
- - id: 47
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 235
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"name":"tf-image-vigilant-hertz","root_volume":"1b0ce8dc-403d-4ab9-b326-d30ddee68e64","arch":"x86_64","extra_volumes":{"1":{"id":"f97824b7-3276-4224-b71a-d450304ed14c"}},"project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/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: 746
- uncompressed: false
- body: '{"image":{"arch":"x86_64","creation_date":"2025-02-12T15:19:28.932980+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"f97824b7-3276-4224-b71a-d450304ed14c","name":"tf-snap-distracted-poincare","size":21000000000,"volume_type":"b_ssd"}},"from_server":"","id":"4955169c-7666-48cb-9e27-7ee608b717d5","modification_date":"2025-02-12T15:19:28.932980+00:00","name":"tf-image-vigilant-hertz","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"1b0ce8dc-403d-4ab9-b326-d30ddee68e64","name":"tf-snap-stupefied-hellman","size":20000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "746"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:28 GMT
- Location:
- - https://api.scaleway.com/instance/v1/zones/fr-par-1/images/4955169c-7666-48cb-9e27-7ee608b717d5
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - ac024b6e-c98b-4aca-ae97-22eb57e97c3a
- status: 201 Created
- code: 201
- duration: 408.023333ms
- - id: 48
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/4955169c-7666-48cb-9e27-7ee608b717d5
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 746
- uncompressed: false
- body: '{"image":{"arch":"x86_64","creation_date":"2025-02-12T15:19:28.932980+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"f97824b7-3276-4224-b71a-d450304ed14c","name":"tf-snap-distracted-poincare","size":21000000000,"volume_type":"b_ssd"}},"from_server":"","id":"4955169c-7666-48cb-9e27-7ee608b717d5","modification_date":"2025-02-12T15:19:28.932980+00:00","name":"tf-image-vigilant-hertz","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"1b0ce8dc-403d-4ab9-b326-d30ddee68e64","name":"tf-snap-stupefied-hellman","size":20000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "746"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:28 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 5449a246-6080-444a-ae35-aa9b450d8501
- status: 200 OK
- code: 200
- duration: 104.912459ms
- - id: 49
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/4955169c-7666-48cb-9e27-7ee608b717d5
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 746
- uncompressed: false
- body: '{"image":{"arch":"x86_64","creation_date":"2025-02-12T15:19:28.932980+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"f97824b7-3276-4224-b71a-d450304ed14c","name":"tf-snap-distracted-poincare","size":21000000000,"volume_type":"b_ssd"}},"from_server":"","id":"4955169c-7666-48cb-9e27-7ee608b717d5","modification_date":"2025-02-12T15:19:28.932980+00:00","name":"tf-image-vigilant-hertz","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"1b0ce8dc-403d-4ab9-b326-d30ddee68e64","name":"tf-snap-stupefied-hellman","size":20000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "746"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:29 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - c5a6b5c1-71e6-4e14-b201-ee59119ca268
- status: 200 OK
- code: 200
- duration: 132.159042ms
- - id: 50
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/89f83395-b4cf-4fee-9853-833f24fdd971
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 445
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-12T15:18:30.774581+00:00","export_uri":null,"id":"89f83395-b4cf-4fee-9853-833f24fdd971","modification_date":"2025-02-12T15:18:34.957281+00:00","name":"tf-vol-cranky-blackwell","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":21000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "445"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:29 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 36cd6356-6e2f-4271-8a66-5deaaf8ea373
- status: 200 OK
- code: 200
- duration: 90.020333ms
- - id: 51
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1780c24c-59ed-4db8-bb22-7191af979336
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2269
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-12T15:18:31.373972+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-reverent-cerf","id":"1780c24c-59ed-4db8-bb22-7191af979336","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:44.425699+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5dbc71d9-cb05-4a0c-853d-0ba7a14d9c45","modification_date":"2024-10-14T09:05:44.425699+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":"781c70f1-db12-4aa7-a697-839e030ebfca","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:93:c4:43","maintenances":[],"modification_date":"2025-02-12T15:18:48.907477+00:00","name":"tf-srv-reverent-cerf","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-02-12T15:18:31.373972+00:00","export_uri":null,"id":"55312258-0bc4-449f-b2a3-e95fcb3fa094","modification_date":"2025-02-12T15:19:23.710368+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"1780c24c-59ed-4db8-bb22-7191af979336","name":"tf-srv-reverent-cerf"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2269"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:29 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 37e05813-ade1-4328-a475-7748607fe07d
- status: 200 OK
- code: 200
- duration: 174.361084ms
- - id: 52
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f97824b7-3276-4224-b71a-d450304ed14c
- 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":"89f83395-b4cf-4fee-9853-833f24fdd971","name":"tf-vol-cranky-blackwell"},"creation_date":"2025-02-12T15:18:31.227612+00:00","error_details":null,"id":"f97824b7-3276-4224-b71a-d450304ed14c","modification_date":"2025-02-12T15:18:34.957281+00:00","name":"tf-snap-distracted-poincare","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":21000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "536"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:29 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - b6afcd37-e40e-47dc-af74-9f35ae9e0969
- status: 200 OK
- code: 200
- duration: 108.2945ms
- - id: 53
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/1b0ce8dc-403d-4ab9-b326-d30ddee68e64
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 535
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"55312258-0bc4-449f-b2a3-e95fcb3fa094","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-02-12T15:18:56.896267+00:00","error_details":null,"id":"1b0ce8dc-403d-4ab9-b326-d30ddee68e64","modification_date":"2025-02-12T15:19:23.710368+00:00","name":"tf-snap-stupefied-hellman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "535"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:29 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 15555486-356a-43fb-bdc4-687b869b8024
- status: 200 OK
- code: 200
- duration: 101.710666ms
- - id: 54
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/4955169c-7666-48cb-9e27-7ee608b717d5
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 746
- uncompressed: false
- body: '{"image":{"arch":"x86_64","creation_date":"2025-02-12T15:19:28.932980+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"f97824b7-3276-4224-b71a-d450304ed14c","name":"tf-snap-distracted-poincare","size":21000000000,"volume_type":"b_ssd"}},"from_server":"","id":"4955169c-7666-48cb-9e27-7ee608b717d5","modification_date":"2025-02-12T15:19:28.932980+00:00","name":"tf-image-vigilant-hertz","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"1b0ce8dc-403d-4ab9-b326-d30ddee68e64","name":"tf-snap-stupefied-hellman","size":20000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "746"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:29 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - b9f8adee-1d05-48e3-91ce-eb406511333b
- status: 200 OK
- code: 200
- duration: 135.48725ms
- - id: 55
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1780c24c-59ed-4db8-bb22-7191af979336
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2269
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-12T15:18:31.373972+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-reverent-cerf","id":"1780c24c-59ed-4db8-bb22-7191af979336","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:44.425699+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5dbc71d9-cb05-4a0c-853d-0ba7a14d9c45","modification_date":"2024-10-14T09:05:44.425699+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":"781c70f1-db12-4aa7-a697-839e030ebfca","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:93:c4:43","maintenances":[],"modification_date":"2025-02-12T15:18:48.907477+00:00","name":"tf-srv-reverent-cerf","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-02-12T15:18:31.373972+00:00","export_uri":null,"id":"55312258-0bc4-449f-b2a3-e95fcb3fa094","modification_date":"2025-02-12T15:19:23.710368+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"1780c24c-59ed-4db8-bb22-7191af979336","name":"tf-srv-reverent-cerf"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2269"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:30 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 89c140e0-3738-4b92-9e1c-6d90d8fcc9ea
- status: 200 OK
- code: 200
- duration: 708.625416ms
- - id: 56
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/55312258-0bc4-449f-b2a3-e95fcb3fa094
- 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-02-12T15:18:31.373972+00:00","export_uri":null,"id":"55312258-0bc4-449f-b2a3-e95fcb3fa094","modification_date":"2025-02-12T15:19:23.710368+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"1780c24c-59ed-4db8-bb22-7191af979336","name":"tf-srv-reverent-cerf"},"size":20000000000,"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, 12 Feb 2025 15:19:30 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - c0cc7076-1ed6-4115-89d0-4d16b34caf49
- status: 200 OK
- code: 200
- duration: 281.376667ms
- - id: 57
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1780c24c-59ed-4db8-bb22-7191af979336/user_data
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 17
- uncompressed: false
- body: '{"user_data":[]}'
- headers:
- Content-Length:
- - "17"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:31 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 391a975e-c494-4761-8904-f960bb26224a
- status: 200 OK
- code: 200
- duration: 121.922583ms
- - id: 58
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1780c24c-59ed-4db8-bb22-7191af979336/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, 12 Feb 2025 15:19:31 GMT
- Link:
- - ; rel="last"
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 5bf2cb1e-d9be-4f09-8fc0-7e23f34c03ea
- X-Total-Count:
- - "0"
- status: 200 OK
- code: 200
- duration: 117.516917ms
- - id: 59
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/89f83395-b4cf-4fee-9853-833f24fdd971
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 445
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-12T15:18:30.774581+00:00","export_uri":null,"id":"89f83395-b4cf-4fee-9853-833f24fdd971","modification_date":"2025-02-12T15:18:34.957281+00:00","name":"tf-vol-cranky-blackwell","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":21000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "445"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:31 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 4bc49b2a-03a6-43ed-9518-7729820c6dc3
- status: 200 OK
- code: 200
- duration: 1.3647115s
- - id: 60
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/1b0ce8dc-403d-4ab9-b326-d30ddee68e64
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 535
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"55312258-0bc4-449f-b2a3-e95fcb3fa094","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-02-12T15:18:56.896267+00:00","error_details":null,"id":"1b0ce8dc-403d-4ab9-b326-d30ddee68e64","modification_date":"2025-02-12T15:19:23.710368+00:00","name":"tf-snap-stupefied-hellman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "535"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:31 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - d23d0635-76f4-4616-bacb-acf8dd065549
- status: 200 OK
- code: 200
- duration: 115.175708ms
- - id: 61
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f97824b7-3276-4224-b71a-d450304ed14c
- 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":"89f83395-b4cf-4fee-9853-833f24fdd971","name":"tf-vol-cranky-blackwell"},"creation_date":"2025-02-12T15:18:31.227612+00:00","error_details":null,"id":"f97824b7-3276-4224-b71a-d450304ed14c","modification_date":"2025-02-12T15:18:34.957281+00:00","name":"tf-snap-distracted-poincare","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":21000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "536"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:31 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 643cbd53-4c0f-4745-9e6b-7f12a2122048
- status: 200 OK
- code: 200
- duration: 128.166875ms
- - id: 62
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/4955169c-7666-48cb-9e27-7ee608b717d5
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 746
- uncompressed: false
- body: '{"image":{"arch":"x86_64","creation_date":"2025-02-12T15:19:28.932980+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"f97824b7-3276-4224-b71a-d450304ed14c","name":"tf-snap-distracted-poincare","size":21000000000,"volume_type":"b_ssd"}},"from_server":"","id":"4955169c-7666-48cb-9e27-7ee608b717d5","modification_date":"2025-02-12T15:19:28.932980+00:00","name":"tf-image-vigilant-hertz","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"1b0ce8dc-403d-4ab9-b326-d30ddee68e64","name":"tf-snap-stupefied-hellman","size":20000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "746"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:31 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 2e41e835-7324-4415-ba87-f33b7ac52c43
- status: 200 OK
- code: 200
- duration: 124.309833ms
- - id: 63
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/89f83395-b4cf-4fee-9853-833f24fdd971
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 445
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-12T15:18:30.774581+00:00","export_uri":null,"id":"89f83395-b4cf-4fee-9853-833f24fdd971","modification_date":"2025-02-12T15:18:34.957281+00:00","name":"tf-vol-cranky-blackwell","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":21000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "445"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:32 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 88e45850-d700-45b1-ab1e-977463eedc52
- status: 200 OK
- code: 200
- duration: 246.723917ms
- - id: 64
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1780c24c-59ed-4db8-bb22-7191af979336
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2269
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-12T15:18:31.373972+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-reverent-cerf","id":"1780c24c-59ed-4db8-bb22-7191af979336","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:44.425699+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5dbc71d9-cb05-4a0c-853d-0ba7a14d9c45","modification_date":"2024-10-14T09:05:44.425699+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":"781c70f1-db12-4aa7-a697-839e030ebfca","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:93:c4:43","maintenances":[],"modification_date":"2025-02-12T15:18:48.907477+00:00","name":"tf-srv-reverent-cerf","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-02-12T15:18:31.373972+00:00","export_uri":null,"id":"55312258-0bc4-449f-b2a3-e95fcb3fa094","modification_date":"2025-02-12T15:19:23.710368+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"1780c24c-59ed-4db8-bb22-7191af979336","name":"tf-srv-reverent-cerf"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2269"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:32 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - f4792745-a60e-4887-957a-b83be79d4005
- status: 200 OK
- code: 200
- duration: 315.729167ms
- - id: 65
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f97824b7-3276-4224-b71a-d450304ed14c
- 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":"89f83395-b4cf-4fee-9853-833f24fdd971","name":"tf-vol-cranky-blackwell"},"creation_date":"2025-02-12T15:18:31.227612+00:00","error_details":null,"id":"f97824b7-3276-4224-b71a-d450304ed14c","modification_date":"2025-02-12T15:18:34.957281+00:00","name":"tf-snap-distracted-poincare","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":21000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "536"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:32 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - d411e1c1-dd07-457b-b310-e98ee762f021
- status: 200 OK
- code: 200
- duration: 106.369458ms
- - id: 66
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/55312258-0bc4-449f-b2a3-e95fcb3fa094
- 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-02-12T15:18:31.373972+00:00","export_uri":null,"id":"55312258-0bc4-449f-b2a3-e95fcb3fa094","modification_date":"2025-02-12T15:19:23.710368+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"1780c24c-59ed-4db8-bb22-7191af979336","name":"tf-srv-reverent-cerf"},"size":20000000000,"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, 12 Feb 2025 15:19:32 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 2de61aba-4392-468c-a138-79fa83cb6212
- status: 200 OK
- code: 200
- duration: 156.966ms
- - id: 67
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1780c24c-59ed-4db8-bb22-7191af979336/user_data
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 17
- uncompressed: false
- body: '{"user_data":[]}'
- headers:
- Content-Length:
- - "17"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:32 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 3a9638db-a7c9-4161-9e4b-d261c43cc016
- status: 200 OK
- code: 200
- duration: 125.750209ms
- - id: 68
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1780c24c-59ed-4db8-bb22-7191af979336/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, 12 Feb 2025 15:19:32 GMT
- Link:
- - ; rel="last"
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 25244db1-f4fd-4270-ab24-83e6e067748b
- X-Total-Count:
- - "0"
- status: 200 OK
- code: 200
- duration: 118.440125ms
- - id: 69
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/1b0ce8dc-403d-4ab9-b326-d30ddee68e64
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 535
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"55312258-0bc4-449f-b2a3-e95fcb3fa094","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-02-12T15:18:56.896267+00:00","error_details":null,"id":"1b0ce8dc-403d-4ab9-b326-d30ddee68e64","modification_date":"2025-02-12T15:19:23.710368+00:00","name":"tf-snap-stupefied-hellman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "535"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:32 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 31bd0413-aeba-4027-832a-fb28f9cebbe3
- status: 200 OK
- code: 200
- duration: 113.740959ms
- - id: 70
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/4955169c-7666-48cb-9e27-7ee608b717d5
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 746
- uncompressed: false
- body: '{"image":{"arch":"x86_64","creation_date":"2025-02-12T15:19:28.932980+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"f97824b7-3276-4224-b71a-d450304ed14c","name":"tf-snap-distracted-poincare","size":21000000000,"volume_type":"b_ssd"}},"from_server":"","id":"4955169c-7666-48cb-9e27-7ee608b717d5","modification_date":"2025-02-12T15:19:28.932980+00:00","name":"tf-image-vigilant-hertz","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"1b0ce8dc-403d-4ab9-b326-d30ddee68e64","name":"tf-snap-stupefied-hellman","size":20000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "746"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:33 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - a2df5010-c38d-41cf-988d-1392b17e282f
- status: 200 OK
- code: 200
- duration: 107.77525ms
- - id: 71
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 128
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"name":"tf-vol-hopeful-visvesvaraya","project":"105bdce1-64c0-48ab-899d-868455867ecf","volume_type":"b_ssd","size":22000000000}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 449
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-12T15:19:33.645129+00:00","export_uri":null,"id":"9b2de5c3-e30b-447e-93e2-983fdba06000","modification_date":"2025-02-12T15:19:33.645129+00:00","name":"tf-vol-hopeful-visvesvaraya","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":22000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "449"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:33 GMT
- Location:
- - https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9b2de5c3-e30b-447e-93e2-983fdba06000
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 49178bc3-088a-465d-8f4d-4bd41fa85127
- status: 201 Created
- code: 201
- duration: 349.203084ms
- - id: 72
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9b2de5c3-e30b-447e-93e2-983fdba06000
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 449
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-12T15:19:33.645129+00:00","export_uri":null,"id":"9b2de5c3-e30b-447e-93e2-983fdba06000","modification_date":"2025-02-12T15:19:33.645129+00:00","name":"tf-vol-hopeful-visvesvaraya","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":22000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "449"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:33 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 5c38ed87-afe7-4ee3-a646-d7cdf217e965
- status: 200 OK
- code: 200
- duration: 607.614209ms
- - id: 73
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9b2de5c3-e30b-447e-93e2-983fdba06000
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 449
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-12T15:19:33.645129+00:00","export_uri":null,"id":"9b2de5c3-e30b-447e-93e2-983fdba06000","modification_date":"2025-02-12T15:19:33.645129+00:00","name":"tf-vol-hopeful-visvesvaraya","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":22000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "449"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:34 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 9308b081-6439-4923-8290-bf318de73b6d
- status: 200 OK
- code: 200
- duration: 115.592333ms
- - id: 74
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 129
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"name":"tf-snap-jolly-bose","volume_id":"9b2de5c3-e30b-447e-93e2-983fdba06000","project":"105bdce1-64c0-48ab-899d-868455867ecf"}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 845
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"9b2de5c3-e30b-447e-93e2-983fdba06000","name":"tf-vol-hopeful-visvesvaraya"},"creation_date":"2025-02-12T15:19:34.736767+00:00","error_details":null,"id":"57129456-dcee-482c-b4f2-7ba6d81c6439","modification_date":"2025-02-12T15:19:34.736767+00:00","name":"tf-snap-jolly-bose","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":22000000000,"state":"snapshotting","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"},"task":{"description":"volume_snapshot","href_from":"/snapshots","href_result":"snapshots/57129456-dcee-482c-b4f2-7ba6d81c6439","id":"d29b0c9a-1d12-4822-83b1-793fbc3bd06d","progress":0,"started_at":"2025-02-12T15:19:35.014149+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "845"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:35 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 38d06adb-03e3-4ff7-a073-a464387095de
- status: 201 Created
- code: 201
- duration: 863.502042ms
- - id: 75
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/57129456-dcee-482c-b4f2-7ba6d81c6439
- 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":"9b2de5c3-e30b-447e-93e2-983fdba06000","name":"tf-vol-hopeful-visvesvaraya"},"creation_date":"2025-02-12T15:19:34.736767+00:00","error_details":null,"id":"57129456-dcee-482c-b4f2-7ba6d81c6439","modification_date":"2025-02-12T15:19:34.736767+00:00","name":"tf-snap-jolly-bose","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":22000000000,"state":"snapshotting","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "534"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:35 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 9680235e-1eb1-4dca-b7a9-c1948022114d
- status: 200 OK
- code: 200
- duration: 116.928834ms
- - id: 76
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/57129456-dcee-482c-b4f2-7ba6d81c6439
- 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":"9b2de5c3-e30b-447e-93e2-983fdba06000","name":"tf-vol-hopeful-visvesvaraya"},"creation_date":"2025-02-12T15:19:34.736767+00:00","error_details":null,"id":"57129456-dcee-482c-b4f2-7ba6d81c6439","modification_date":"2025-02-12T15:19:37.900348+00:00","name":"tf-snap-jolly-bose","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":22000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "531"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:40 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 1a5abb7d-aed3-44f2-b6d5-c3a9690d53dc
- status: 200 OK
- code: 200
- duration: 108.176584ms
- - id: 77
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/57129456-dcee-482c-b4f2-7ba6d81c6439
- 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":"9b2de5c3-e30b-447e-93e2-983fdba06000","name":"tf-vol-hopeful-visvesvaraya"},"creation_date":"2025-02-12T15:19:34.736767+00:00","error_details":null,"id":"57129456-dcee-482c-b4f2-7ba6d81c6439","modification_date":"2025-02-12T15:19:37.900348+00:00","name":"tf-snap-jolly-bose","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":22000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "531"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:40 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 8e26d625-a9bf-4a79-9d2a-d8744e3b1e72
- status: 200 OK
- code: 200
- duration: 92.740708ms
- - id: 78
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/4955169c-7666-48cb-9e27-7ee608b717d5
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 746
- uncompressed: false
- body: '{"image":{"arch":"x86_64","creation_date":"2025-02-12T15:19:28.932980+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"f97824b7-3276-4224-b71a-d450304ed14c","name":"tf-snap-distracted-poincare","size":21000000000,"volume_type":"b_ssd"}},"from_server":"","id":"4955169c-7666-48cb-9e27-7ee608b717d5","modification_date":"2025-02-12T15:19:28.932980+00:00","name":"tf-image-vigilant-hertz","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"1b0ce8dc-403d-4ab9-b326-d30ddee68e64","name":"tf-snap-stupefied-hellman","size":20000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "746"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:40 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 460ecf5b-78e8-44cc-ba6d-69a95024be74
- status: 200 OK
- code: 200
- duration: 235.424ms
- - id: 79
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/4955169c-7666-48cb-9e27-7ee608b717d5
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 746
- uncompressed: false
- body: '{"image":{"arch":"x86_64","creation_date":"2025-02-12T15:19:28.932980+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"f97824b7-3276-4224-b71a-d450304ed14c","name":"tf-snap-distracted-poincare","size":21000000000,"volume_type":"b_ssd"}},"from_server":"","id":"4955169c-7666-48cb-9e27-7ee608b717d5","modification_date":"2025-02-12T15:19:28.932980+00:00","name":"tf-image-vigilant-hertz","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"1b0ce8dc-403d-4ab9-b326-d30ddee68e64","name":"tf-snap-stupefied-hellman","size":20000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "746"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:40 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - f4b96c48-7a5c-4add-993a-4ab5c615a519
- status: 200 OK
- code: 200
- duration: 136.5965ms
- - id: 80
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 128
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"name":"tf-image-vigilant-hertz","arch":"x86_64","extra_volumes":{"1":{"id":"57129456-dcee-482c-b4f2-7ba6d81c6439"}},"tags":[]}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/4955169c-7666-48cb-9e27-7ee608b717d5
- method: PATCH
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 737
- uncompressed: false
- body: '{"image":{"arch":"x86_64","creation_date":"2025-02-12T15:19:28.932980+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"57129456-dcee-482c-b4f2-7ba6d81c6439","name":"tf-snap-jolly-bose","size":22000000000,"volume_type":"b_ssd"}},"from_server":"","id":"4955169c-7666-48cb-9e27-7ee608b717d5","modification_date":"2025-02-12T15:19:28.932980+00:00","name":"tf-image-vigilant-hertz","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"1b0ce8dc-403d-4ab9-b326-d30ddee68e64","name":"tf-snap-stupefied-hellman","size":20000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "737"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:41 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - f6c455e6-aa3b-4db3-92ca-819f86f65c02
- status: 200 OK
- code: 200
- duration: 263.780334ms
- - id: 81
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/4955169c-7666-48cb-9e27-7ee608b717d5
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 737
- uncompressed: false
- body: '{"image":{"arch":"x86_64","creation_date":"2025-02-12T15:19:28.932980+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"57129456-dcee-482c-b4f2-7ba6d81c6439","name":"tf-snap-jolly-bose","size":22000000000,"volume_type":"b_ssd"}},"from_server":"","id":"4955169c-7666-48cb-9e27-7ee608b717d5","modification_date":"2025-02-12T15:19:28.932980+00:00","name":"tf-image-vigilant-hertz","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"1b0ce8dc-403d-4ab9-b326-d30ddee68e64","name":"tf-snap-stupefied-hellman","size":20000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "737"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:41 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - e93e807f-e7e6-42a5-9502-34ced54f7b3e
- status: 200 OK
- code: 200
- duration: 117.056458ms
- - id: 82
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/4955169c-7666-48cb-9e27-7ee608b717d5
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 737
- uncompressed: false
- body: '{"image":{"arch":"x86_64","creation_date":"2025-02-12T15:19:28.932980+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"57129456-dcee-482c-b4f2-7ba6d81c6439","name":"tf-snap-jolly-bose","size":22000000000,"volume_type":"b_ssd"}},"from_server":"","id":"4955169c-7666-48cb-9e27-7ee608b717d5","modification_date":"2025-02-12T15:19:28.932980+00:00","name":"tf-image-vigilant-hertz","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"1b0ce8dc-403d-4ab9-b326-d30ddee68e64","name":"tf-snap-stupefied-hellman","size":20000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "737"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:41 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - b883cf39-e72d-46b1-8497-3ce9ba6ebaf8
- status: 200 OK
- code: 200
- duration: 135.313583ms
- - id: 83
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/89f83395-b4cf-4fee-9853-833f24fdd971
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 445
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-12T15:18:30.774581+00:00","export_uri":null,"id":"89f83395-b4cf-4fee-9853-833f24fdd971","modification_date":"2025-02-12T15:18:34.957281+00:00","name":"tf-vol-cranky-blackwell","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":21000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "445"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:41 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 133e10b0-f579-47c7-b9cf-52173be1a82a
- status: 200 OK
- code: 200
- duration: 108.642375ms
- - id: 84
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9b2de5c3-e30b-447e-93e2-983fdba06000
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 449
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-12T15:19:33.645129+00:00","export_uri":null,"id":"9b2de5c3-e30b-447e-93e2-983fdba06000","modification_date":"2025-02-12T15:19:37.900348+00:00","name":"tf-vol-hopeful-visvesvaraya","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":22000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "449"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:41 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 721a606d-e7a8-45b4-8643-0f7784dd2b99
- status: 200 OK
- code: 200
- duration: 96.4465ms
- - id: 85
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1780c24c-59ed-4db8-bb22-7191af979336
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2269
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-12T15:18:31.373972+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-reverent-cerf","id":"1780c24c-59ed-4db8-bb22-7191af979336","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:44.425699+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5dbc71d9-cb05-4a0c-853d-0ba7a14d9c45","modification_date":"2024-10-14T09:05:44.425699+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":"781c70f1-db12-4aa7-a697-839e030ebfca","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:93:c4:43","maintenances":[],"modification_date":"2025-02-12T15:18:48.907477+00:00","name":"tf-srv-reverent-cerf","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-02-12T15:18:31.373972+00:00","export_uri":null,"id":"55312258-0bc4-449f-b2a3-e95fcb3fa094","modification_date":"2025-02-12T15:19:23.710368+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"1780c24c-59ed-4db8-bb22-7191af979336","name":"tf-srv-reverent-cerf"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2269"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:41 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - b5727184-5530-4962-ae7f-d6e782797765
- status: 200 OK
- code: 200
- duration: 284.29025ms
- - id: 86
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f97824b7-3276-4224-b71a-d450304ed14c
- 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":"89f83395-b4cf-4fee-9853-833f24fdd971","name":"tf-vol-cranky-blackwell"},"creation_date":"2025-02-12T15:18:31.227612+00:00","error_details":null,"id":"f97824b7-3276-4224-b71a-d450304ed14c","modification_date":"2025-02-12T15:18:34.957281+00:00","name":"tf-snap-distracted-poincare","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":21000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "536"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:42 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - f7e9f83e-9032-4b3b-848b-65703685f5f0
- status: 200 OK
- code: 200
- duration: 100.034084ms
- - id: 87
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/57129456-dcee-482c-b4f2-7ba6d81c6439
- 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":"9b2de5c3-e30b-447e-93e2-983fdba06000","name":"tf-vol-hopeful-visvesvaraya"},"creation_date":"2025-02-12T15:19:34.736767+00:00","error_details":null,"id":"57129456-dcee-482c-b4f2-7ba6d81c6439","modification_date":"2025-02-12T15:19:37.900348+00:00","name":"tf-snap-jolly-bose","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":22000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "531"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:42 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 78f4ee51-f088-4ea9-8ab4-913d5a5acef4
- status: 200 OK
- code: 200
- duration: 117.324125ms
- - id: 88
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/1b0ce8dc-403d-4ab9-b326-d30ddee68e64
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 535
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"55312258-0bc4-449f-b2a3-e95fcb3fa094","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-02-12T15:18:56.896267+00:00","error_details":null,"id":"1b0ce8dc-403d-4ab9-b326-d30ddee68e64","modification_date":"2025-02-12T15:19:23.710368+00:00","name":"tf-snap-stupefied-hellman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "535"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:42 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - b5d97f76-fb1d-4b22-bf95-59b8545f7abe
- status: 200 OK
- code: 200
- duration: 94.000875ms
- - id: 89
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/4955169c-7666-48cb-9e27-7ee608b717d5
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 737
- uncompressed: false
- body: '{"image":{"arch":"x86_64","creation_date":"2025-02-12T15:19:28.932980+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"57129456-dcee-482c-b4f2-7ba6d81c6439","name":"tf-snap-jolly-bose","size":22000000000,"volume_type":"b_ssd"}},"from_server":"","id":"4955169c-7666-48cb-9e27-7ee608b717d5","modification_date":"2025-02-12T15:19:28.932980+00:00","name":"tf-image-vigilant-hertz","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"1b0ce8dc-403d-4ab9-b326-d30ddee68e64","name":"tf-snap-stupefied-hellman","size":20000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "737"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:42 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 93bd4a4b-8f38-46bd-aba8-37b95478e3fe
- status: 200 OK
- code: 200
- duration: 120.669083ms
- - id: 90
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/89f83395-b4cf-4fee-9853-833f24fdd971
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 445
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-12T15:18:30.774581+00:00","export_uri":null,"id":"89f83395-b4cf-4fee-9853-833f24fdd971","modification_date":"2025-02-12T15:18:34.957281+00:00","name":"tf-vol-cranky-blackwell","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":21000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "445"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:42 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - a120892d-5f91-4731-9ebd-26054a27cebf
- status: 200 OK
- code: 200
- duration: 99.915041ms
- - id: 91
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9b2de5c3-e30b-447e-93e2-983fdba06000
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 449
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-12T15:19:33.645129+00:00","export_uri":null,"id":"9b2de5c3-e30b-447e-93e2-983fdba06000","modification_date":"2025-02-12T15:19:37.900348+00:00","name":"tf-vol-hopeful-visvesvaraya","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":22000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "449"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:42 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 729dc1bb-2f66-42f1-946f-826d5642a5f5
- status: 200 OK
- code: 200
- duration: 101.15675ms
- - id: 92
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f97824b7-3276-4224-b71a-d450304ed14c
- 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":"89f83395-b4cf-4fee-9853-833f24fdd971","name":"tf-vol-cranky-blackwell"},"creation_date":"2025-02-12T15:18:31.227612+00:00","error_details":null,"id":"f97824b7-3276-4224-b71a-d450304ed14c","modification_date":"2025-02-12T15:18:34.957281+00:00","name":"tf-snap-distracted-poincare","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":21000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "536"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:42 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 6a7c8294-c9d6-4c1d-b225-3eb38f4a13af
- status: 200 OK
- code: 200
- duration: 100.346209ms
- - id: 93
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/57129456-dcee-482c-b4f2-7ba6d81c6439
- 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":"9b2de5c3-e30b-447e-93e2-983fdba06000","name":"tf-vol-hopeful-visvesvaraya"},"creation_date":"2025-02-12T15:19:34.736767+00:00","error_details":null,"id":"57129456-dcee-482c-b4f2-7ba6d81c6439","modification_date":"2025-02-12T15:19:37.900348+00:00","name":"tf-snap-jolly-bose","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":22000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "531"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:42 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 6cbe1525-4c70-4bca-8812-88af235004f5
- status: 200 OK
- code: 200
- duration: 103.031667ms
- - id: 94
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1780c24c-59ed-4db8-bb22-7191af979336
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2269
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-12T15:18:31.373972+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-reverent-cerf","id":"1780c24c-59ed-4db8-bb22-7191af979336","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:44.425699+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5dbc71d9-cb05-4a0c-853d-0ba7a14d9c45","modification_date":"2024-10-14T09:05:44.425699+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":"781c70f1-db12-4aa7-a697-839e030ebfca","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:93:c4:43","maintenances":[],"modification_date":"2025-02-12T15:18:48.907477+00:00","name":"tf-srv-reverent-cerf","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-02-12T15:18:31.373972+00:00","export_uri":null,"id":"55312258-0bc4-449f-b2a3-e95fcb3fa094","modification_date":"2025-02-12T15:19:23.710368+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"1780c24c-59ed-4db8-bb22-7191af979336","name":"tf-srv-reverent-cerf"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2269"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:42 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 37b5c193-1415-4be7-bec1-37a3dae40b8f
- status: 200 OK
- code: 200
- duration: 225.191625ms
- - id: 95
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/55312258-0bc4-449f-b2a3-e95fcb3fa094
- 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-02-12T15:18:31.373972+00:00","export_uri":null,"id":"55312258-0bc4-449f-b2a3-e95fcb3fa094","modification_date":"2025-02-12T15:19:23.710368+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"1780c24c-59ed-4db8-bb22-7191af979336","name":"tf-srv-reverent-cerf"},"size":20000000000,"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, 12 Feb 2025 15:19:43 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - b107605c-1ad8-42b1-a256-99fd1a1e8bab
- status: 200 OK
- code: 200
- duration: 183.887375ms
- - id: 96
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1780c24c-59ed-4db8-bb22-7191af979336/user_data
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 17
- uncompressed: false
- body: '{"user_data":[]}'
- headers:
- Content-Length:
- - "17"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:43 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 74faff76-6bd2-44ec-88d4-c09c0ef75dc3
- status: 200 OK
- code: 200
- duration: 122.216625ms
- - id: 97
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1780c24c-59ed-4db8-bb22-7191af979336/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, 12 Feb 2025 15:19:43 GMT
- Link:
- - ; rel="last"
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - c8e9a62e-3778-42a6-8e63-c54db9b7ef5b
- X-Total-Count:
- - "0"
- status: 200 OK
- code: 200
- duration: 120.925042ms
- - id: 98
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/1b0ce8dc-403d-4ab9-b326-d30ddee68e64
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 535
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"55312258-0bc4-449f-b2a3-e95fcb3fa094","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-02-12T15:18:56.896267+00:00","error_details":null,"id":"1b0ce8dc-403d-4ab9-b326-d30ddee68e64","modification_date":"2025-02-12T15:19:23.710368+00:00","name":"tf-snap-stupefied-hellman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "535"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:43 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 8f7c11e1-a45e-4e4c-a0aa-eb473c4cecb9
- status: 200 OK
- code: 200
- duration: 100.895917ms
- - id: 99
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/4955169c-7666-48cb-9e27-7ee608b717d5
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 737
- uncompressed: false
- body: '{"image":{"arch":"x86_64","creation_date":"2025-02-12T15:19:28.932980+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"57129456-dcee-482c-b4f2-7ba6d81c6439","name":"tf-snap-jolly-bose","size":22000000000,"volume_type":"b_ssd"}},"from_server":"","id":"4955169c-7666-48cb-9e27-7ee608b717d5","modification_date":"2025-02-12T15:19:28.932980+00:00","name":"tf-image-vigilant-hertz","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"1b0ce8dc-403d-4ab9-b326-d30ddee68e64","name":"tf-snap-stupefied-hellman","size":20000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "737"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:43 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - a2b2ba6a-a726-4982-b46d-0f255d4e7b08
- status: 200 OK
- code: 200
- duration: 135.875167ms
- - id: 100
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/4955169c-7666-48cb-9e27-7ee608b717d5
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 737
- uncompressed: false
- body: '{"image":{"arch":"x86_64","creation_date":"2025-02-12T15:19:28.932980+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"57129456-dcee-482c-b4f2-7ba6d81c6439","name":"tf-snap-jolly-bose","size":22000000000,"volume_type":"b_ssd"}},"from_server":"","id":"4955169c-7666-48cb-9e27-7ee608b717d5","modification_date":"2025-02-12T15:19:28.932980+00:00","name":"tf-image-vigilant-hertz","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"1b0ce8dc-403d-4ab9-b326-d30ddee68e64","name":"tf-snap-stupefied-hellman","size":20000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "737"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:44 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 2237de39-70f6-497d-a646-c5616fe07e58
- status: 200 OK
- code: 200
- duration: 113.17575ms
- - id: 101
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f97824b7-3276-4224-b71a-d450304ed14c
- 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":"89f83395-b4cf-4fee-9853-833f24fdd971","name":"tf-vol-cranky-blackwell"},"creation_date":"2025-02-12T15:18:31.227612+00:00","error_details":null,"id":"f97824b7-3276-4224-b71a-d450304ed14c","modification_date":"2025-02-12T15:18:34.957281+00:00","name":"tf-snap-distracted-poincare","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":21000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "536"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:44 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 01f44002-d23e-4a17-b992-558525378f08
- status: 200 OK
- code: 200
- duration: 134.513166ms
- - id: 102
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f97824b7-3276-4224-b71a-d450304ed14c
- method: DELETE
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 0
- uncompressed: false
- body: ""
- headers:
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:44 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 7b3a7126-7b91-4302-9a89-cf0abaed08f7
- status: 204 No Content
- code: 204
- duration: 211.162ms
- - id: 103
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f97824b7-3276-4224-b71a-d450304ed14c
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 145
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"f97824b7-3276-4224-b71a-d450304ed14c","type":"not_found"}'
- headers:
- Content-Length:
- - "145"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:44 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - e016c0c7-8335-4d0f-bfe9-2946dbb02079
- status: 404 Not Found
- code: 404
- duration: 53.814917ms
- - id: 104
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/4955169c-7666-48cb-9e27-7ee608b717d5
- method: DELETE
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 0
- uncompressed: false
- body: ""
- headers:
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:44 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 4d8029e6-04b9-4251-aecc-8e47c66ac6e6
- status: 204 No Content
- code: 204
- duration: 311.906167ms
- - id: 105
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/4955169c-7666-48cb-9e27-7ee608b717d5
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 142
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_image","resource_id":"4955169c-7666-48cb-9e27-7ee608b717d5","type":"not_found"}'
- headers:
- Content-Length:
- - "142"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:44 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 2e8f7fa4-bfda-481d-a3f8-cb184ed91193
- status: 404 Not Found
- code: 404
- duration: 54.586709ms
- - id: 106
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/89f83395-b4cf-4fee-9853-833f24fdd971
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 445
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-12T15:18:30.774581+00:00","export_uri":null,"id":"89f83395-b4cf-4fee-9853-833f24fdd971","modification_date":"2025-02-12T15:18:34.957281+00:00","name":"tf-vol-cranky-blackwell","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":21000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "445"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:44 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - ffcf370d-8cdb-4be3-96b3-dc0b73814c44
- status: 200 OK
- code: 200
- duration: 117.469334ms
- - id: 107
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/1b0ce8dc-403d-4ab9-b326-d30ddee68e64
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 535
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"55312258-0bc4-449f-b2a3-e95fcb3fa094","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-02-12T15:18:56.896267+00:00","error_details":null,"id":"1b0ce8dc-403d-4ab9-b326-d30ddee68e64","modification_date":"2025-02-12T15:19:23.710368+00:00","name":"tf-snap-stupefied-hellman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "535"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:44 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - d0e832e3-732a-4ccd-9c63-4c09be1f2917
- status: 200 OK
- code: 200
- duration: 100.954292ms
- - id: 108
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/57129456-dcee-482c-b4f2-7ba6d81c6439
- 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":"9b2de5c3-e30b-447e-93e2-983fdba06000","name":"tf-vol-hopeful-visvesvaraya"},"creation_date":"2025-02-12T15:19:34.736767+00:00","error_details":null,"id":"57129456-dcee-482c-b4f2-7ba6d81c6439","modification_date":"2025-02-12T15:19:37.900348+00:00","name":"tf-snap-jolly-bose","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":22000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "531"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:44 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 3c1a8a32-777f-4c44-aa5f-0abf193df7ed
- status: 200 OK
- code: 200
- duration: 124.626166ms
- - id: 109
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/89f83395-b4cf-4fee-9853-833f24fdd971
- method: DELETE
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 0
- uncompressed: false
- body: ""
- headers:
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:44 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - d3f62259-f710-4255-8414-846960e89f96
- status: 204 No Content
- code: 204
- duration: 184.764625ms
- - id: 110
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/57129456-dcee-482c-b4f2-7ba6d81c6439
- method: DELETE
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 0
- uncompressed: false
- body: ""
- headers:
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:44 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 3a727250-dac4-4e11-9f39-834ffe68b274
- status: 204 No Content
- code: 204
- duration: 190.994292ms
- - id: 111
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/1b0ce8dc-403d-4ab9-b326-d30ddee68e64
- method: DELETE
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 0
- uncompressed: false
- body: ""
- headers:
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:44 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 01ab8b84-02b1-49c9-a5c7-db8d12bb2dc9
- status: 204 No Content
- code: 204
- duration: 217.528625ms
- - id: 112
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/57129456-dcee-482c-b4f2-7ba6d81c6439
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 145
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"57129456-dcee-482c-b4f2-7ba6d81c6439","type":"not_found"}'
- headers:
- Content-Length:
- - "145"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:44 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - c9693b61-0ba8-45a0-af20-9c5b524638c4
- status: 404 Not Found
- code: 404
- duration: 55.780959ms
- - id: 113
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/1b0ce8dc-403d-4ab9-b326-d30ddee68e64
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 145
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"1b0ce8dc-403d-4ab9-b326-d30ddee68e64","type":"not_found"}'
- headers:
- Content-Length:
- - "145"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:44 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - b4731225-b711-461e-90a0-8cec4ebf4e21
- status: 404 Not Found
- code: 404
- duration: 52.388209ms
- - id: 114
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9b2de5c3-e30b-447e-93e2-983fdba06000
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 449
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-12T15:19:33.645129+00:00","export_uri":null,"id":"9b2de5c3-e30b-447e-93e2-983fdba06000","modification_date":"2025-02-12T15:19:37.900348+00:00","name":"tf-vol-hopeful-visvesvaraya","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":22000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "449"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:44 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 56eff888-c836-4720-a1fb-ef2f25d7a581
- status: 200 OK
- code: 200
- duration: 107.120875ms
- - id: 115
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1780c24c-59ed-4db8-bb22-7191af979336
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2269
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-12T15:18:31.373972+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-reverent-cerf","id":"1780c24c-59ed-4db8-bb22-7191af979336","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:44.425699+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5dbc71d9-cb05-4a0c-853d-0ba7a14d9c45","modification_date":"2024-10-14T09:05:44.425699+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":"781c70f1-db12-4aa7-a697-839e030ebfca","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:93:c4:43","maintenances":[],"modification_date":"2025-02-12T15:18:48.907477+00:00","name":"tf-srv-reverent-cerf","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-02-12T15:18:31.373972+00:00","export_uri":null,"id":"55312258-0bc4-449f-b2a3-e95fcb3fa094","modification_date":"2025-02-12T15:19:23.710368+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"1780c24c-59ed-4db8-bb22-7191af979336","name":"tf-srv-reverent-cerf"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2269"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:44 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 5d670b22-d2b8-4594-8c7e-11a7fae19838
- status: 200 OK
- code: 200
- duration: 187.786667ms
- - id: 116
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9b2de5c3-e30b-447e-93e2-983fdba06000
- method: DELETE
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 0
- uncompressed: false
- body: ""
- headers:
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:45 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 536cbbc0-4196-4bd0-b71b-94b59c06a272
- status: 204 No Content
- code: 204
- duration: 196.287416ms
- - id: 117
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 21
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"action":"poweroff"}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1780c24c-59ed-4db8-bb22-7191af979336/action
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 352
- uncompressed: false
- body: '{"task":{"description":"server_poweroff","href_from":"/servers/1780c24c-59ed-4db8-bb22-7191af979336/action","href_result":"/servers/1780c24c-59ed-4db8-bb22-7191af979336","id":"06510ded-c1f5-454f-b6d1-73de437bff9b","progress":0,"started_at":"2025-02-12T15:19:45.582145+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "352"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:45 GMT
- Location:
- - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/06510ded-c1f5-454f-b6d1-73de437bff9b
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 14fbe969-2198-465f-9055-dd038f6b3d58
- status: 202 Accepted
- code: 202
- duration: 451.300833ms
- - id: 118
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1780c24c-59ed-4db8-bb22-7191af979336
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2229
- uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-12T15:18:31.373972+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-reverent-cerf","id":"1780c24c-59ed-4db8-bb22-7191af979336","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:44.425699+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5dbc71d9-cb05-4a0c-853d-0ba7a14d9c45","modification_date":"2024-10-14T09:05:44.425699+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":"781c70f1-db12-4aa7-a697-839e030ebfca","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:93:c4:43","maintenances":[],"modification_date":"2025-02-12T15:19:45.212098+00:00","name":"tf-srv-reverent-cerf","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-02-12T15:18:31.373972+00:00","export_uri":null,"id":"55312258-0bc4-449f-b2a3-e95fcb3fa094","modification_date":"2025-02-12T15:19:23.710368+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"1780c24c-59ed-4db8-bb22-7191af979336","name":"tf-srv-reverent-cerf"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2229"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:45 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 54f75ad3-8520-4ecc-b7d4-bdf258d0e34d
- status: 200 OK
- code: 200
- duration: 279.724166ms
- - id: 119
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1780c24c-59ed-4db8-bb22-7191af979336
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2229
- uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-12T15:18:31.373972+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-reverent-cerf","id":"1780c24c-59ed-4db8-bb22-7191af979336","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:44.425699+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5dbc71d9-cb05-4a0c-853d-0ba7a14d9c45","modification_date":"2024-10-14T09:05:44.425699+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":"781c70f1-db12-4aa7-a697-839e030ebfca","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:93:c4:43","maintenances":[],"modification_date":"2025-02-12T15:19:45.212098+00:00","name":"tf-srv-reverent-cerf","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-02-12T15:18:31.373972+00:00","export_uri":null,"id":"55312258-0bc4-449f-b2a3-e95fcb3fa094","modification_date":"2025-02-12T15:19:23.710368+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"1780c24c-59ed-4db8-bb22-7191af979336","name":"tf-srv-reverent-cerf"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2229"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:50 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 72699f98-ba05-411c-b811-637455209f9a
- status: 200 OK
- code: 200
- duration: 190.8525ms
- - id: 120
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1780c24c-59ed-4db8-bb22-7191af979336
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2229
- uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-12T15:18:31.373972+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-reverent-cerf","id":"1780c24c-59ed-4db8-bb22-7191af979336","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:44.425699+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5dbc71d9-cb05-4a0c-853d-0ba7a14d9c45","modification_date":"2024-10-14T09:05:44.425699+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":"781c70f1-db12-4aa7-a697-839e030ebfca","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:93:c4:43","maintenances":[],"modification_date":"2025-02-12T15:19:45.212098+00:00","name":"tf-srv-reverent-cerf","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-02-12T15:18:31.373972+00:00","export_uri":null,"id":"55312258-0bc4-449f-b2a3-e95fcb3fa094","modification_date":"2025-02-12T15:19:23.710368+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"1780c24c-59ed-4db8-bb22-7191af979336","name":"tf-srv-reverent-cerf"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2229"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:19:56 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - be3f669e-f814-4485-87fe-3e052506474d
- status: 200 OK
- code: 200
- duration: 177.60525ms
- - id: 121
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1780c24c-59ed-4db8-bb22-7191af979336
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2229
- uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-12T15:18:31.373972+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-reverent-cerf","id":"1780c24c-59ed-4db8-bb22-7191af979336","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:44.425699+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5dbc71d9-cb05-4a0c-853d-0ba7a14d9c45","modification_date":"2024-10-14T09:05:44.425699+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":"781c70f1-db12-4aa7-a697-839e030ebfca","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:93:c4:43","maintenances":[],"modification_date":"2025-02-12T15:19:45.212098+00:00","name":"tf-srv-reverent-cerf","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-02-12T15:18:31.373972+00:00","export_uri":null,"id":"55312258-0bc4-449f-b2a3-e95fcb3fa094","modification_date":"2025-02-12T15:19:23.710368+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"1780c24c-59ed-4db8-bb22-7191af979336","name":"tf-srv-reverent-cerf"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2229"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:20:01 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 59c32937-f939-42db-8092-18e30d97857f
- status: 200 OK
- code: 200
- duration: 206.172458ms
- - id: 122
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1780c24c-59ed-4db8-bb22-7191af979336
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2229
- uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-12T15:18:31.373972+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-reverent-cerf","id":"1780c24c-59ed-4db8-bb22-7191af979336","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:44.425699+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5dbc71d9-cb05-4a0c-853d-0ba7a14d9c45","modification_date":"2024-10-14T09:05:44.425699+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":"781c70f1-db12-4aa7-a697-839e030ebfca","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:93:c4:43","maintenances":[],"modification_date":"2025-02-12T15:19:45.212098+00:00","name":"tf-srv-reverent-cerf","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-02-12T15:18:31.373972+00:00","export_uri":null,"id":"55312258-0bc4-449f-b2a3-e95fcb3fa094","modification_date":"2025-02-12T15:19:23.710368+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"1780c24c-59ed-4db8-bb22-7191af979336","name":"tf-srv-reverent-cerf"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2229"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:20:06 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 25b2b384-5f2f-4df5-9dbf-e30af387bdaa
- status: 200 OK
- code: 200
- duration: 304.077875ms
- - id: 123
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1780c24c-59ed-4db8-bb22-7191af979336
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2112
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-12T15:18:31.373972+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-reverent-cerf","id":"1780c24c-59ed-4db8-bb22-7191af979336","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:44.425699+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5dbc71d9-cb05-4a0c-853d-0ba7a14d9c45","modification_date":"2024-10-14T09:05:44.425699+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":"781c70f1-db12-4aa7-a697-839e030ebfca","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:93:c4:43","maintenances":[],"modification_date":"2025-02-12T15:20:11.585790+00:00","name":"tf-srv-reverent-cerf","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-02-12T15:18:31.373972+00:00","export_uri":null,"id":"55312258-0bc4-449f-b2a3-e95fcb3fa094","modification_date":"2025-02-12T15:19:23.710368+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"1780c24c-59ed-4db8-bb22-7191af979336","name":"tf-srv-reverent-cerf"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2112"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:20:11 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 047dafc4-e4e7-464b-9614-7566cefe85fe
- status: 200 OK
- code: 200
- duration: 163.757125ms
- - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1780c24c-59ed-4db8-bb22-7191af979336
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2112
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-12T15:18:31.373972+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-reverent-cerf","id":"1780c24c-59ed-4db8-bb22-7191af979336","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:44.425699+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5dbc71d9-cb05-4a0c-853d-0ba7a14d9c45","modification_date":"2024-10-14T09:05:44.425699+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":"781c70f1-db12-4aa7-a697-839e030ebfca","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:93:c4:43","maintenances":[],"modification_date":"2025-02-12T15:20:11.585790+00:00","name":"tf-srv-reverent-cerf","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-02-12T15:18:31.373972+00:00","export_uri":null,"id":"55312258-0bc4-449f-b2a3-e95fcb3fa094","modification_date":"2025-02-12T15:19:23.710368+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"1780c24c-59ed-4db8-bb22-7191af979336","name":"tf-srv-reverent-cerf"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2112"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:20:11 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 24f55271-9dcd-4165-8cdc-cd574f6615be
- status: 200 OK
- code: 200
- duration: 162.676458ms
- - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1780c24c-59ed-4db8-bb22-7191af979336
- method: DELETE
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 0
- uncompressed: false
- body: ""
- headers:
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:20:11 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 4308d020-7635-4ffe-8278-2bcd3748e9e6
- status: 204 No Content
- code: 204
- duration: 172.441125ms
- - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1780c24c-59ed-4db8-bb22-7191af979336
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 143
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_server","resource_id":"1780c24c-59ed-4db8-bb22-7191af979336","type":"not_found"}'
- headers:
- Content-Length:
- - "143"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:20:12 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 329f635c-2356-4975-91cf-37f5a12dea36
- status: 404 Not Found
- code: 404
- duration: 122.989583ms
- - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/55312258-0bc4-449f-b2a3-e95fcb3fa094
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 446
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-12T15:18:31.373972+00:00","export_uri":null,"id":"55312258-0bc4-449f-b2a3-e95fcb3fa094","modification_date":"2025-02-12T15:20:12.165474+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "446"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:20:12 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - cf4eb145-b786-4a0a-a190-ccb3ceea1a8a
- status: 200 OK
- code: 200
- duration: 93.57925ms
- - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/55312258-0bc4-449f-b2a3-e95fcb3fa094
- method: DELETE
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 0
- uncompressed: false
- body: ""
- headers:
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:20:12 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - d281482a-b909-4c97-b4c5-e39934fb34c2
- status: 204 No Content
- code: 204
- duration: 156.732584ms
- - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/4955169c-7666-48cb-9e27-7ee608b717d5
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 142
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_image","resource_id":"4955169c-7666-48cb-9e27-7ee608b717d5","type":"not_found"}'
- headers:
- Content-Length:
- - "142"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:20:12 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 4802329e-c61f-4dba-bc59-4bca81fd0302
- status: 404 Not Found
- code: 404
- duration: 65.869334ms
- - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f97824b7-3276-4224-b71a-d450304ed14c
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 145
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"f97824b7-3276-4224-b71a-d450304ed14c","type":"not_found"}'
- headers:
- Content-Length:
- - "145"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:20:12 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 5e90937c-787d-4e69-996d-25e0133937df
- status: 404 Not Found
- code: 404
- duration: 62.367417ms
- - 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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/57129456-dcee-482c-b4f2-7ba6d81c6439
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 145
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"57129456-dcee-482c-b4f2-7ba6d81c6439","type":"not_found"}'
- headers:
- Content-Length:
- - "145"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:20:12 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 59b67a71-4cb7-4d0a-8db2-b7c791ffbb93
- status: 404 Not Found
- code: 404
- duration: 73.376917ms
- - id: 132
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/1b0ce8dc-403d-4ab9-b326-d30ddee68e64
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 145
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"1b0ce8dc-403d-4ab9-b326-d30ddee68e64","type":"not_found"}'
- headers:
- Content-Length:
- - "145"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:20:12 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 02ccab5e-bd56-430a-a510-e4a1e578c6b4
- status: 404 Not Found
- code: 404
- duration: 58.182541ms
- - id: 133
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/89f83395-b4cf-4fee-9853-833f24fdd971
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 143
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"89f83395-b4cf-4fee-9853-833f24fdd971","type":"not_found"}'
- headers:
- Content-Length:
- - "143"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:20:12 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 0cd05a60-2cfe-4342-a700-021af4ce2181
- status: 404 Not Found
- code: 404
- duration: 68.170375ms
- - id: 134
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9b2de5c3-e30b-447e-93e2-983fdba06000
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 143
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"9b2de5c3-e30b-447e-93e2-983fdba06000","type":"not_found"}'
- headers:
- Content-Length:
- - "143"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:20:12 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 0db30cbc-d55f-40c0-8f5a-be8892fb70c8
- status: 404 Not Found
- code: 404
- duration: 72.595167ms
- - id: 135
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1780c24c-59ed-4db8-bb22-7191af979336
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 143
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_server","resource_id":"1780c24c-59ed-4db8-bb22-7191af979336","type":"not_found"}'
- headers:
- Content-Length:
- - "143"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 12 Feb 2025 15:20:13 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - a0cf5275-b2dd-4f4e-ae51-afdd8ddff5d6
- status: 404 Not Found
- code: 404
- duration: 93.342542ms
diff --git a/internal/services/instance/testdata/image-server.cassette.yaml b/internal/services/instance/testdata/image-server.cassette.yaml
index ec697d0599..ce515dfa17 100644
--- a/internal/services/instance/testdata/image-server.cassette.yaml
+++ b/internal/services/instance/testdata/image-server.cassette.yaml
@@ -16,7 +16,7 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.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:
@@ -25,22 +25,22 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 35639
+ content_length: 38951
uncompressed: false
- body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":6710886400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":13421772800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":6710886400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":6710886400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":13421772800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":6710886400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":13421772800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":6710886400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":13421772800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}'
+ body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}'
headers:
Content-Length:
- - "35639"
+ - "38951"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:01:31 GMT
+ - Thu, 22 May 2025 15:17:15 GMT
Link:
- ; rel="next",; rel="last"
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -48,12 +48,12 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 29ede2d0-9af8-452c-b140-87b273ab7f13
+ - c818625e-a54f-4b30-8a65-769350a51961
X-Total-Count:
- - "68"
+ - "71"
status: 200 OK
code: 200
- duration: 291.870875ms
+ duration: 94.147856ms
- id: 1
request:
proto: HTTP/1.1
@@ -69,7 +69,7 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.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:
@@ -78,22 +78,22 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 13164
+ content_length: 16732
uncompressed: false
- body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":1,"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":200000000000}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":100000000000}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":50000000000}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":25000000000}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":200000000000}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":100000000000}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":50000000000}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":1000000000000,"min_size":500000000000}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":200000000000}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":300000000000}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":400000000000}}}}'
+ body: '{"servers":{"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":200000000000}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":100000000000}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":50000000000}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":25000000000}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":200000000000}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":100000000000}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":50000000000}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":1000000000000,"min_size":500000000000}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":200000000000}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":300000000000}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":400000000000}}}}'
headers:
Content-Length:
- - "13164"
+ - "16732"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:01:31 GMT
+ - Thu, 22 May 2025 15:17:15 GMT
Link:
- ; rel="first",; rel="previous",; rel="last"
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -101,12 +101,12 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ed7d5645-dbf4-40e6-88a5-0ecc4a98f1cd
+ - 2ed5bc01-4994-4d57-8bb3-01d61bde63dd
X-Total-Count:
- - "68"
+ - "71"
status: 200 OK
code: 200
- duration: 73.086042ms
+ duration: 123.539973ms
- id: 2
request:
proto: HTTP/1.1
@@ -122,7 +122,7 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1
method: GET
response:
@@ -131,20 +131,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1296
+ content_length: 1269
uncompressed: false
- body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"57509e82-ac3b-49b7-9970-97b60f40ff72","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"arm64","compatible_commercial_types":["AMP2-C1","AMP2-C2","AMP2-C4","AMP2-C8","AMP2-C12","AMP2-C24","AMP2-C48","AMP2-C60","COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"9b647e1e-253a-41e7-8c15-911c622ee2dc","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}'
+ body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10","POP2-48C-192G","POP2-HC-48C-96G","POP2-HM-48C-384G"],"id":"2dd98c87-6ea2-49d9-8420-feafa534e478","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"arm64","compatible_commercial_types":["AMP2-C1","AMP2-C2","AMP2-C4","AMP2-C8","AMP2-C12","AMP2-C24","AMP2-C48","AMP2-C60","COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"db71f917-bb74-4ccf-bf62-d5f1ce23a2a6","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}'
headers:
Content-Length:
- - "1296"
+ - "1269"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:01:32 GMT
+ - Thu, 22 May 2025 15:17:16 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -152,28 +152,28 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5259171f-d30a-46ef-b6ea-2de3e13ded92
+ - b66c5c65-6723-4512-9c89-7dc644447b53
status: 200 OK
code: 200
- duration: 101.9515ms
+ duration: 154.285358ms
- id: 3
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 234
+ content_length: 232
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: '{"name":"tf-srv-tender-lumiere","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"57509e82-ac3b-49b7-9970-97b60f40ff72","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}'
+ body: '{"name":"tf-srv-sharp-joliot","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"2dd98c87-6ea2-49d9-8420-feafa534e478","volumes":{"0":{"boot":false}},"boot_type":"local","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552"}'
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
+ - scaleway-sdk-go/v1.0.0-beta.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
response:
@@ -182,22 +182,22 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1672
+ content_length: 1712
uncompressed: false
- body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-12T16:01:32.495034+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-tender-lumiere","id":"de141f80-bcb9-4d1b-b91e-0c71769c128f","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:93:c7:23","maintenances":[],"modification_date":"2025-02-12T16:01:32.495034+00:00","name":"tf-srv-tender-lumiere","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"0aa2eadf-770f-41d8-84a6-e3929a361816","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
+ body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-05-22T15:17:16.277627+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sharp-joliot","id":"dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b0:1c:5f","maintenances":[],"modification_date":"2025-05-22T15:17:16.277627+00:00","name":"tf-srv-sharp-joliot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"379e909a-dbc1-4b87-9b11-a038a5488d43","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "1672"
+ - "1712"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:01:32 GMT
+ - Thu, 22 May 2025 15:17:16 GMT
Location:
- - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de141f80-bcb9-4d1b-b91e-0c71769c128f
+ - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -205,10 +205,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c4877413-761c-4be1-b8ab-469bd8ad890d
+ - 43d82c83-77c1-4948-8a52-18f87270aed5
status: 201 Created
code: 201
- duration: 853.383667ms
+ duration: 644.973943ms
- id: 4
request:
proto: HTTP/1.1
@@ -224,8 +224,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de141f80-bcb9-4d1b-b91e-0c71769c128f
+ - scaleway-sdk-go/v1.0.0-beta.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/dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc
method: GET
response:
proto: HTTP/2.0
@@ -233,20 +233,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1672
+ content_length: 1712
uncompressed: false
- body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-12T16:01:32.495034+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-tender-lumiere","id":"de141f80-bcb9-4d1b-b91e-0c71769c128f","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:93:c7:23","maintenances":[],"modification_date":"2025-02-12T16:01:32.495034+00:00","name":"tf-srv-tender-lumiere","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"0aa2eadf-770f-41d8-84a6-e3929a361816","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
+ body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-05-22T15:17:16.277627+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sharp-joliot","id":"dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b0:1c:5f","maintenances":[],"modification_date":"2025-05-22T15:17:16.277627+00:00","name":"tf-srv-sharp-joliot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"379e909a-dbc1-4b87-9b11-a038a5488d43","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "1672"
+ - "1712"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:01:32 GMT
+ - Thu, 22 May 2025 15:17:16 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -254,10 +254,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c85de0eb-2fd3-4323-a455-e4928180d47a
+ - b61b3284-6808-480e-ab02-83c7ce60843b
status: 200 OK
code: 200
- duration: 213.127958ms
+ duration: 206.865085ms
- id: 5
request:
proto: HTTP/1.1
@@ -273,8 +273,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de141f80-bcb9-4d1b-b91e-0c71769c128f
+ - scaleway-sdk-go/v1.0.0-beta.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/dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc
method: GET
response:
proto: HTTP/2.0
@@ -282,20 +282,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1672
+ content_length: 1712
uncompressed: false
- body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-12T16:01:32.495034+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-tender-lumiere","id":"de141f80-bcb9-4d1b-b91e-0c71769c128f","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:93:c7:23","maintenances":[],"modification_date":"2025-02-12T16:01:32.495034+00:00","name":"tf-srv-tender-lumiere","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"0aa2eadf-770f-41d8-84a6-e3929a361816","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
+ body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-05-22T15:17:16.277627+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sharp-joliot","id":"dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b0:1c:5f","maintenances":[],"modification_date":"2025-05-22T15:17:16.277627+00:00","name":"tf-srv-sharp-joliot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"379e909a-dbc1-4b87-9b11-a038a5488d43","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "1672"
+ - "1712"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:01:33 GMT
+ - Thu, 22 May 2025 15:17:17 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -303,10 +303,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a275b74a-9bb0-4d65-bb0a-761eb0950220
+ - 851c7f8a-0f12-430f-bcd4-ab6d1fb83165
status: 200 OK
code: 200
- duration: 174.736042ms
+ duration: 187.072758ms
- id: 6
request:
proto: HTTP/1.1
@@ -322,8 +322,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0aa2eadf-770f-41d8-84a6-e3929a361816
+ - scaleway-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/379e909a-dbc1-4b87-9b11-a038a5488d43
method: GET
response:
proto: HTTP/2.0
@@ -331,20 +331,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 701
+ content_length: 682
uncompressed: false
- body: '{"created_at":"2025-02-12T16:01:32.745747Z","id":"0aa2eadf-770f-41d8-84a6-e3929a361816","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"703a3bad-5fc4-450a-9b35-c128312df5f5","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-02-12T16:01:32.745747Z","id":"b8c235c0-4ff6-4222-bb46-f2d56ea57648","product_resource_id":"de141f80-bcb9-4d1b-b91e-0c71769c128f","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-02-12T16:01:32.745747Z","zone":"fr-par-1"}'
+ body: '{"created_at":"2025-05-22T15:17:16.391721Z","id":"379e909a-dbc1-4b87-9b11-a038a5488d43","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-22T15:17:16.391721Z","id":"6dfa1ff1-476d-4fdf-a766-c2a24afba17a","product_resource_id":"dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-05-22T15:17:16.391721Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "701"
+ - "682"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:01:33 GMT
+ - Thu, 22 May 2025 15:17:17 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -352,10 +352,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4f6668c4-eade-4da5-af74-584d8782c49c
+ - 5ea4fa1d-b52e-4b5e-b957-41f3d116aaad
status: 200 OK
code: 200
- duration: 83.739584ms
+ duration: 124.063765ms
- id: 7
request:
proto: HTTP/1.1
@@ -373,8 +373,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de141f80-bcb9-4d1b-b91e-0c71769c128f/action
+ - scaleway-sdk-go/v1.0.0-beta.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/dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc/action
method: POST
response:
proto: HTTP/2.0
@@ -384,7 +384,7 @@ interactions:
trailer: {}
content_length: 357
uncompressed: false
- body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/de141f80-bcb9-4d1b-b91e-0c71769c128f/action","href_result":"/servers/de141f80-bcb9-4d1b-b91e-0c71769c128f","id":"2403f599-1fae-43ab-8ef9-41b277032f51","progress":0,"started_at":"2025-02-12T16:01:33.899545+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}'
+ body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc/action","href_result":"/servers/dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc","id":"838e88c9-dec0-4a70-bfb1-3200b926b15c","progress":0,"started_at":"2025-05-22T15:17:17.460400+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}'
headers:
Content-Length:
- "357"
@@ -393,11 +393,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:01:33 GMT
+ - Thu, 22 May 2025 15:17:17 GMT
Location:
- - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/2403f599-1fae-43ab-8ef9-41b277032f51
+ - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/838e88c9-dec0-4a70-bfb1-3200b926b15c
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -405,10 +405,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3ba33a58-3888-4d6d-9d90-25da2a500db0
+ - 94f671d4-10f5-44d5-a044-281fcfb081ba
status: 202 Accepted
code: 202
- duration: 352.708292ms
+ duration: 293.634633ms
- id: 8
request:
proto: HTTP/1.1
@@ -424,8 +424,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de141f80-bcb9-4d1b-b91e-0c71769c128f
+ - scaleway-sdk-go/v1.0.0-beta.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/dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc
method: GET
response:
proto: HTTP/2.0
@@ -433,20 +433,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1694
+ content_length: 1734
uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-12T16:01:32.495034+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-tender-lumiere","id":"de141f80-bcb9-4d1b-b91e-0c71769c128f","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:93:c7:23","maintenances":[],"modification_date":"2025-02-12T16:01:33.624411+00:00","name":"tf-srv-tender-lumiere","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"0aa2eadf-770f-41d8-84a6-e3929a361816","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
+ body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-05-22T15:17:16.277627+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sharp-joliot","id":"dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b0:1c:5f","maintenances":[],"modification_date":"2025-05-22T15:17:17.291541+00:00","name":"tf-srv-sharp-joliot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"379e909a-dbc1-4b87-9b11-a038a5488d43","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "1694"
+ - "1734"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:01:34 GMT
+ - Thu, 22 May 2025 15:17:17 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -454,10 +454,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f0316016-8a43-491d-b197-c2d64d6d46da
+ - c22002e5-5a91-4ca7-a62e-714a510924e5
status: 200 OK
code: 200
- duration: 170.408209ms
+ duration: 186.237179ms
- id: 9
request:
proto: HTTP/1.1
@@ -473,8 +473,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de141f80-bcb9-4d1b-b91e-0c71769c128f
+ - scaleway-sdk-go/v1.0.0-beta.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/dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc
method: GET
response:
proto: HTTP/2.0
@@ -482,20 +482,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1827
+ content_length: 1869
uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-12T16:01:32.495034+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-tender-lumiere","id":"de141f80-bcb9-4d1b-b91e-0c71769c128f","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"801","node_id":"5","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:c7:23","maintenances":[],"modification_date":"2025-02-12T16:01:38.899249+00:00","name":"tf-srv-tender-lumiere","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"0aa2eadf-770f-41d8-84a6-e3929a361816","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
+ body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-05-22T15:17:16.277627+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sharp-joliot","id":"dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1301","node_id":"45","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b0:1c:5f","maintenances":[],"modification_date":"2025-05-22T15:17:21.323522+00:00","name":"tf-srv-sharp-joliot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"379e909a-dbc1-4b87-9b11-a038a5488d43","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "1827"
+ - "1869"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:01:39 GMT
+ - Thu, 22 May 2025 15:17:22 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -503,10 +503,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ad3ead89-e72e-4aac-a6d5-ad310dae0e74
+ - b095e501-4e62-40b2-a123-ff0d4f8398cb
status: 200 OK
code: 200
- duration: 233.200583ms
+ duration: 256.270826ms
- id: 10
request:
proto: HTTP/1.1
@@ -522,8 +522,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de141f80-bcb9-4d1b-b91e-0c71769c128f
+ - scaleway-sdk-go/v1.0.0-beta.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/dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc
method: GET
response:
proto: HTTP/2.0
@@ -531,20 +531,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1827
+ content_length: 1869
uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-12T16:01:32.495034+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-tender-lumiere","id":"de141f80-bcb9-4d1b-b91e-0c71769c128f","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"801","node_id":"5","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:c7:23","maintenances":[],"modification_date":"2025-02-12T16:01:38.899249+00:00","name":"tf-srv-tender-lumiere","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"0aa2eadf-770f-41d8-84a6-e3929a361816","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
+ body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-05-22T15:17:16.277627+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sharp-joliot","id":"dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1301","node_id":"45","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b0:1c:5f","maintenances":[],"modification_date":"2025-05-22T15:17:21.323522+00:00","name":"tf-srv-sharp-joliot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"379e909a-dbc1-4b87-9b11-a038a5488d43","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "1827"
+ - "1869"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:01:39 GMT
+ - Thu, 22 May 2025 15:17:23 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -552,10 +552,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 01ce8158-243d-44b7-97e3-b8df96684e32
+ - 9b785873-ac15-4f1c-b339-f2162ef76cd1
status: 200 OK
code: 200
- duration: 226.656ms
+ duration: 245.659558ms
- id: 11
request:
proto: HTTP/1.1
@@ -571,8 +571,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0aa2eadf-770f-41d8-84a6-e3929a361816
+ - scaleway-sdk-go/v1.0.0-beta.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/379e909a-dbc1-4b87-9b11-a038a5488d43
method: GET
response:
proto: HTTP/2.0
@@ -582,7 +582,7 @@ interactions:
trailer: {}
content_length: 143
uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"0aa2eadf-770f-41d8-84a6-e3929a361816","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"379e909a-dbc1-4b87-9b11-a038a5488d43","type":"not_found"}'
headers:
Content-Length:
- "143"
@@ -591,9 +591,9 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:01:39 GMT
+ - Thu, 22 May 2025 15:17:23 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -601,10 +601,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 195ff258-d500-41d8-a00a-9dba9f9b378f
+ - 665165d1-e844-4f42-9024-d8c629fb724e
status: 404 Not Found
code: 404
- duration: 62.229167ms
+ duration: 76.777353ms
- id: 12
request:
proto: HTTP/1.1
@@ -620,8 +620,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0aa2eadf-770f-41d8-84a6-e3929a361816
+ - scaleway-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/379e909a-dbc1-4b87-9b11-a038a5488d43
method: GET
response:
proto: HTTP/2.0
@@ -629,20 +629,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 701
+ content_length: 682
uncompressed: false
- body: '{"created_at":"2025-02-12T16:01:32.745747Z","id":"0aa2eadf-770f-41d8-84a6-e3929a361816","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"703a3bad-5fc4-450a-9b35-c128312df5f5","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-02-12T16:01:32.745747Z","id":"b8c235c0-4ff6-4222-bb46-f2d56ea57648","product_resource_id":"de141f80-bcb9-4d1b-b91e-0c71769c128f","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-02-12T16:01:32.745747Z","zone":"fr-par-1"}'
+ body: '{"created_at":"2025-05-22T15:17:16.391721Z","id":"379e909a-dbc1-4b87-9b11-a038a5488d43","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-22T15:17:16.391721Z","id":"6dfa1ff1-476d-4fdf-a766-c2a24afba17a","product_resource_id":"dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-05-22T15:17:16.391721Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "701"
+ - "682"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:01:39 GMT
+ - Thu, 22 May 2025 15:17:23 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -650,10 +650,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 53fb6ce1-e673-49e6-8be3-985c62265d82
+ - a22fa2d8-48d3-49f8-b8cb-2adddf4c4665
status: 200 OK
code: 200
- duration: 86.112208ms
+ duration: 169.444911ms
- id: 13
request:
proto: HTTP/1.1
@@ -669,8 +669,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de141f80-bcb9-4d1b-b91e-0c71769c128f/user_data
+ - scaleway-sdk-go/v1.0.0-beta.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/dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc/user_data
method: GET
response:
proto: HTTP/2.0
@@ -689,9 +689,9 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:01:39 GMT
+ - Thu, 22 May 2025 15:17:23 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -699,10 +699,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 581ca698-3647-439a-8c8c-685fbd3ea858
+ - 2e7919c0-bb34-4f70-9d55-78fe2b7cad66
status: 200 OK
code: 200
- duration: 130.9975ms
+ duration: 276.648803ms
- id: 14
request:
proto: HTTP/1.1
@@ -718,8 +718,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de141f80-bcb9-4d1b-b91e-0c71769c128f/private_nics
+ - scaleway-sdk-go/v1.0.0-beta.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/dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc/private_nics
method: GET
response:
proto: HTTP/2.0
@@ -738,11 +738,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:01:39 GMT
+ - Thu, 22 May 2025 15:17:23 GMT
Link:
- - ; rel="last"
+ - ; rel="last"
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -750,30 +750,30 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - bd26d665-53e0-4b2e-9b42-d8d55e2dca07
+ - 110033d1-b9b0-412c-9c97-4f755c06148f
X-Total-Count:
- "0"
status: 200 OK
code: 200
- duration: 114.752ms
+ duration: 246.751207ms
- id: 15
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 153
+ content_length: 149
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: '{"volume_id":"0aa2eadf-770f-41d8-84a6-e3929a361816","name":"tf-snapshot-confident-wescoff","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[]}'
+ body: '{"volume_id":"379e909a-dbc1-4b87-9b11-a038a5488d43","name":"tf-snapshot-goofy-ritchie","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.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
+ - scaleway-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
response:
@@ -782,20 +782,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 476
+ content_length: 458
uncompressed: false
- body: '{"class":"sbs","created_at":"2025-02-12T16:01:40.148231Z","id":"e8ceb46c-9003-4eb1-a5fc-53465a1574d5","name":"tf-snapshot-confident-wescoff","parent_volume":{"id":"0aa2eadf-770f-41d8-84a6-e3929a361816","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-02-12T16:01:40.148231Z","zone":"fr-par-1"}'
+ body: '{"class":"sbs","created_at":"2025-05-22T15:17:24.063480Z","id":"5ee31a23-5197-430c-878d-0d74fcb32b71","name":"tf-snapshot-goofy-ritchie","parent_volume":{"id":"379e909a-dbc1-4b87-9b11-a038a5488d43","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-05-22T15:17:24.063480Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "476"
+ - "458"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:01:40 GMT
+ - Thu, 22 May 2025 15:17:24 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -803,10 +803,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1f0bb75d-ccf9-4039-a2a2-976f7ca2fd43
+ - 12299a33-609c-4788-9f3b-08c3af56ad91
status: 200 OK
code: 200
- duration: 405.391625ms
+ duration: 245.063319ms
- id: 16
request:
proto: HTTP/1.1
@@ -822,8 +822,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/e8ceb46c-9003-4eb1-a5fc-53465a1574d5
+ - scaleway-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/5ee31a23-5197-430c-878d-0d74fcb32b71
method: GET
response:
proto: HTTP/2.0
@@ -831,20 +831,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 707
+ content_length: 684
uncompressed: false
- body: '{"class":"sbs","created_at":"2025-02-12T16:01:40.148231Z","id":"e8ceb46c-9003-4eb1-a5fc-53465a1574d5","name":"tf-snapshot-confident-wescoff","parent_volume":{"id":"0aa2eadf-770f-41d8-84a6-e3929a361816","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-02-12T16:01:40.178092Z","id":"00505db2-8b91-4c25-9b6e-006d87467341","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-02-12T16:01:40.148231Z","zone":"fr-par-1"}'
+ body: '{"class":"sbs","created_at":"2025-05-22T15:17:24.063480Z","id":"5ee31a23-5197-430c-878d-0d74fcb32b71","name":"tf-snapshot-goofy-ritchie","parent_volume":{"id":"379e909a-dbc1-4b87-9b11-a038a5488d43","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-22T15:17:24.108682Z","id":"7da3e6d9-a494-4d5f-ae9e-0be9f9969938","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-05-22T15:17:24.063480Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "707"
+ - "684"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:01:40 GMT
+ - Thu, 22 May 2025 15:17:24 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -852,10 +852,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 33837354-8d4b-4b94-9ac3-5a61b818223d
+ - f6380fcd-1dbd-4dab-a7ff-e2bfa77a4c2c
status: 200 OK
code: 200
- duration: 142.530459ms
+ duration: 246.179103ms
- id: 17
request:
proto: HTTP/1.1
@@ -871,8 +871,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/e8ceb46c-9003-4eb1-a5fc-53465a1574d5
+ - scaleway-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/5ee31a23-5197-430c-878d-0d74fcb32b71
method: GET
response:
proto: HTTP/2.0
@@ -880,20 +880,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 707
+ content_length: 684
uncompressed: false
- body: '{"class":"sbs","created_at":"2025-02-12T16:01:40.148231Z","id":"e8ceb46c-9003-4eb1-a5fc-53465a1574d5","name":"tf-snapshot-confident-wescoff","parent_volume":{"id":"0aa2eadf-770f-41d8-84a6-e3929a361816","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-02-12T16:01:40.178092Z","id":"00505db2-8b91-4c25-9b6e-006d87467341","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-02-12T16:01:40.148231Z","zone":"fr-par-1"}'
+ body: '{"class":"sbs","created_at":"2025-05-22T15:17:24.063480Z","id":"5ee31a23-5197-430c-878d-0d74fcb32b71","name":"tf-snapshot-goofy-ritchie","parent_volume":{"id":"379e909a-dbc1-4b87-9b11-a038a5488d43","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-22T15:17:24.108682Z","id":"7da3e6d9-a494-4d5f-ae9e-0be9f9969938","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-05-22T15:17:24.063480Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "707"
+ - "684"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:01:45 GMT
+ - Thu, 22 May 2025 15:17:29 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -901,10 +901,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b9ed95c0-c3fe-4902-ac72-49fbfd8b1139
+ - 4df09156-cbd1-4710-8491-7880e2d34e4f
status: 200 OK
code: 200
- duration: 123.693375ms
+ duration: 151.561745ms
- id: 18
request:
proto: HTTP/1.1
@@ -920,8 +920,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/e8ceb46c-9003-4eb1-a5fc-53465a1574d5
+ - scaleway-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/5ee31a23-5197-430c-878d-0d74fcb32b71
method: GET
response:
proto: HTTP/2.0
@@ -929,20 +929,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 707
+ content_length: 684
uncompressed: false
- body: '{"class":"sbs","created_at":"2025-02-12T16:01:40.148231Z","id":"e8ceb46c-9003-4eb1-a5fc-53465a1574d5","name":"tf-snapshot-confident-wescoff","parent_volume":{"id":"0aa2eadf-770f-41d8-84a6-e3929a361816","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-02-12T16:01:40.178092Z","id":"00505db2-8b91-4c25-9b6e-006d87467341","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-02-12T16:01:40.148231Z","zone":"fr-par-1"}'
+ body: '{"class":"sbs","created_at":"2025-05-22T15:17:24.063480Z","id":"5ee31a23-5197-430c-878d-0d74fcb32b71","name":"tf-snapshot-goofy-ritchie","parent_volume":{"id":"379e909a-dbc1-4b87-9b11-a038a5488d43","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-22T15:17:24.108682Z","id":"7da3e6d9-a494-4d5f-ae9e-0be9f9969938","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-05-22T15:17:24.063480Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "707"
+ - "684"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:01:50 GMT
+ - Thu, 22 May 2025 15:17:34 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -950,10 +950,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 66ca1518-a270-49c9-90c9-ae42c26d6803
+ - 17ee65df-02a4-476d-b65f-c02ed6397e8b
status: 200 OK
code: 200
- duration: 371.656709ms
+ duration: 151.413558ms
- id: 19
request:
proto: HTTP/1.1
@@ -969,8 +969,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/e8ceb46c-9003-4eb1-a5fc-53465a1574d5
+ - scaleway-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/5ee31a23-5197-430c-878d-0d74fcb32b71
method: GET
response:
proto: HTTP/2.0
@@ -978,20 +978,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 707
+ content_length: 684
uncompressed: false
- body: '{"class":"sbs","created_at":"2025-02-12T16:01:40.148231Z","id":"e8ceb46c-9003-4eb1-a5fc-53465a1574d5","name":"tf-snapshot-confident-wescoff","parent_volume":{"id":"0aa2eadf-770f-41d8-84a6-e3929a361816","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-02-12T16:01:40.178092Z","id":"00505db2-8b91-4c25-9b6e-006d87467341","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-02-12T16:01:40.148231Z","zone":"fr-par-1"}'
+ body: '{"class":"sbs","created_at":"2025-05-22T15:17:24.063480Z","id":"5ee31a23-5197-430c-878d-0d74fcb32b71","name":"tf-snapshot-goofy-ritchie","parent_volume":{"id":"379e909a-dbc1-4b87-9b11-a038a5488d43","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-22T15:17:24.108682Z","id":"7da3e6d9-a494-4d5f-ae9e-0be9f9969938","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-05-22T15:17:24.063480Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "707"
+ - "684"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:01:56 GMT
+ - Thu, 22 May 2025 15:17:39 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -999,10 +999,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 034d3029-3091-4671-8247-a4fda3a7a7e3
+ - e7652479-76d6-4d20-b147-214ad1ddc280
status: 200 OK
code: 200
- duration: 104.734291ms
+ duration: 110.517139ms
- id: 20
request:
proto: HTTP/1.1
@@ -1018,8 +1018,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/e8ceb46c-9003-4eb1-a5fc-53465a1574d5
+ - scaleway-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/5ee31a23-5197-430c-878d-0d74fcb32b71
method: GET
response:
proto: HTTP/2.0
@@ -1027,20 +1027,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 707
+ content_length: 684
uncompressed: false
- body: '{"class":"sbs","created_at":"2025-02-12T16:01:40.148231Z","id":"e8ceb46c-9003-4eb1-a5fc-53465a1574d5","name":"tf-snapshot-confident-wescoff","parent_volume":{"id":"0aa2eadf-770f-41d8-84a6-e3929a361816","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-02-12T16:01:40.178092Z","id":"00505db2-8b91-4c25-9b6e-006d87467341","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-02-12T16:01:40.148231Z","zone":"fr-par-1"}'
+ body: '{"class":"sbs","created_at":"2025-05-22T15:17:24.063480Z","id":"5ee31a23-5197-430c-878d-0d74fcb32b71","name":"tf-snapshot-goofy-ritchie","parent_volume":{"id":"379e909a-dbc1-4b87-9b11-a038a5488d43","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-22T15:17:24.108682Z","id":"7da3e6d9-a494-4d5f-ae9e-0be9f9969938","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-05-22T15:17:24.063480Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "707"
+ - "684"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:01 GMT
+ - Thu, 22 May 2025 15:17:45 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -1048,10 +1048,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9c451da0-7a08-4eda-92c4-7fc0efc0a1f8
+ - fea7fff2-55d1-4b79-8564-796d932dad9b
status: 200 OK
code: 200
- duration: 414.812875ms
+ duration: 182.471839ms
- id: 21
request:
proto: HTTP/1.1
@@ -1067,8 +1067,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/e8ceb46c-9003-4eb1-a5fc-53465a1574d5
+ - scaleway-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/5ee31a23-5197-430c-878d-0d74fcb32b71
method: GET
response:
proto: HTTP/2.0
@@ -1076,20 +1076,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 707
+ content_length: 684
uncompressed: false
- body: '{"class":"sbs","created_at":"2025-02-12T16:01:40.148231Z","id":"e8ceb46c-9003-4eb1-a5fc-53465a1574d5","name":"tf-snapshot-confident-wescoff","parent_volume":{"id":"0aa2eadf-770f-41d8-84a6-e3929a361816","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-02-12T16:01:40.178092Z","id":"00505db2-8b91-4c25-9b6e-006d87467341","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-02-12T16:01:40.148231Z","zone":"fr-par-1"}'
+ body: '{"class":"sbs","created_at":"2025-05-22T15:17:24.063480Z","id":"5ee31a23-5197-430c-878d-0d74fcb32b71","name":"tf-snapshot-goofy-ritchie","parent_volume":{"id":"379e909a-dbc1-4b87-9b11-a038a5488d43","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-22T15:17:24.108682Z","id":"7da3e6d9-a494-4d5f-ae9e-0be9f9969938","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-05-22T15:17:24.063480Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "707"
+ - "684"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:06 GMT
+ - Thu, 22 May 2025 15:17:51 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -1097,10 +1097,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 964ba839-6490-4cf3-b78d-33a6d35290e8
+ - c942b228-2afb-41f5-8eef-e83dc5de9bb8
status: 200 OK
code: 200
- duration: 113.655125ms
+ duration: 1.029275582s
- id: 22
request:
proto: HTTP/1.1
@@ -1116,8 +1116,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/e8ceb46c-9003-4eb1-a5fc-53465a1574d5
+ - scaleway-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/5ee31a23-5197-430c-878d-0d74fcb32b71
method: GET
response:
proto: HTTP/2.0
@@ -1125,20 +1125,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 707
+ content_length: 684
uncompressed: false
- body: '{"class":"sbs","created_at":"2025-02-12T16:01:40.148231Z","id":"e8ceb46c-9003-4eb1-a5fc-53465a1574d5","name":"tf-snapshot-confident-wescoff","parent_volume":{"id":"0aa2eadf-770f-41d8-84a6-e3929a361816","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-02-12T16:01:40.178092Z","id":"00505db2-8b91-4c25-9b6e-006d87467341","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-02-12T16:01:40.148231Z","zone":"fr-par-1"}'
+ body: '{"class":"sbs","created_at":"2025-05-22T15:17:24.063480Z","id":"5ee31a23-5197-430c-878d-0d74fcb32b71","name":"tf-snapshot-goofy-ritchie","parent_volume":{"id":"379e909a-dbc1-4b87-9b11-a038a5488d43","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-22T15:17:24.108682Z","id":"7da3e6d9-a494-4d5f-ae9e-0be9f9969938","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-05-22T15:17:24.063480Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "707"
+ - "684"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:11 GMT
+ - Thu, 22 May 2025 15:17:56 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -1146,10 +1146,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9c372e8e-450e-4f89-883a-875182252713
+ - 78e80a3a-0129-41f3-b1f1-2a808d4d6a9f
status: 200 OK
code: 200
- duration: 104.922875ms
+ duration: 118.681812ms
- id: 23
request:
proto: HTTP/1.1
@@ -1165,8 +1165,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/e8ceb46c-9003-4eb1-a5fc-53465a1574d5
+ - scaleway-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/5ee31a23-5197-430c-878d-0d74fcb32b71
method: GET
response:
proto: HTTP/2.0
@@ -1174,20 +1174,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 477
+ content_length: 684
uncompressed: false
- body: '{"class":"sbs","created_at":"2025-02-12T16:01:40.148231Z","id":"e8ceb46c-9003-4eb1-a5fc-53465a1574d5","name":"tf-snapshot-confident-wescoff","parent_volume":{"id":"0aa2eadf-770f-41d8-84a6-e3929a361816","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-02-12T16:01:40.148231Z","zone":"fr-par-1"}'
+ body: '{"class":"sbs","created_at":"2025-05-22T15:17:24.063480Z","id":"5ee31a23-5197-430c-878d-0d74fcb32b71","name":"tf-snapshot-goofy-ritchie","parent_volume":{"id":"379e909a-dbc1-4b87-9b11-a038a5488d43","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-22T15:17:24.108682Z","id":"7da3e6d9-a494-4d5f-ae9e-0be9f9969938","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-05-22T15:17:24.063480Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "477"
+ - "684"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:16 GMT
+ - Thu, 22 May 2025 15:18:01 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -1195,10 +1195,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 539b35b1-d51b-4712-804f-300efe79bbf5
+ - b482fbb6-c189-4ee8-bf51-a0f71aa53109
status: 200 OK
code: 200
- duration: 114.017ms
+ duration: 148.373058ms
- id: 24
request:
proto: HTTP/1.1
@@ -1214,8 +1214,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/e8ceb46c-9003-4eb1-a5fc-53465a1574d5
+ - scaleway-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/5ee31a23-5197-430c-878d-0d74fcb32b71
method: GET
response:
proto: HTTP/2.0
@@ -1223,20 +1223,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 477
+ content_length: 684
uncompressed: false
- body: '{"class":"sbs","created_at":"2025-02-12T16:01:40.148231Z","id":"e8ceb46c-9003-4eb1-a5fc-53465a1574d5","name":"tf-snapshot-confident-wescoff","parent_volume":{"id":"0aa2eadf-770f-41d8-84a6-e3929a361816","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-02-12T16:01:40.148231Z","zone":"fr-par-1"}'
+ body: '{"class":"sbs","created_at":"2025-05-22T15:17:24.063480Z","id":"5ee31a23-5197-430c-878d-0d74fcb32b71","name":"tf-snapshot-goofy-ritchie","parent_volume":{"id":"379e909a-dbc1-4b87-9b11-a038a5488d43","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-22T15:17:24.108682Z","id":"7da3e6d9-a494-4d5f-ae9e-0be9f9969938","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-05-22T15:17:24.063480Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "477"
+ - "684"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:17 GMT
+ - Thu, 22 May 2025 15:18:06 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -1244,28 +1244,126 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 10aa8011-4b16-48fd-bc0b-77040982f382
+ - 4185165b-be71-486a-b6c0-4e897ea5270e
status: 200 OK
code: 200
- duration: 127.865667ms
+ duration: 357.153183ms
- id: 25
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 192
+ content_length: 0
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: '{"name":"tf-image-cranky-boyd","root_volume":"e8ceb46c-9003-4eb1-a5fc-53465a1574d5","arch":"x86_64","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["test_remove_tags"],"public":false}'
+ body: ""
form: {}
headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/5ee31a23-5197-430c-878d-0d74fcb32b71
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 459
+ uncompressed: false
+ body: '{"class":"sbs","created_at":"2025-05-22T15:17:24.063480Z","id":"5ee31a23-5197-430c-878d-0d74fcb32b71","name":"tf-snapshot-goofy-ritchie","parent_volume":{"id":"379e909a-dbc1-4b87-9b11-a038a5488d43","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-05-22T15:17:24.063480Z","zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "459"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
+ Date:
+ - Thu, 22 May 2025 15:18:11 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-2;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 3a126ae5-2279-480a-a3ce-f4bc3c3c679a
+ status: 200 OK
+ code: 200
+ duration: 177.211023ms
+ - id: 26
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
+ - scaleway-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/5ee31a23-5197-430c-878d-0d74fcb32b71
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 459
+ uncompressed: false
+ body: '{"class":"sbs","created_at":"2025-05-22T15:17:24.063480Z","id":"5ee31a23-5197-430c-878d-0d74fcb32b71","name":"tf-snapshot-goofy-ritchie","parent_volume":{"id":"379e909a-dbc1-4b87-9b11-a038a5488d43","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-05-22T15:17:24.063480Z","zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "459"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 22 May 2025 15:18:11 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-2;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 04b0addd-ed8a-475a-899b-6ac78343bf48
+ status: 200 OK
+ code: 200
+ duration: 104.541361ms
+ - id: 27
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 199
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: '{"name":"tf-image-xenodochial-fermat","root_volume":"5ee31a23-5197-430c-878d-0d74fcb32b71","arch":"x86_64","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":["test_remove_tags"],"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
method: POST
response:
@@ -1274,22 +1372,22 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 598
+ content_length: 605
uncompressed: false
- body: '{"image":{"arch":"x86_64","creation_date":"2025-02-12T16:02:17.190841+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"775987a3-b39a-414c-b482-9b098f631d1e","modification_date":"2025-02-12T16:02:17.190841+00:00","name":"tf-image-cranky-boyd","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"e8ceb46c-9003-4eb1-a5fc-53465a1574d5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":["test_remove_tags"],"zone":"fr-par-1"}}'
+ body: '{"image":{"arch":"x86_64","creation_date":"2025-05-22T15:18:12.133089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"f000cd61-4bac-41d3-b9ec-1de6aa209d31","modification_date":"2025-05-22T15:18:12.133089+00:00","name":"tf-image-xenodochial-fermat","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","public":false,"root_volume":{"id":"5ee31a23-5197-430c-878d-0d74fcb32b71","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":["test_remove_tags"],"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "598"
+ - "605"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:17 GMT
+ - Thu, 22 May 2025 15:18:12 GMT
Location:
- - https://api.scaleway.com/instance/v1/zones/fr-par-1/images/775987a3-b39a-414c-b482-9b098f631d1e
+ - https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f000cd61-4bac-41d3-b9ec-1de6aa209d31
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -1297,11 +1395,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 88e5046d-c6b5-426f-9d50-80e4d9ad5306
+ - e2ca8692-7071-419e-8f70-9402435c49ef
status: 201 Created
code: 201
- duration: 517.448125ms
- - id: 26
+ duration: 340.383066ms
+ - id: 28
request:
proto: HTTP/1.1
proto_major: 1
@@ -1316,8 +1414,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/775987a3-b39a-414c-b482-9b098f631d1e
+ - scaleway-sdk-go/v1.0.0-beta.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/f000cd61-4bac-41d3-b9ec-1de6aa209d31
method: GET
response:
proto: HTTP/2.0
@@ -1325,20 +1423,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 598
+ content_length: 605
uncompressed: false
- body: '{"image":{"arch":"x86_64","creation_date":"2025-02-12T16:02:17.190841+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"775987a3-b39a-414c-b482-9b098f631d1e","modification_date":"2025-02-12T16:02:17.190841+00:00","name":"tf-image-cranky-boyd","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"e8ceb46c-9003-4eb1-a5fc-53465a1574d5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":["test_remove_tags"],"zone":"fr-par-1"}}'
+ body: '{"image":{"arch":"x86_64","creation_date":"2025-05-22T15:18:12.133089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"f000cd61-4bac-41d3-b9ec-1de6aa209d31","modification_date":"2025-05-22T15:18:12.133089+00:00","name":"tf-image-xenodochial-fermat","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","public":false,"root_volume":{"id":"5ee31a23-5197-430c-878d-0d74fcb32b71","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":["test_remove_tags"],"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "598"
+ - "605"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:17 GMT
+ - Thu, 22 May 2025 15:18:12 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -1346,11 +1444,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9157514c-c220-4cd4-9503-6417f0700be0
+ - 58fc5b18-e5f2-4c9d-ac09-ea056449ee2e
status: 200 OK
code: 200
- duration: 124.698333ms
- - id: 27
+ duration: 93.040936ms
+ - id: 29
request:
proto: HTTP/1.1
proto_major: 1
@@ -1365,8 +1463,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/775987a3-b39a-414c-b482-9b098f631d1e
+ - scaleway-sdk-go/v1.0.0-beta.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/f000cd61-4bac-41d3-b9ec-1de6aa209d31
method: GET
response:
proto: HTTP/2.0
@@ -1374,20 +1472,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 598
+ content_length: 605
uncompressed: false
- body: '{"image":{"arch":"x86_64","creation_date":"2025-02-12T16:02:17.190841+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"775987a3-b39a-414c-b482-9b098f631d1e","modification_date":"2025-02-12T16:02:17.190841+00:00","name":"tf-image-cranky-boyd","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"e8ceb46c-9003-4eb1-a5fc-53465a1574d5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":["test_remove_tags"],"zone":"fr-par-1"}}'
+ body: '{"image":{"arch":"x86_64","creation_date":"2025-05-22T15:18:12.133089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"f000cd61-4bac-41d3-b9ec-1de6aa209d31","modification_date":"2025-05-22T15:18:12.133089+00:00","name":"tf-image-xenodochial-fermat","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","public":false,"root_volume":{"id":"5ee31a23-5197-430c-878d-0d74fcb32b71","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":["test_remove_tags"],"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "598"
+ - "605"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:17 GMT
+ - Thu, 22 May 2025 15:18:12 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -1395,11 +1493,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 931f9a0d-1396-41ac-aa7a-bf3264c563e2
+ - d8a1f0e4-06da-4ba9-b412-3a100b9f0600
status: 200 OK
code: 200
- duration: 686.262041ms
- - id: 28
+ duration: 101.845872ms
+ - id: 30
request:
proto: HTTP/1.1
proto_major: 1
@@ -1414,8 +1512,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de141f80-bcb9-4d1b-b91e-0c71769c128f
+ - scaleway-sdk-go/v1.0.0-beta.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/dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc
method: GET
response:
proto: HTTP/2.0
@@ -1423,20 +1521,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1827
+ content_length: 1869
uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-12T16:01:32.495034+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-tender-lumiere","id":"de141f80-bcb9-4d1b-b91e-0c71769c128f","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"801","node_id":"5","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:c7:23","maintenances":[],"modification_date":"2025-02-12T16:01:38.899249+00:00","name":"tf-srv-tender-lumiere","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"0aa2eadf-770f-41d8-84a6-e3929a361816","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
+ body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-05-22T15:17:16.277627+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sharp-joliot","id":"dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1301","node_id":"45","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b0:1c:5f","maintenances":[],"modification_date":"2025-05-22T15:17:21.323522+00:00","name":"tf-srv-sharp-joliot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"379e909a-dbc1-4b87-9b11-a038a5488d43","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "1827"
+ - "1869"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:18 GMT
+ - Thu, 22 May 2025 15:18:12 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -1444,11 +1542,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f369b86a-ca14-44e2-9e94-7c631f996eb1
+ - 2ed20780-6c40-4b43-bc7b-3fc91ef7d659
status: 200 OK
code: 200
- duration: 244.213958ms
- - id: 29
+ duration: 243.581001ms
+ - id: 31
request:
proto: HTTP/1.1
proto_major: 1
@@ -1463,8 +1561,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/e8ceb46c-9003-4eb1-a5fc-53465a1574d5
+ - scaleway-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/5ee31a23-5197-430c-878d-0d74fcb32b71
method: GET
response:
proto: HTTP/2.0
@@ -1472,20 +1570,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 703
+ content_length: 680
uncompressed: false
- body: '{"class":"sbs","created_at":"2025-02-12T16:01:40.148231Z","id":"e8ceb46c-9003-4eb1-a5fc-53465a1574d5","name":"tf-snapshot-confident-wescoff","parent_volume":{"id":"0aa2eadf-770f-41d8-84a6-e3929a361816","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-02-12T16:02:17.250835Z","id":"b11f2295-91a3-4560-b2c6-e4a98774a0da","product_resource_id":"775987a3-b39a-414c-b482-9b098f631d1e","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-02-12T16:02:17.250835Z","zone":"fr-par-1"}'
+ body: '{"class":"sbs","created_at":"2025-05-22T15:17:24.063480Z","id":"5ee31a23-5197-430c-878d-0d74fcb32b71","name":"tf-snapshot-goofy-ritchie","parent_volume":{"id":"379e909a-dbc1-4b87-9b11-a038a5488d43","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-22T15:18:12.181553Z","id":"a88ecbf9-fd76-4e38-9e81-8e4c8173f697","product_resource_id":"f000cd61-4bac-41d3-b9ec-1de6aa209d31","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-05-22T15:18:12.181553Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "703"
+ - "680"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:18 GMT
+ - Thu, 22 May 2025 15:18:13 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -1493,11 +1591,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9916cebd-cc5f-481b-9180-82e3faa8a320
+ - 2bf69ea1-3f2a-406f-8034-a7d7c0e23c41
status: 200 OK
code: 200
- duration: 100.348625ms
- - id: 30
+ duration: 94.04999ms
+ - id: 32
request:
proto: HTTP/1.1
proto_major: 1
@@ -1512,8 +1610,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/775987a3-b39a-414c-b482-9b098f631d1e
+ - scaleway-sdk-go/v1.0.0-beta.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/f000cd61-4bac-41d3-b9ec-1de6aa209d31
method: GET
response:
proto: HTTP/2.0
@@ -1521,20 +1619,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 598
+ content_length: 605
uncompressed: false
- body: '{"image":{"arch":"x86_64","creation_date":"2025-02-12T16:02:17.190841+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"775987a3-b39a-414c-b482-9b098f631d1e","modification_date":"2025-02-12T16:02:17.190841+00:00","name":"tf-image-cranky-boyd","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"e8ceb46c-9003-4eb1-a5fc-53465a1574d5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":["test_remove_tags"],"zone":"fr-par-1"}}'
+ body: '{"image":{"arch":"x86_64","creation_date":"2025-05-22T15:18:12.133089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"f000cd61-4bac-41d3-b9ec-1de6aa209d31","modification_date":"2025-05-22T15:18:12.133089+00:00","name":"tf-image-xenodochial-fermat","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","public":false,"root_volume":{"id":"5ee31a23-5197-430c-878d-0d74fcb32b71","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":["test_remove_tags"],"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "598"
+ - "605"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:18 GMT
+ - Thu, 22 May 2025 15:18:13 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -1542,11 +1640,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - bbb47297-3a38-4eda-ac34-4e43c658836f
+ - 07a292ad-77f0-448c-970b-9649162b89fb
status: 200 OK
code: 200
- duration: 121.21025ms
- - id: 31
+ duration: 151.955371ms
+ - id: 33
request:
proto: HTTP/1.1
proto_major: 1
@@ -1561,8 +1659,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de141f80-bcb9-4d1b-b91e-0c71769c128f
+ - scaleway-sdk-go/v1.0.0-beta.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/dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc
method: GET
response:
proto: HTTP/2.0
@@ -1570,20 +1668,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1827
+ content_length: 1869
uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-12T16:01:32.495034+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-tender-lumiere","id":"de141f80-bcb9-4d1b-b91e-0c71769c128f","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"801","node_id":"5","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:c7:23","maintenances":[],"modification_date":"2025-02-12T16:01:38.899249+00:00","name":"tf-srv-tender-lumiere","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"0aa2eadf-770f-41d8-84a6-e3929a361816","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
+ body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-05-22T15:17:16.277627+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sharp-joliot","id":"dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1301","node_id":"45","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b0:1c:5f","maintenances":[],"modification_date":"2025-05-22T15:17:21.323522+00:00","name":"tf-srv-sharp-joliot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"379e909a-dbc1-4b87-9b11-a038a5488d43","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "1827"
+ - "1869"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:18 GMT
+ - Thu, 22 May 2025 15:18:13 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -1591,11 +1689,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 189a5cf5-1e6c-4ab9-aa30-c5f56031b770
+ - 92806a65-f53e-447b-855d-2e540c6bdff4
status: 200 OK
code: 200
- duration: 243.96375ms
- - id: 32
+ duration: 145.606916ms
+ - id: 34
request:
proto: HTTP/1.1
proto_major: 1
@@ -1610,8 +1708,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0aa2eadf-770f-41d8-84a6-e3929a361816
+ - scaleway-sdk-go/v1.0.0-beta.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/379e909a-dbc1-4b87-9b11-a038a5488d43
method: GET
response:
proto: HTTP/2.0
@@ -1621,7 +1719,7 @@ interactions:
trailer: {}
content_length: 143
uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"0aa2eadf-770f-41d8-84a6-e3929a361816","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"379e909a-dbc1-4b87-9b11-a038a5488d43","type":"not_found"}'
headers:
Content-Length:
- "143"
@@ -1630,9 +1728,9 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:19 GMT
+ - Thu, 22 May 2025 15:18:14 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -1640,11 +1738,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8ea4901b-820d-462a-9543-dab5caced5ff
+ - 7e5cf6de-219a-447d-8422-af98ddebf3e5
status: 404 Not Found
code: 404
- duration: 52.6935ms
- - id: 33
+ duration: 79.678797ms
+ - id: 35
request:
proto: HTTP/1.1
proto_major: 1
@@ -1659,8 +1757,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0aa2eadf-770f-41d8-84a6-e3929a361816
+ - scaleway-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/379e909a-dbc1-4b87-9b11-a038a5488d43
method: GET
response:
proto: HTTP/2.0
@@ -1668,20 +1766,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 701
+ content_length: 682
uncompressed: false
- body: '{"created_at":"2025-02-12T16:01:32.745747Z","id":"0aa2eadf-770f-41d8-84a6-e3929a361816","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"703a3bad-5fc4-450a-9b35-c128312df5f5","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-02-12T16:01:32.745747Z","id":"b8c235c0-4ff6-4222-bb46-f2d56ea57648","product_resource_id":"de141f80-bcb9-4d1b-b91e-0c71769c128f","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-02-12T16:01:32.745747Z","zone":"fr-par-1"}'
+ body: '{"created_at":"2025-05-22T15:17:16.391721Z","id":"379e909a-dbc1-4b87-9b11-a038a5488d43","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-22T15:17:16.391721Z","id":"6dfa1ff1-476d-4fdf-a766-c2a24afba17a","product_resource_id":"dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-05-22T15:17:16.391721Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "701"
+ - "682"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:19 GMT
+ - Thu, 22 May 2025 15:18:14 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -1689,11 +1787,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - df1ca0fd-0ac0-42fa-bcc7-b45c0adc51ba
+ - dad75b4a-2fd5-4e37-ba8e-e8fd3d8ee5ca
status: 200 OK
code: 200
- duration: 100.91475ms
- - id: 34
+ duration: 156.871919ms
+ - id: 36
request:
proto: HTTP/1.1
proto_major: 1
@@ -1708,8 +1806,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de141f80-bcb9-4d1b-b91e-0c71769c128f/user_data
+ - scaleway-sdk-go/v1.0.0-beta.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/dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc/user_data
method: GET
response:
proto: HTTP/2.0
@@ -1728,9 +1826,9 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:19 GMT
+ - Thu, 22 May 2025 15:18:14 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -1738,11 +1836,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 240db443-eadd-48c0-b2f3-fb1e9e3fd4df
+ - 7d9e9f7a-facd-4d78-b378-feec24824ddf
status: 200 OK
code: 200
- duration: 113.848542ms
- - id: 35
+ duration: 83.705094ms
+ - id: 37
request:
proto: HTTP/1.1
proto_major: 1
@@ -1757,8 +1855,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de141f80-bcb9-4d1b-b91e-0c71769c128f/private_nics
+ - scaleway-sdk-go/v1.0.0-beta.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/dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc/private_nics
method: GET
response:
proto: HTTP/2.0
@@ -1777,11 +1875,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:19 GMT
+ - Thu, 22 May 2025 15:18:14 GMT
Link:
- - ; rel="last"
+ - ; rel="last"
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -1789,13 +1887,13 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2ebcdc8e-101b-4bc4-9999-5f353d66bb64
+ - 4c07ff69-785b-4f98-8cbf-aeaa80ac6571
X-Total-Count:
- "0"
status: 200 OK
code: 200
- duration: 107.743167ms
- - id: 36
+ duration: 102.896844ms
+ - id: 38
request:
proto: HTTP/1.1
proto_major: 1
@@ -1810,8 +1908,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/e8ceb46c-9003-4eb1-a5fc-53465a1574d5
+ - scaleway-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/5ee31a23-5197-430c-878d-0d74fcb32b71
method: GET
response:
proto: HTTP/2.0
@@ -1819,20 +1917,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 703
+ content_length: 680
uncompressed: false
- body: '{"class":"sbs","created_at":"2025-02-12T16:01:40.148231Z","id":"e8ceb46c-9003-4eb1-a5fc-53465a1574d5","name":"tf-snapshot-confident-wescoff","parent_volume":{"id":"0aa2eadf-770f-41d8-84a6-e3929a361816","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-02-12T16:02:17.250835Z","id":"b11f2295-91a3-4560-b2c6-e4a98774a0da","product_resource_id":"775987a3-b39a-414c-b482-9b098f631d1e","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-02-12T16:02:17.250835Z","zone":"fr-par-1"}'
+ body: '{"class":"sbs","created_at":"2025-05-22T15:17:24.063480Z","id":"5ee31a23-5197-430c-878d-0d74fcb32b71","name":"tf-snapshot-goofy-ritchie","parent_volume":{"id":"379e909a-dbc1-4b87-9b11-a038a5488d43","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-22T15:18:12.181553Z","id":"a88ecbf9-fd76-4e38-9e81-8e4c8173f697","product_resource_id":"f000cd61-4bac-41d3-b9ec-1de6aa209d31","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-05-22T15:18:12.181553Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "703"
+ - "680"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:19 GMT
+ - Thu, 22 May 2025 15:18:14 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -1840,11 +1938,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 14987768-34a4-492c-bec2-4f265a9b397a
+ - 98091a22-76b4-4d57-8d05-c6f9a86d8ec3
status: 200 OK
code: 200
- duration: 186.423042ms
- - id: 37
+ duration: 130.583659ms
+ - id: 39
request:
proto: HTTP/1.1
proto_major: 1
@@ -1859,8 +1957,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/775987a3-b39a-414c-b482-9b098f631d1e
+ - scaleway-sdk-go/v1.0.0-beta.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/f000cd61-4bac-41d3-b9ec-1de6aa209d31
method: GET
response:
proto: HTTP/2.0
@@ -1868,20 +1966,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 598
+ content_length: 605
uncompressed: false
- body: '{"image":{"arch":"x86_64","creation_date":"2025-02-12T16:02:17.190841+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"775987a3-b39a-414c-b482-9b098f631d1e","modification_date":"2025-02-12T16:02:17.190841+00:00","name":"tf-image-cranky-boyd","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"e8ceb46c-9003-4eb1-a5fc-53465a1574d5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":["test_remove_tags"],"zone":"fr-par-1"}}'
+ body: '{"image":{"arch":"x86_64","creation_date":"2025-05-22T15:18:12.133089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"f000cd61-4bac-41d3-b9ec-1de6aa209d31","modification_date":"2025-05-22T15:18:12.133089+00:00","name":"tf-image-xenodochial-fermat","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","public":false,"root_volume":{"id":"5ee31a23-5197-430c-878d-0d74fcb32b71","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":["test_remove_tags"],"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "598"
+ - "605"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:19 GMT
+ - Thu, 22 May 2025 15:18:14 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -1889,11 +1987,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6a2fbba9-867a-454b-96c6-8105efee927e
+ - d6382b58-009d-4bab-8f0f-b9505731b900
status: 200 OK
code: 200
- duration: 116.736834ms
- - id: 38
+ duration: 120.033527ms
+ - id: 40
request:
proto: HTTP/1.1
proto_major: 1
@@ -1908,8 +2006,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de141f80-bcb9-4d1b-b91e-0c71769c128f
+ - scaleway-sdk-go/v1.0.0-beta.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/dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc
method: GET
response:
proto: HTTP/2.0
@@ -1917,20 +2015,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1827
+ content_length: 1869
uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-12T16:01:32.495034+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-tender-lumiere","id":"de141f80-bcb9-4d1b-b91e-0c71769c128f","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"801","node_id":"5","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:c7:23","maintenances":[],"modification_date":"2025-02-12T16:01:38.899249+00:00","name":"tf-srv-tender-lumiere","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"0aa2eadf-770f-41d8-84a6-e3929a361816","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
+ body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-05-22T15:17:16.277627+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sharp-joliot","id":"dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1301","node_id":"45","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b0:1c:5f","maintenances":[],"modification_date":"2025-05-22T15:17:21.323522+00:00","name":"tf-srv-sharp-joliot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"379e909a-dbc1-4b87-9b11-a038a5488d43","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "1827"
+ - "1869"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:20 GMT
+ - Thu, 22 May 2025 15:18:15 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -1938,11 +2036,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 227e12e3-babd-4e85-91d0-6690c90b82ac
+ - 49a19ee9-9d5d-4035-845f-795ca0d829ff
status: 200 OK
code: 200
- duration: 202.679583ms
- - id: 39
+ duration: 185.127691ms
+ - id: 41
request:
proto: HTTP/1.1
proto_major: 1
@@ -1957,8 +2055,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0aa2eadf-770f-41d8-84a6-e3929a361816
+ - scaleway-sdk-go/v1.0.0-beta.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/379e909a-dbc1-4b87-9b11-a038a5488d43
method: GET
response:
proto: HTTP/2.0
@@ -1968,7 +2066,7 @@ interactions:
trailer: {}
content_length: 143
uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"0aa2eadf-770f-41d8-84a6-e3929a361816","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"379e909a-dbc1-4b87-9b11-a038a5488d43","type":"not_found"}'
headers:
Content-Length:
- "143"
@@ -1977,9 +2075,9 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:20 GMT
+ - Thu, 22 May 2025 15:18:15 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -1987,11 +2085,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5db3ddae-8c65-41c4-94e5-f0e85f190dbf
+ - b669470d-736c-49d9-8889-49b6140a7055
status: 404 Not Found
code: 404
- duration: 59.327583ms
- - id: 40
+ duration: 82.518457ms
+ - id: 42
request:
proto: HTTP/1.1
proto_major: 1
@@ -2006,8 +2104,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0aa2eadf-770f-41d8-84a6-e3929a361816
+ - scaleway-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/379e909a-dbc1-4b87-9b11-a038a5488d43
method: GET
response:
proto: HTTP/2.0
@@ -2015,20 +2113,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 701
+ content_length: 682
uncompressed: false
- body: '{"created_at":"2025-02-12T16:01:32.745747Z","id":"0aa2eadf-770f-41d8-84a6-e3929a361816","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"703a3bad-5fc4-450a-9b35-c128312df5f5","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-02-12T16:01:32.745747Z","id":"b8c235c0-4ff6-4222-bb46-f2d56ea57648","product_resource_id":"de141f80-bcb9-4d1b-b91e-0c71769c128f","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-02-12T16:01:32.745747Z","zone":"fr-par-1"}'
+ body: '{"created_at":"2025-05-22T15:17:16.391721Z","id":"379e909a-dbc1-4b87-9b11-a038a5488d43","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-22T15:17:16.391721Z","id":"6dfa1ff1-476d-4fdf-a766-c2a24afba17a","product_resource_id":"dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-05-22T15:17:16.391721Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "701"
+ - "682"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:20 GMT
+ - Thu, 22 May 2025 15:18:15 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -2036,11 +2134,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 043ce154-ef5a-418d-88b4-2c3e4f12b8b3
+ - 6363aa7a-3c31-4b5a-b247-16f2ff4f923d
status: 200 OK
code: 200
- duration: 82.08475ms
- - id: 41
+ duration: 66.553924ms
+ - id: 43
request:
proto: HTTP/1.1
proto_major: 1
@@ -2055,8 +2153,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de141f80-bcb9-4d1b-b91e-0c71769c128f/user_data
+ - scaleway-sdk-go/v1.0.0-beta.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/dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc/user_data
method: GET
response:
proto: HTTP/2.0
@@ -2075,9 +2173,9 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:20 GMT
+ - Thu, 22 May 2025 15:18:15 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -2085,11 +2183,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 46325f4d-4f21-49e2-b36a-ee86723cd3d1
+ - 0ac6077d-6740-4a2d-9a3a-ef644db8b174
status: 200 OK
code: 200
- duration: 117.872417ms
- - id: 42
+ duration: 146.747627ms
+ - id: 44
request:
proto: HTTP/1.1
proto_major: 1
@@ -2104,8 +2202,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de141f80-bcb9-4d1b-b91e-0c71769c128f/private_nics
+ - scaleway-sdk-go/v1.0.0-beta.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/dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc/private_nics
method: GET
response:
proto: HTTP/2.0
@@ -2124,11 +2222,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:20 GMT
+ - Thu, 22 May 2025 15:18:15 GMT
Link:
- - ; rel="last"
+ - ; rel="last"
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -2136,13 +2234,13 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5e196f9e-786b-4155-9bd4-9cb1f9cef12d
+ - b9d01951-aa25-43f5-9544-52a6f93cdc04
X-Total-Count:
- "0"
status: 200 OK
code: 200
- duration: 140.823459ms
- - id: 43
+ duration: 94.042847ms
+ - id: 45
request:
proto: HTTP/1.1
proto_major: 1
@@ -2157,8 +2255,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/e8ceb46c-9003-4eb1-a5fc-53465a1574d5
+ - scaleway-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/5ee31a23-5197-430c-878d-0d74fcb32b71
method: GET
response:
proto: HTTP/2.0
@@ -2166,20 +2264,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 703
+ content_length: 680
uncompressed: false
- body: '{"class":"sbs","created_at":"2025-02-12T16:01:40.148231Z","id":"e8ceb46c-9003-4eb1-a5fc-53465a1574d5","name":"tf-snapshot-confident-wescoff","parent_volume":{"id":"0aa2eadf-770f-41d8-84a6-e3929a361816","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-02-12T16:02:17.250835Z","id":"b11f2295-91a3-4560-b2c6-e4a98774a0da","product_resource_id":"775987a3-b39a-414c-b482-9b098f631d1e","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-02-12T16:02:17.250835Z","zone":"fr-par-1"}'
+ body: '{"class":"sbs","created_at":"2025-05-22T15:17:24.063480Z","id":"5ee31a23-5197-430c-878d-0d74fcb32b71","name":"tf-snapshot-goofy-ritchie","parent_volume":{"id":"379e909a-dbc1-4b87-9b11-a038a5488d43","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-22T15:18:12.181553Z","id":"a88ecbf9-fd76-4e38-9e81-8e4c8173f697","product_resource_id":"f000cd61-4bac-41d3-b9ec-1de6aa209d31","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-05-22T15:18:12.181553Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "703"
+ - "680"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:21 GMT
+ - Thu, 22 May 2025 15:18:16 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -2187,11 +2285,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6b50020d-8987-454e-a0ac-3d79121be091
+ - f00332d0-9fee-453f-8399-1ea40a52a321
status: 200 OK
code: 200
- duration: 408.781917ms
- - id: 44
+ duration: 116.219309ms
+ - id: 46
request:
proto: HTTP/1.1
proto_major: 1
@@ -2206,8 +2304,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/775987a3-b39a-414c-b482-9b098f631d1e
+ - scaleway-sdk-go/v1.0.0-beta.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/f000cd61-4bac-41d3-b9ec-1de6aa209d31
method: GET
response:
proto: HTTP/2.0
@@ -2215,20 +2313,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 598
+ content_length: 605
uncompressed: false
- body: '{"image":{"arch":"x86_64","creation_date":"2025-02-12T16:02:17.190841+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"775987a3-b39a-414c-b482-9b098f631d1e","modification_date":"2025-02-12T16:02:17.190841+00:00","name":"tf-image-cranky-boyd","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"e8ceb46c-9003-4eb1-a5fc-53465a1574d5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":["test_remove_tags"],"zone":"fr-par-1"}}'
+ body: '{"image":{"arch":"x86_64","creation_date":"2025-05-22T15:18:12.133089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"f000cd61-4bac-41d3-b9ec-1de6aa209d31","modification_date":"2025-05-22T15:18:12.133089+00:00","name":"tf-image-xenodochial-fermat","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","public":false,"root_volume":{"id":"5ee31a23-5197-430c-878d-0d74fcb32b71","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":["test_remove_tags"],"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "598"
+ - "605"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:20 GMT
+ - Thu, 22 May 2025 15:18:16 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -2236,11 +2334,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 56b8c08d-db7a-42db-93eb-3dbd54af0956
+ - 3b1d1557-9bce-43c8-bb46-951e341ffc54
status: 200 OK
code: 200
- duration: 133.497292ms
- - id: 45
+ duration: 161.365052ms
+ - id: 47
request:
proto: HTTP/1.1
proto_major: 1
@@ -2255,8 +2353,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/775987a3-b39a-414c-b482-9b098f631d1e
+ - scaleway-sdk-go/v1.0.0-beta.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/f000cd61-4bac-41d3-b9ec-1de6aa209d31
method: GET
response:
proto: HTTP/2.0
@@ -2264,20 +2362,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 598
+ content_length: 605
uncompressed: false
- body: '{"image":{"arch":"x86_64","creation_date":"2025-02-12T16:02:17.190841+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"775987a3-b39a-414c-b482-9b098f631d1e","modification_date":"2025-02-12T16:02:17.190841+00:00","name":"tf-image-cranky-boyd","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"e8ceb46c-9003-4eb1-a5fc-53465a1574d5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":["test_remove_tags"],"zone":"fr-par-1"}}'
+ body: '{"image":{"arch":"x86_64","creation_date":"2025-05-22T15:18:12.133089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"f000cd61-4bac-41d3-b9ec-1de6aa209d31","modification_date":"2025-05-22T15:18:12.133089+00:00","name":"tf-image-xenodochial-fermat","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","public":false,"root_volume":{"id":"5ee31a23-5197-430c-878d-0d74fcb32b71","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":["test_remove_tags"],"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "598"
+ - "605"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:21 GMT
+ - Thu, 22 May 2025 15:18:17 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -2285,11 +2383,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4bfc46d1-6215-4a09-8ea7-20c600019453
+ - 3b669619-fe40-4662-b6f0-c1be7ea3a3aa
status: 200 OK
code: 200
- duration: 137.010292ms
- - id: 46
+ duration: 109.491652ms
+ - id: 48
request:
proto: HTTP/1.1
proto_major: 1
@@ -2304,8 +2402,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/775987a3-b39a-414c-b482-9b098f631d1e
+ - scaleway-sdk-go/v1.0.0-beta.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/f000cd61-4bac-41d3-b9ec-1de6aa209d31
method: GET
response:
proto: HTTP/2.0
@@ -2313,20 +2411,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 598
+ content_length: 605
uncompressed: false
- body: '{"image":{"arch":"x86_64","creation_date":"2025-02-12T16:02:17.190841+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"775987a3-b39a-414c-b482-9b098f631d1e","modification_date":"2025-02-12T16:02:17.190841+00:00","name":"tf-image-cranky-boyd","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"e8ceb46c-9003-4eb1-a5fc-53465a1574d5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":["test_remove_tags"],"zone":"fr-par-1"}}'
+ body: '{"image":{"arch":"x86_64","creation_date":"2025-05-22T15:18:12.133089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"f000cd61-4bac-41d3-b9ec-1de6aa209d31","modification_date":"2025-05-22T15:18:12.133089+00:00","name":"tf-image-xenodochial-fermat","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","public":false,"root_volume":{"id":"5ee31a23-5197-430c-878d-0d74fcb32b71","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":["test_remove_tags"],"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "598"
+ - "605"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:21 GMT
+ - Thu, 22 May 2025 15:18:17 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -2334,29 +2432,29 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1d4d84ec-7a9a-490b-867f-a7b0b54e2135
+ - 61574357-4439-4cdc-aacc-bb6464e51666
status: 200 OK
code: 200
- duration: 100.122958ms
- - id: 47
+ duration: 157.304611ms
+ - id: 49
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 57
+ content_length: 64
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: '{"name":"tf-image-cranky-boyd","arch":"x86_64","tags":[]}'
+ body: '{"name":"tf-image-xenodochial-fermat","arch":"x86_64","tags":[]}'
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/775987a3-b39a-414c-b482-9b098f631d1e
+ - scaleway-sdk-go/v1.0.0-beta.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/f000cd61-4bac-41d3-b9ec-1de6aa209d31
method: PATCH
response:
proto: HTTP/2.0
@@ -2364,20 +2462,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 580
+ content_length: 587
uncompressed: false
- body: '{"image":{"arch":"x86_64","creation_date":"2025-02-12T16:02:17.190841+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"775987a3-b39a-414c-b482-9b098f631d1e","modification_date":"2025-02-12T16:02:22.049102+00:00","name":"tf-image-cranky-boyd","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"e8ceb46c-9003-4eb1-a5fc-53465a1574d5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}'
+ body: '{"image":{"arch":"x86_64","creation_date":"2025-05-22T15:18:12.133089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"f000cd61-4bac-41d3-b9ec-1de6aa209d31","modification_date":"2025-05-22T15:18:17.341093+00:00","name":"tf-image-xenodochial-fermat","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","public":false,"root_volume":{"id":"5ee31a23-5197-430c-878d-0d74fcb32b71","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "580"
+ - "587"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:21 GMT
+ - Thu, 22 May 2025 15:18:17 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -2385,11 +2483,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3e5c6bd6-e1be-4304-a08f-bf4e107b3905
+ - e5211db9-6c72-4764-9457-fab9adcb8d76
status: 200 OK
code: 200
- duration: 262.077417ms
- - id: 48
+ duration: 187.188519ms
+ - id: 50
request:
proto: HTTP/1.1
proto_major: 1
@@ -2404,8 +2502,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/775987a3-b39a-414c-b482-9b098f631d1e
+ - scaleway-sdk-go/v1.0.0-beta.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/f000cd61-4bac-41d3-b9ec-1de6aa209d31
method: GET
response:
proto: HTTP/2.0
@@ -2413,20 +2511,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 580
+ content_length: 587
uncompressed: false
- body: '{"image":{"arch":"x86_64","creation_date":"2025-02-12T16:02:17.190841+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"775987a3-b39a-414c-b482-9b098f631d1e","modification_date":"2025-02-12T16:02:22.049102+00:00","name":"tf-image-cranky-boyd","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"e8ceb46c-9003-4eb1-a5fc-53465a1574d5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}'
+ body: '{"image":{"arch":"x86_64","creation_date":"2025-05-22T15:18:12.133089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"f000cd61-4bac-41d3-b9ec-1de6aa209d31","modification_date":"2025-05-22T15:18:17.341093+00:00","name":"tf-image-xenodochial-fermat","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","public":false,"root_volume":{"id":"5ee31a23-5197-430c-878d-0d74fcb32b71","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "580"
+ - "587"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:22 GMT
+ - Thu, 22 May 2025 15:18:17 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -2434,11 +2532,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e52882b0-914d-4df7-b163-4ed7a4175a8e
+ - a48fa554-a2b6-44a5-ad4f-bf736dcb0318
status: 200 OK
code: 200
- duration: 135.630292ms
- - id: 49
+ duration: 135.221344ms
+ - id: 51
request:
proto: HTTP/1.1
proto_major: 1
@@ -2453,8 +2551,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/775987a3-b39a-414c-b482-9b098f631d1e
+ - scaleway-sdk-go/v1.0.0-beta.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/f000cd61-4bac-41d3-b9ec-1de6aa209d31
method: GET
response:
proto: HTTP/2.0
@@ -2462,20 +2560,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 580
+ content_length: 587
uncompressed: false
- body: '{"image":{"arch":"x86_64","creation_date":"2025-02-12T16:02:17.190841+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"775987a3-b39a-414c-b482-9b098f631d1e","modification_date":"2025-02-12T16:02:22.049102+00:00","name":"tf-image-cranky-boyd","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"e8ceb46c-9003-4eb1-a5fc-53465a1574d5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}'
+ body: '{"image":{"arch":"x86_64","creation_date":"2025-05-22T15:18:12.133089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"f000cd61-4bac-41d3-b9ec-1de6aa209d31","modification_date":"2025-05-22T15:18:17.341093+00:00","name":"tf-image-xenodochial-fermat","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","public":false,"root_volume":{"id":"5ee31a23-5197-430c-878d-0d74fcb32b71","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "580"
+ - "587"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:22 GMT
+ - Thu, 22 May 2025 15:18:17 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -2483,11 +2581,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 17fde406-442f-41d6-a1bc-1ab02bae7746
+ - d3481a42-48a6-46e8-bc5c-a6434e2a0aa3
status: 200 OK
code: 200
- duration: 131.192625ms
- - id: 50
+ duration: 148.728073ms
+ - id: 52
request:
proto: HTTP/1.1
proto_major: 1
@@ -2502,8 +2600,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de141f80-bcb9-4d1b-b91e-0c71769c128f
+ - scaleway-sdk-go/v1.0.0-beta.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/dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc
method: GET
response:
proto: HTTP/2.0
@@ -2511,20 +2609,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1827
+ content_length: 1869
uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-12T16:01:32.495034+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-tender-lumiere","id":"de141f80-bcb9-4d1b-b91e-0c71769c128f","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"801","node_id":"5","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:c7:23","maintenances":[],"modification_date":"2025-02-12T16:01:38.899249+00:00","name":"tf-srv-tender-lumiere","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"0aa2eadf-770f-41d8-84a6-e3929a361816","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
+ body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-05-22T15:17:16.277627+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sharp-joliot","id":"dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1301","node_id":"45","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b0:1c:5f","maintenances":[],"modification_date":"2025-05-22T15:17:21.323522+00:00","name":"tf-srv-sharp-joliot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"379e909a-dbc1-4b87-9b11-a038a5488d43","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "1827"
+ - "1869"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:22 GMT
+ - Thu, 22 May 2025 15:18:18 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -2532,11 +2630,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 931f0df9-a0d7-4f68-9db5-82a1bcc75f08
+ - bbfc5893-4e1a-4b8d-b977-fc9157680a3a
status: 200 OK
code: 200
- duration: 221.013291ms
- - id: 51
+ duration: 221.11773ms
+ - id: 53
request:
proto: HTTP/1.1
proto_major: 1
@@ -2551,8 +2649,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/e8ceb46c-9003-4eb1-a5fc-53465a1574d5
+ - scaleway-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/5ee31a23-5197-430c-878d-0d74fcb32b71
method: GET
response:
proto: HTTP/2.0
@@ -2560,20 +2658,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 703
+ content_length: 680
uncompressed: false
- body: '{"class":"sbs","created_at":"2025-02-12T16:01:40.148231Z","id":"e8ceb46c-9003-4eb1-a5fc-53465a1574d5","name":"tf-snapshot-confident-wescoff","parent_volume":{"id":"0aa2eadf-770f-41d8-84a6-e3929a361816","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-02-12T16:02:17.250835Z","id":"b11f2295-91a3-4560-b2c6-e4a98774a0da","product_resource_id":"775987a3-b39a-414c-b482-9b098f631d1e","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-02-12T16:02:17.250835Z","zone":"fr-par-1"}'
+ body: '{"class":"sbs","created_at":"2025-05-22T15:17:24.063480Z","id":"5ee31a23-5197-430c-878d-0d74fcb32b71","name":"tf-snapshot-goofy-ritchie","parent_volume":{"id":"379e909a-dbc1-4b87-9b11-a038a5488d43","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-22T15:18:12.181553Z","id":"a88ecbf9-fd76-4e38-9e81-8e4c8173f697","product_resource_id":"f000cd61-4bac-41d3-b9ec-1de6aa209d31","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-05-22T15:18:12.181553Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "703"
+ - "680"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:22 GMT
+ - Thu, 22 May 2025 15:18:18 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -2581,11 +2679,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 05bdf3d3-e335-48a2-a5b1-b5c6aed64911
+ - de813f1f-f2fe-4d8f-912e-a6dc689a4b19
status: 200 OK
code: 200
- duration: 112.494042ms
- - id: 52
+ duration: 187.937415ms
+ - id: 54
request:
proto: HTTP/1.1
proto_major: 1
@@ -2600,8 +2698,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/775987a3-b39a-414c-b482-9b098f631d1e
+ - scaleway-sdk-go/v1.0.0-beta.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/f000cd61-4bac-41d3-b9ec-1de6aa209d31
method: GET
response:
proto: HTTP/2.0
@@ -2609,20 +2707,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 580
+ content_length: 587
uncompressed: false
- body: '{"image":{"arch":"x86_64","creation_date":"2025-02-12T16:02:17.190841+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"775987a3-b39a-414c-b482-9b098f631d1e","modification_date":"2025-02-12T16:02:22.049102+00:00","name":"tf-image-cranky-boyd","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"e8ceb46c-9003-4eb1-a5fc-53465a1574d5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}'
+ body: '{"image":{"arch":"x86_64","creation_date":"2025-05-22T15:18:12.133089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"f000cd61-4bac-41d3-b9ec-1de6aa209d31","modification_date":"2025-05-22T15:18:17.341093+00:00","name":"tf-image-xenodochial-fermat","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","public":false,"root_volume":{"id":"5ee31a23-5197-430c-878d-0d74fcb32b71","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "580"
+ - "587"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:22 GMT
+ - Thu, 22 May 2025 15:18:18 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -2630,11 +2728,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 18342d89-72d1-4d4c-b52c-9803a62e0647
+ - 57da8220-e461-4fb3-b9ca-e22f2f83f99d
status: 200 OK
code: 200
- duration: 141.582334ms
- - id: 53
+ duration: 103.069949ms
+ - id: 55
request:
proto: HTTP/1.1
proto_major: 1
@@ -2649,8 +2747,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de141f80-bcb9-4d1b-b91e-0c71769c128f
+ - scaleway-sdk-go/v1.0.0-beta.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/dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc
method: GET
response:
proto: HTTP/2.0
@@ -2658,20 +2756,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1827
+ content_length: 1869
uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-12T16:01:32.495034+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-tender-lumiere","id":"de141f80-bcb9-4d1b-b91e-0c71769c128f","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"801","node_id":"5","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:c7:23","maintenances":[],"modification_date":"2025-02-12T16:01:38.899249+00:00","name":"tf-srv-tender-lumiere","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"0aa2eadf-770f-41d8-84a6-e3929a361816","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
+ body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-05-22T15:17:16.277627+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sharp-joliot","id":"dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1301","node_id":"45","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b0:1c:5f","maintenances":[],"modification_date":"2025-05-22T15:17:21.323522+00:00","name":"tf-srv-sharp-joliot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"379e909a-dbc1-4b87-9b11-a038a5488d43","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "1827"
+ - "1869"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:23 GMT
+ - Thu, 22 May 2025 15:18:19 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -2679,11 +2777,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 48b8b05a-32d9-43f1-b018-ea5922340f76
+ - ebcb6f55-60af-4ef8-813a-d03eed699923
status: 200 OK
code: 200
- duration: 184.492375ms
- - id: 54
+ duration: 173.092442ms
+ - id: 56
request:
proto: HTTP/1.1
proto_major: 1
@@ -2698,8 +2796,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0aa2eadf-770f-41d8-84a6-e3929a361816
+ - scaleway-sdk-go/v1.0.0-beta.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/379e909a-dbc1-4b87-9b11-a038a5488d43
method: GET
response:
proto: HTTP/2.0
@@ -2709,7 +2807,7 @@ interactions:
trailer: {}
content_length: 143
uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"0aa2eadf-770f-41d8-84a6-e3929a361816","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"379e909a-dbc1-4b87-9b11-a038a5488d43","type":"not_found"}'
headers:
Content-Length:
- "143"
@@ -2718,9 +2816,9 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:23 GMT
+ - Thu, 22 May 2025 15:18:19 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -2728,11 +2826,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - cc98985c-4734-41d2-a8f5-5b8c24602912
+ - 8bcc152e-db9c-4f21-862a-97555a72b975
status: 404 Not Found
code: 404
- duration: 51.188042ms
- - id: 55
+ duration: 64.276339ms
+ - id: 57
request:
proto: HTTP/1.1
proto_major: 1
@@ -2747,8 +2845,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0aa2eadf-770f-41d8-84a6-e3929a361816
+ - scaleway-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/379e909a-dbc1-4b87-9b11-a038a5488d43
method: GET
response:
proto: HTTP/2.0
@@ -2756,20 +2854,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 701
+ content_length: 682
uncompressed: false
- body: '{"created_at":"2025-02-12T16:01:32.745747Z","id":"0aa2eadf-770f-41d8-84a6-e3929a361816","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"703a3bad-5fc4-450a-9b35-c128312df5f5","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-02-12T16:01:32.745747Z","id":"b8c235c0-4ff6-4222-bb46-f2d56ea57648","product_resource_id":"de141f80-bcb9-4d1b-b91e-0c71769c128f","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-02-12T16:01:32.745747Z","zone":"fr-par-1"}'
+ body: '{"created_at":"2025-05-22T15:17:16.391721Z","id":"379e909a-dbc1-4b87-9b11-a038a5488d43","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-22T15:17:16.391721Z","id":"6dfa1ff1-476d-4fdf-a766-c2a24afba17a","product_resource_id":"dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-05-22T15:17:16.391721Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "701"
+ - "682"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:23 GMT
+ - Thu, 22 May 2025 15:18:19 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -2777,11 +2875,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f0335943-3a87-4334-b59e-46732bd4cc74
+ - 535a603f-113c-4f17-af99-58f74b9a3ee4
status: 200 OK
code: 200
- duration: 112.796417ms
- - id: 56
+ duration: 61.405661ms
+ - id: 58
request:
proto: HTTP/1.1
proto_major: 1
@@ -2796,8 +2894,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de141f80-bcb9-4d1b-b91e-0c71769c128f/user_data
+ - scaleway-sdk-go/v1.0.0-beta.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/dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc/user_data
method: GET
response:
proto: HTTP/2.0
@@ -2816,9 +2914,9 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:23 GMT
+ - Thu, 22 May 2025 15:18:19 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -2826,11 +2924,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1004ed99-a2b9-4124-bcc0-a8c6e060f58c
+ - 901086b6-34b0-458b-8eff-f4b2ce16cb6e
status: 200 OK
code: 200
- duration: 199.990209ms
- - id: 57
+ duration: 132.658142ms
+ - id: 59
request:
proto: HTTP/1.1
proto_major: 1
@@ -2845,8 +2943,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de141f80-bcb9-4d1b-b91e-0c71769c128f/private_nics
+ - scaleway-sdk-go/v1.0.0-beta.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/dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc/private_nics
method: GET
response:
proto: HTTP/2.0
@@ -2865,11 +2963,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:23 GMT
+ - Thu, 22 May 2025 15:18:19 GMT
Link:
- - ; rel="last"
+ - ; rel="last"
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -2877,13 +2975,13 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 83349e03-74de-4241-bd36-eee718a50de1
+ - e90b2338-db9c-41b0-9993-efefaaaaff57
X-Total-Count:
- "0"
status: 200 OK
code: 200
- duration: 121.835666ms
- - id: 58
+ duration: 131.998283ms
+ - id: 60
request:
proto: HTTP/1.1
proto_major: 1
@@ -2898,8 +2996,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/e8ceb46c-9003-4eb1-a5fc-53465a1574d5
+ - scaleway-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/5ee31a23-5197-430c-878d-0d74fcb32b71
method: GET
response:
proto: HTTP/2.0
@@ -2907,20 +3005,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 703
+ content_length: 680
uncompressed: false
- body: '{"class":"sbs","created_at":"2025-02-12T16:01:40.148231Z","id":"e8ceb46c-9003-4eb1-a5fc-53465a1574d5","name":"tf-snapshot-confident-wescoff","parent_volume":{"id":"0aa2eadf-770f-41d8-84a6-e3929a361816","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-02-12T16:02:17.250835Z","id":"b11f2295-91a3-4560-b2c6-e4a98774a0da","product_resource_id":"775987a3-b39a-414c-b482-9b098f631d1e","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-02-12T16:02:17.250835Z","zone":"fr-par-1"}'
+ body: '{"class":"sbs","created_at":"2025-05-22T15:17:24.063480Z","id":"5ee31a23-5197-430c-878d-0d74fcb32b71","name":"tf-snapshot-goofy-ritchie","parent_volume":{"id":"379e909a-dbc1-4b87-9b11-a038a5488d43","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-22T15:18:12.181553Z","id":"a88ecbf9-fd76-4e38-9e81-8e4c8173f697","product_resource_id":"f000cd61-4bac-41d3-b9ec-1de6aa209d31","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-05-22T15:18:12.181553Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "703"
+ - "680"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:24 GMT
+ - Thu, 22 May 2025 15:18:19 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -2928,11 +3026,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - cc9d1931-11e0-4367-9531-696705b70c28
+ - 330192bf-3f29-42ea-9f47-58cfc38e40b3
status: 200 OK
code: 200
- duration: 123.158042ms
- - id: 59
+ duration: 119.758631ms
+ - id: 61
request:
proto: HTTP/1.1
proto_major: 1
@@ -2947,8 +3045,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/775987a3-b39a-414c-b482-9b098f631d1e
+ - scaleway-sdk-go/v1.0.0-beta.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/f000cd61-4bac-41d3-b9ec-1de6aa209d31
method: GET
response:
proto: HTTP/2.0
@@ -2956,20 +3054,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 580
+ content_length: 587
uncompressed: false
- body: '{"image":{"arch":"x86_64","creation_date":"2025-02-12T16:02:17.190841+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"775987a3-b39a-414c-b482-9b098f631d1e","modification_date":"2025-02-12T16:02:22.049102+00:00","name":"tf-image-cranky-boyd","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"e8ceb46c-9003-4eb1-a5fc-53465a1574d5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}'
+ body: '{"image":{"arch":"x86_64","creation_date":"2025-05-22T15:18:12.133089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"f000cd61-4bac-41d3-b9ec-1de6aa209d31","modification_date":"2025-05-22T15:18:17.341093+00:00","name":"tf-image-xenodochial-fermat","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","public":false,"root_volume":{"id":"5ee31a23-5197-430c-878d-0d74fcb32b71","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "580"
+ - "587"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:23 GMT
+ - Thu, 22 May 2025 15:18:19 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -2977,11 +3075,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b96d85b8-4265-4044-9044-cc7aa90e5e29
+ - 134ba74e-0dbd-461a-a93f-2938d7baeb16
status: 200 OK
code: 200
- duration: 122.394833ms
- - id: 60
+ duration: 117.242639ms
+ - id: 62
request:
proto: HTTP/1.1
proto_major: 1
@@ -2996,8 +3094,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/775987a3-b39a-414c-b482-9b098f631d1e
+ - scaleway-sdk-go/v1.0.0-beta.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/f000cd61-4bac-41d3-b9ec-1de6aa209d31
method: GET
response:
proto: HTTP/2.0
@@ -3005,20 +3103,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 580
+ content_length: 587
uncompressed: false
- body: '{"image":{"arch":"x86_64","creation_date":"2025-02-12T16:02:17.190841+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"775987a3-b39a-414c-b482-9b098f631d1e","modification_date":"2025-02-12T16:02:22.049102+00:00","name":"tf-image-cranky-boyd","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"e8ceb46c-9003-4eb1-a5fc-53465a1574d5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}'
+ body: '{"image":{"arch":"x86_64","creation_date":"2025-05-22T15:18:12.133089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"f000cd61-4bac-41d3-b9ec-1de6aa209d31","modification_date":"2025-05-22T15:18:17.341093+00:00","name":"tf-image-xenodochial-fermat","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","public":false,"root_volume":{"id":"5ee31a23-5197-430c-878d-0d74fcb32b71","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "580"
+ - "587"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:24 GMT
+ - Thu, 22 May 2025 15:18:20 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3026,11 +3124,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e5b2f769-725f-4776-bfc5-8c123fc9ffe5
+ - 982cd7f0-8532-4160-a3f5-6fcd04ebf784
status: 200 OK
code: 200
- duration: 122.954375ms
- - id: 61
+ duration: 150.850978ms
+ - id: 63
request:
proto: HTTP/1.1
proto_major: 1
@@ -3045,8 +3143,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/775987a3-b39a-414c-b482-9b098f631d1e
+ - scaleway-sdk-go/v1.0.0-beta.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/f000cd61-4bac-41d3-b9ec-1de6aa209d31
method: DELETE
response:
proto: HTTP/2.0
@@ -3063,9 +3161,9 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:25 GMT
+ - Thu, 22 May 2025 15:18:22 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3073,11 +3171,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - afcc129f-6a16-4199-8c90-747a974420f9
+ - a5d24476-2ed1-4c2b-adee-5b2a9a550c77
status: 204 No Content
code: 204
- duration: 477.879458ms
- - id: 62
+ duration: 1.572845256s
+ - id: 64
request:
proto: HTTP/1.1
proto_major: 1
@@ -3092,8 +3190,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/775987a3-b39a-414c-b482-9b098f631d1e
+ - scaleway-sdk-go/v1.0.0-beta.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/f000cd61-4bac-41d3-b9ec-1de6aa209d31
method: GET
response:
proto: HTTP/2.0
@@ -3103,7 +3201,7 @@ interactions:
trailer: {}
content_length: 142
uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_image","resource_id":"775987a3-b39a-414c-b482-9b098f631d1e","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"instance_image","resource_id":"f000cd61-4bac-41d3-b9ec-1de6aa209d31","type":"not_found"}'
headers:
Content-Length:
- "142"
@@ -3112,9 +3210,9 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:24 GMT
+ - Thu, 22 May 2025 15:18:22 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3122,11 +3220,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 041af980-ecfa-454a-98b8-a2ce355cf68d
+ - e5da691d-7c27-4d32-908b-6f7d2141a344
status: 404 Not Found
code: 404
- duration: 48.912416ms
- - id: 63
+ duration: 50.484724ms
+ - id: 65
request:
proto: HTTP/1.1
proto_major: 1
@@ -3141,8 +3239,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/e8ceb46c-9003-4eb1-a5fc-53465a1574d5
+ - scaleway-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/5ee31a23-5197-430c-878d-0d74fcb32b71
method: GET
response:
proto: HTTP/2.0
@@ -3150,20 +3248,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 477
+ content_length: 456
uncompressed: false
- body: '{"class":"sbs","created_at":"2025-02-12T16:01:40.148231Z","id":"e8ceb46c-9003-4eb1-a5fc-53465a1574d5","name":"tf-snapshot-confident-wescoff","parent_volume":{"id":"0aa2eadf-770f-41d8-84a6-e3929a361816","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-02-12T16:02:25.127657Z","zone":"fr-par-1"}'
+ body: '{"class":"sbs","created_at":"2025-05-22T15:17:24.063480Z","id":"5ee31a23-5197-430c-878d-0d74fcb32b71","name":"tf-snapshot-goofy-ritchie","parent_volume":{"id":"379e909a-dbc1-4b87-9b11-a038a5488d43","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-05-22T15:18:12.181553Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "477"
+ - "456"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:25 GMT
+ - Thu, 22 May 2025 15:18:22 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3171,11 +3269,60 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 765cb742-dab2-4232-8e3e-43bec02bb8fb
+ - 7812815b-8cbc-485f-a31f-01e94954e0fa
status: 200 OK
code: 200
- duration: 111.073792ms
- - id: 64
+ duration: 119.562303ms
+ - id: 66
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/5ee31a23-5197-430c-878d-0d74fcb32b71
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 459
+ uncompressed: false
+ body: '{"class":"sbs","created_at":"2025-05-22T15:17:24.063480Z","id":"5ee31a23-5197-430c-878d-0d74fcb32b71","name":"tf-snapshot-goofy-ritchie","parent_volume":{"id":"379e909a-dbc1-4b87-9b11-a038a5488d43","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-05-22T15:18:22.462508Z","zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "459"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 22 May 2025 15:18:27 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-2;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - a35fb9c9-5d7d-4a91-8c46-917f3f4618ee
+ status: 200 OK
+ code: 200
+ duration: 153.811774ms
+ - id: 67
request:
proto: HTTP/1.1
proto_major: 1
@@ -3190,8 +3337,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/e8ceb46c-9003-4eb1-a5fc-53465a1574d5
+ - scaleway-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/5ee31a23-5197-430c-878d-0d74fcb32b71
method: DELETE
response:
proto: HTTP/2.0
@@ -3208,9 +3355,9 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:25 GMT
+ - Thu, 22 May 2025 15:18:27 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3218,11 +3365,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 480b9e91-6a42-467e-a83c-655168c8a6fb
+ - 29ea2873-65f0-45c2-a479-40e30302b051
status: 204 No Content
code: 204
- duration: 274.193ms
- - id: 65
+ duration: 216.08873ms
+ - id: 68
request:
proto: HTTP/1.1
proto_major: 1
@@ -3237,8 +3384,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/e8ceb46c-9003-4eb1-a5fc-53465a1574d5
+ - scaleway-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/5ee31a23-5197-430c-878d-0d74fcb32b71
method: GET
response:
proto: HTTP/2.0
@@ -3248,7 +3395,7 @@ interactions:
trailer: {}
content_length: 129
uncompressed: false
- body: '{"message":"resource is not found","resource":"snapshot","resource_id":"e8ceb46c-9003-4eb1-a5fc-53465a1574d5","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"snapshot","resource_id":"5ee31a23-5197-430c-878d-0d74fcb32b71","type":"not_found"}'
headers:
Content-Length:
- "129"
@@ -3257,9 +3404,9 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:25 GMT
+ - Thu, 22 May 2025 15:18:28 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3267,11 +3414,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7e2dfa91-9dbc-45db-9b20-8eb08921cadd
+ - 068bcb82-fce3-4e35-af31-653111b98a79
status: 404 Not Found
code: 404
- duration: 99.163584ms
- - id: 66
+ duration: 97.586137ms
+ - id: 69
request:
proto: HTTP/1.1
proto_major: 1
@@ -3286,8 +3433,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de141f80-bcb9-4d1b-b91e-0c71769c128f
+ - scaleway-sdk-go/v1.0.0-beta.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/dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc
method: GET
response:
proto: HTTP/2.0
@@ -3295,20 +3442,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1827
+ content_length: 1869
uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-12T16:01:32.495034+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-tender-lumiere","id":"de141f80-bcb9-4d1b-b91e-0c71769c128f","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"801","node_id":"5","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:c7:23","maintenances":[],"modification_date":"2025-02-12T16:01:38.899249+00:00","name":"tf-srv-tender-lumiere","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"0aa2eadf-770f-41d8-84a6-e3929a361816","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
+ body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-05-22T15:17:16.277627+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sharp-joliot","id":"dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1301","node_id":"45","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b0:1c:5f","maintenances":[],"modification_date":"2025-05-22T15:17:21.323522+00:00","name":"tf-srv-sharp-joliot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"379e909a-dbc1-4b87-9b11-a038a5488d43","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "1827"
+ - "1869"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:25 GMT
+ - Thu, 22 May 2025 15:18:28 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3316,11 +3463,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 466e1fc0-c3e6-4479-aef3-729a9f05424b
+ - 53013c4a-d9fa-4000-842d-fd669a4dca8a
status: 200 OK
code: 200
- duration: 297.435833ms
- - id: 67
+ duration: 469.018164ms
+ - id: 70
request:
proto: HTTP/1.1
proto_major: 1
@@ -3335,8 +3482,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0aa2eadf-770f-41d8-84a6-e3929a361816
+ - scaleway-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/379e909a-dbc1-4b87-9b11-a038a5488d43
method: GET
response:
proto: HTTP/2.0
@@ -3344,20 +3491,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 701
+ content_length: 682
uncompressed: false
- body: '{"created_at":"2025-02-12T16:01:32.745747Z","id":"0aa2eadf-770f-41d8-84a6-e3929a361816","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"703a3bad-5fc4-450a-9b35-c128312df5f5","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-02-12T16:01:32.745747Z","id":"b8c235c0-4ff6-4222-bb46-f2d56ea57648","product_resource_id":"de141f80-bcb9-4d1b-b91e-0c71769c128f","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-02-12T16:01:32.745747Z","zone":"fr-par-1"}'
+ body: '{"created_at":"2025-05-22T15:17:16.391721Z","id":"379e909a-dbc1-4b87-9b11-a038a5488d43","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-22T15:17:16.391721Z","id":"6dfa1ff1-476d-4fdf-a766-c2a24afba17a","product_resource_id":"dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-05-22T15:17:16.391721Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "701"
+ - "682"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:26 GMT
+ - Thu, 22 May 2025 15:18:28 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3365,11 +3512,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 90941b06-a18d-45b3-a3a5-01c2c3065a3b
+ - 3e818e4f-eb8f-44c3-b61c-c0cc313666f6
status: 200 OK
code: 200
- duration: 105.614375ms
- - id: 68
+ duration: 131.551114ms
+ - id: 71
request:
proto: HTTP/1.1
proto_major: 1
@@ -3386,8 +3533,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de141f80-bcb9-4d1b-b91e-0c71769c128f/action
+ - scaleway-sdk-go/v1.0.0-beta.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/dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc/action
method: POST
response:
proto: HTTP/2.0
@@ -3397,7 +3544,7 @@ interactions:
trailer: {}
content_length: 352
uncompressed: false
- body: '{"task":{"description":"server_poweroff","href_from":"/servers/de141f80-bcb9-4d1b-b91e-0c71769c128f/action","href_result":"/servers/de141f80-bcb9-4d1b-b91e-0c71769c128f","id":"92c359f9-8802-4949-8b3a-58f50af9da24","progress":0,"started_at":"2025-02-12T16:02:26.256568+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}'
+ body: '{"task":{"description":"server_poweroff","href_from":"/servers/dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc/action","href_result":"/servers/dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc","id":"792fe343-da26-4551-aeb5-0794e221517d","progress":0,"started_at":"2025-05-22T15:18:28.955543+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}'
headers:
Content-Length:
- "352"
@@ -3406,11 +3553,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:26 GMT
+ - Thu, 22 May 2025 15:18:28 GMT
Location:
- - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/92c359f9-8802-4949-8b3a-58f50af9da24
+ - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/792fe343-da26-4551-aeb5-0794e221517d
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3418,11 +3565,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8bcc3c22-3bf4-4866-8f1c-5c28f51facb4
+ - 28c6e6a1-7e4c-42e3-8c4f-b766777689a3
status: 202 Accepted
code: 202
- duration: 301.542542ms
- - id: 69
+ duration: 282.154216ms
+ - id: 72
request:
proto: HTTP/1.1
proto_major: 1
@@ -3437,8 +3584,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de141f80-bcb9-4d1b-b91e-0c71769c128f
+ - scaleway-sdk-go/v1.0.0-beta.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/dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc
method: GET
response:
proto: HTTP/2.0
@@ -3446,20 +3593,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1787
+ content_length: 1829
uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-12T16:01:32.495034+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-tender-lumiere","id":"de141f80-bcb9-4d1b-b91e-0c71769c128f","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"801","node_id":"5","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:c7:23","maintenances":[],"modification_date":"2025-02-12T16:02:26.092361+00:00","name":"tf-srv-tender-lumiere","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"0aa2eadf-770f-41d8-84a6-e3929a361816","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
+ body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-05-22T15:17:16.277627+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sharp-joliot","id":"dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1301","node_id":"45","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b0:1c:5f","maintenances":[],"modification_date":"2025-05-22T15:18:28.802453+00:00","name":"tf-srv-sharp-joliot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"379e909a-dbc1-4b87-9b11-a038a5488d43","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "1787"
+ - "1829"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:26 GMT
+ - Thu, 22 May 2025 15:18:29 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3467,11 +3614,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - eddfcbe7-1585-4270-b4a8-6eb297a7aaee
+ - cd6103f2-69bd-4069-b6a1-3cc96a27e0e5
status: 200 OK
code: 200
- duration: 820.844ms
- - id: 70
+ duration: 211.126876ms
+ - id: 73
request:
proto: HTTP/1.1
proto_major: 1
@@ -3486,8 +3633,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de141f80-bcb9-4d1b-b91e-0c71769c128f
+ - scaleway-sdk-go/v1.0.0-beta.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/dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc
method: GET
response:
proto: HTTP/2.0
@@ -3495,20 +3642,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1787
+ content_length: 1829
uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-12T16:01:32.495034+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-tender-lumiere","id":"de141f80-bcb9-4d1b-b91e-0c71769c128f","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"801","node_id":"5","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:c7:23","maintenances":[],"modification_date":"2025-02-12T16:02:26.092361+00:00","name":"tf-srv-tender-lumiere","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"0aa2eadf-770f-41d8-84a6-e3929a361816","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
+ body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-05-22T15:17:16.277627+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sharp-joliot","id":"dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1301","node_id":"45","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b0:1c:5f","maintenances":[],"modification_date":"2025-05-22T15:18:28.802453+00:00","name":"tf-srv-sharp-joliot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"379e909a-dbc1-4b87-9b11-a038a5488d43","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "1787"
+ - "1829"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:32 GMT
+ - Thu, 22 May 2025 15:18:34 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3516,11 +3663,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - cb42d391-53e9-403d-b3d4-cf8bff9a3d8c
+ - 821e6e19-43ad-4503-a908-242cf1dd1d80
status: 200 OK
code: 200
- duration: 320.004834ms
- - id: 71
+ duration: 277.008768ms
+ - id: 74
request:
proto: HTTP/1.1
proto_major: 1
@@ -3535,8 +3682,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de141f80-bcb9-4d1b-b91e-0c71769c128f
+ - scaleway-sdk-go/v1.0.0-beta.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/dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc
method: GET
response:
proto: HTTP/2.0
@@ -3544,20 +3691,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1787
+ content_length: 1829
uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-12T16:01:32.495034+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-tender-lumiere","id":"de141f80-bcb9-4d1b-b91e-0c71769c128f","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"801","node_id":"5","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:c7:23","maintenances":[],"modification_date":"2025-02-12T16:02:26.092361+00:00","name":"tf-srv-tender-lumiere","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"0aa2eadf-770f-41d8-84a6-e3929a361816","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
+ body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-05-22T15:17:16.277627+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sharp-joliot","id":"dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1301","node_id":"45","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b0:1c:5f","maintenances":[],"modification_date":"2025-05-22T15:18:28.802453+00:00","name":"tf-srv-sharp-joliot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"379e909a-dbc1-4b87-9b11-a038a5488d43","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "1787"
+ - "1829"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:37 GMT
+ - Thu, 22 May 2025 15:18:39 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3565,11 +3712,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a3fe0010-07d0-4129-a7ef-5a63ce66be3e
+ - 79dcd7df-1d87-430f-9570-74c6e5e64451
status: 200 OK
code: 200
- duration: 859.707917ms
- - id: 72
+ duration: 187.396337ms
+ - id: 75
request:
proto: HTTP/1.1
proto_major: 1
@@ -3584,8 +3731,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de141f80-bcb9-4d1b-b91e-0c71769c128f
+ - scaleway-sdk-go/v1.0.0-beta.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/dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc
method: GET
response:
proto: HTTP/2.0
@@ -3593,20 +3740,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1787
+ content_length: 1712
uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-12T16:01:32.495034+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-tender-lumiere","id":"de141f80-bcb9-4d1b-b91e-0c71769c128f","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"801","node_id":"5","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:c7:23","maintenances":[],"modification_date":"2025-02-12T16:02:26.092361+00:00","name":"tf-srv-tender-lumiere","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"0aa2eadf-770f-41d8-84a6-e3929a361816","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
+ body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-05-22T15:17:16.277627+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sharp-joliot","id":"dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b0:1c:5f","maintenances":[],"modification_date":"2025-05-22T15:18:44.354119+00:00","name":"tf-srv-sharp-joliot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"379e909a-dbc1-4b87-9b11-a038a5488d43","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "1787"
+ - "1712"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:43 GMT
+ - Thu, 22 May 2025 15:18:44 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3614,11 +3761,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - afd12ba9-159b-4d1f-8713-caae0ec50a0a
+ - 4398306f-b02b-4603-893b-0a0ea2426bd5
status: 200 OK
code: 200
- duration: 222.29475ms
- - id: 73
+ duration: 159.535436ms
+ - id: 76
request:
proto: HTTP/1.1
proto_major: 1
@@ -3633,8 +3780,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de141f80-bcb9-4d1b-b91e-0c71769c128f
+ - scaleway-sdk-go/v1.0.0-beta.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/dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc
method: GET
response:
proto: HTTP/2.0
@@ -3642,20 +3789,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1672
+ content_length: 1712
uncompressed: false
- body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-12T16:01:32.495034+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-tender-lumiere","id":"de141f80-bcb9-4d1b-b91e-0c71769c128f","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:93:c7:23","maintenances":[],"modification_date":"2025-02-12T16:02:46.747614+00:00","name":"tf-srv-tender-lumiere","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"0aa2eadf-770f-41d8-84a6-e3929a361816","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
+ body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-05-22T15:17:16.277627+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sharp-joliot","id":"dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b0:1c:5f","maintenances":[],"modification_date":"2025-05-22T15:18:44.354119+00:00","name":"tf-srv-sharp-joliot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"379e909a-dbc1-4b87-9b11-a038a5488d43","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "1672"
+ - "1712"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:48 GMT
+ - Thu, 22 May 2025 15:18:45 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3663,11 +3810,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4fa459c2-2c2e-4dd1-a693-c1801c5a3d33
+ - 8031dc0c-8121-4ab4-9456-5c9c084d2acb
status: 200 OK
code: 200
- duration: 185.481208ms
- - id: 74
+ duration: 241.842133ms
+ - id: 77
request:
proto: HTTP/1.1
proto_major: 1
@@ -3682,29 +3829,27 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de141f80-bcb9-4d1b-b91e-0c71769c128f
- method: GET
+ - scaleway-sdk-go/v1.0.0-beta.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/dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc
+ method: DELETE
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1672
+ content_length: 0
uncompressed: false
- body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-12T16:01:32.495034+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-tender-lumiere","id":"de141f80-bcb9-4d1b-b91e-0c71769c128f","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:93:c7:23","maintenances":[],"modification_date":"2025-02-12T16:02:46.747614+00:00","name":"tf-srv-tender-lumiere","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"0aa2eadf-770f-41d8-84a6-e3929a361816","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
+ body: ""
headers:
- Content-Length:
- - "1672"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:48 GMT
+ - Thu, 22 May 2025 15:18:45 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3712,11 +3857,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 29d62de9-c221-4c6e-9b72-cf365b874490
- status: 200 OK
- code: 200
- duration: 753.070708ms
- - id: 75
+ - 4a61511c-4be4-4920-9d10-8c9829089e02
+ status: 204 No Content
+ code: 204
+ duration: 289.086194ms
+ - id: 78
request:
proto: HTTP/1.1
proto_major: 1
@@ -3731,27 +3876,29 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de141f80-bcb9-4d1b-b91e-0c71769c128f
- method: DELETE
+ - scaleway-sdk-go/v1.0.0-beta.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/dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc
+ 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":"dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc","type":"not_found"}'
headers:
+ Content-Length:
+ - "143"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:49 GMT
+ - Thu, 22 May 2025 15:18:45 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3759,11 +3906,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f1c4fdc9-7356-40a9-9f9c-df3f4321f5f0
- status: 204 No Content
- code: 204
- duration: 380.327708ms
- - id: 76
+ - 89f09763-1edd-4aae-b08a-8d0a9354e1ef
+ status: 404 Not Found
+ code: 404
+ duration: 105.100338ms
+ - id: 79
request:
proto: HTTP/1.1
proto_major: 1
@@ -3778,8 +3925,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de141f80-bcb9-4d1b-b91e-0c71769c128f
+ - scaleway-sdk-go/v1.0.0-beta.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/379e909a-dbc1-4b87-9b11-a038a5488d43
method: GET
response:
proto: HTTP/2.0
@@ -3789,7 +3936,7 @@ interactions:
trailer: {}
content_length: 143
uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_server","resource_id":"de141f80-bcb9-4d1b-b91e-0c71769c128f","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"379e909a-dbc1-4b87-9b11-a038a5488d43","type":"not_found"}'
headers:
Content-Length:
- "143"
@@ -3798,9 +3945,9 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:50 GMT
+ - Thu, 22 May 2025 15:18:45 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3808,11 +3955,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d9a0b2d3-9dd8-4931-bbf9-213dc6227b8b
+ - f30b405c-f763-440c-8890-d9001f306475
status: 404 Not Found
code: 404
- duration: 128.149375ms
- - id: 77
+ duration: 74.907891ms
+ - id: 80
request:
proto: HTTP/1.1
proto_major: 1
@@ -3827,8 +3974,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0aa2eadf-770f-41d8-84a6-e3929a361816
+ - scaleway-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/379e909a-dbc1-4b87-9b11-a038a5488d43
method: GET
response:
proto: HTTP/2.0
@@ -3836,20 +3983,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 143
+ content_length: 480
uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"0aa2eadf-770f-41d8-84a6-e3929a361816","type":"not_found"}'
+ body: '{"created_at":"2025-05-22T15:17:16.391721Z","id":"379e909a-dbc1-4b87-9b11-a038a5488d43","last_detached_at":"2025-05-22T15:18:45.407695Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-05-22T15:18:45.407695Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "143"
+ - "480"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:49 GMT
+ - Thu, 22 May 2025 15:18:45 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3857,11 +4004,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ba87640a-d283-49bc-883b-ac9bfe2ba85e
- status: 404 Not Found
- code: 404
- duration: 47.052625ms
- - id: 78
+ - bcf195fc-905b-4c1e-adeb-dea8b45ab1a9
+ status: 200 OK
+ code: 200
+ duration: 74.411109ms
+ - id: 81
request:
proto: HTTP/1.1
proto_major: 1
@@ -3876,29 +4023,27 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0aa2eadf-770f-41d8-84a6-e3929a361816
- method: GET
+ - scaleway-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/379e909a-dbc1-4b87-9b11-a038a5488d43
+ method: DELETE
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 494
+ content_length: 0
uncompressed: false
- body: '{"created_at":"2025-02-12T16:01:32.745747Z","id":"0aa2eadf-770f-41d8-84a6-e3929a361816","last_detached_at":"2025-02-12T16:02:49.875110Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"703a3bad-5fc4-450a-9b35-c128312df5f5","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-02-12T16:02:49.875110Z","zone":"fr-par-1"}'
+ body: ""
headers:
- Content-Length:
- - "494"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:50 GMT
+ - Thu, 22 May 2025 15:18:45 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3906,11 +4051,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - bde1e0f8-946b-4b59-9071-0c3f4924988d
- status: 200 OK
- code: 200
- duration: 86.268417ms
- - id: 79
+ - 8f42e210-8d4e-408c-95d2-883062d43aca
+ status: 204 No Content
+ code: 204
+ duration: 93.179775ms
+ - id: 82
request:
proto: HTTP/1.1
proto_major: 1
@@ -3925,27 +4070,29 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0aa2eadf-770f-41d8-84a6-e3929a361816
- method: DELETE
+ - scaleway-sdk-go/v1.0.0-beta.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/f000cd61-4bac-41d3-b9ec-1de6aa209d31
+ 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":"f000cd61-4bac-41d3-b9ec-1de6aa209d31","type":"not_found"}'
headers:
+ Content-Length:
+ - "142"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:50 GMT
+ - Thu, 22 May 2025 15:18:45 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3953,11 +4100,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 55fdf877-8e4d-4ce7-b8a3-6124f4d0891f
- status: 204 No Content
- code: 204
- duration: 143.240875ms
- - id: 80
+ - a793baea-bb1e-4533-b74a-6bb7941a5c45
+ status: 404 Not Found
+ code: 404
+ duration: 124.99626ms
+ - id: 83
request:
proto: HTTP/1.1
proto_major: 1
@@ -3972,29 +4119,29 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/775987a3-b39a-414c-b482-9b098f631d1e
- method: GET
+ - scaleway-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/5ee31a23-5197-430c-878d-0d74fcb32b71
+ method: DELETE
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 142
+ content_length: 129
uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_image","resource_id":"775987a3-b39a-414c-b482-9b098f631d1e","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"snapshot","resource_id":"5ee31a23-5197-430c-878d-0d74fcb32b71","type":"not_found"}'
headers:
Content-Length:
- - "142"
+ - "129"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:50 GMT
+ - Thu, 22 May 2025 15:18:45 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -4002,11 +4149,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 28e9679f-1c0b-4a3c-bcb4-28c78c91cf83
+ - ea4c1701-b1f4-42d8-9eb7-3ccff668d104
status: 404 Not Found
code: 404
- duration: 66.894459ms
- - id: 81
+ duration: 82.950397ms
+ - id: 84
request:
proto: HTTP/1.1
proto_major: 1
@@ -4021,8 +4168,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de141f80-bcb9-4d1b-b91e-0c71769c128f
+ - scaleway-sdk-go/v1.0.0-beta.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/dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc
method: GET
response:
proto: HTTP/2.0
@@ -4032,7 +4179,7 @@ interactions:
trailer: {}
content_length: 143
uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_server","resource_id":"de141f80-bcb9-4d1b-b91e-0c71769c128f","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"instance_server","resource_id":"dcedfc5f-6a16-4d86-8b3b-7e8b01179ebc","type":"not_found"}'
headers:
Content-Length:
- "143"
@@ -4041,9 +4188,9 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 12 Feb 2025 16:02:50 GMT
+ - Thu, 22 May 2025 15:18:46 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-2;edge01)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -4051,7 +4198,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - aafb0eac-c864-4db4-8998-ca985e937516
+ - 0608109a-ce9e-41d8-8b80-f41bc785bbf5
status: 404 Not Found
code: 404
- duration: 109.109ms
+ duration: 128.294982ms
diff --git a/internal/services/instance/testdata/server-additional-volumes-detach.cassette.yaml b/internal/services/instance/testdata/server-additional-volumes-detach.cassette.yaml
deleted file mode 100644
index 90393128c1..0000000000
--- a/internal/services/instance/testdata/server-additional-volumes-detach.cassette.yaml
+++ /dev/null
@@ -1,3865 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 106
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"name":"foobar","project":"105bdce1-64c0-48ab-899d-868455867ecf","volume_type":"b_ssd","size":1000000000}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 427
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T15:28:45.073822+00:00","export_uri":null,"id":"df96dde1-31f6-48f8-9ad5-43bda9f53c68","modification_date":"2025-02-11T15:28:45.073822+00:00","name":"foobar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":1000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "427"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:28:44 GMT
- Location:
- - https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/df96dde1-31f6-48f8-9ad5-43bda9f53c68
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 21f2a2df-bbb5-4b04-bfde-dc501f0319bb
- status: 201 Created
- code: 201
- duration: 456.532875ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/df96dde1-31f6-48f8-9ad5-43bda9f53c68
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 427
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T15:28:45.073822+00:00","export_uri":null,"id":"df96dde1-31f6-48f8-9ad5-43bda9f53c68","modification_date":"2025-02-11T15:28:45.073822+00:00","name":"foobar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":1000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "427"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:28:45 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 9b818858-a374-44fa-b5e3-82e73e218253
- status: 200 OK
- code: 200
- duration: 99.675459ms
- - id: 2
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/df96dde1-31f6-48f8-9ad5-43bda9f53c68
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 427
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T15:28:45.073822+00:00","export_uri":null,"id":"df96dde1-31f6-48f8-9ad5-43bda9f53c68","modification_date":"2025-02-11T15:28:45.073822+00:00","name":"foobar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":1000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "427"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:28:45 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - e6666d84-1b03-4d2c-a2d4-fed78d69b68d
- status: 200 OK
- code: 200
- duration: 106.368875ms
- - id: 3
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 35639
- uncompressed: false
- body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":6710886400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":13421772800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":6710886400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":6710886400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":13421772800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":6710886400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":13421772800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":6710886400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":13421772800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}'
- headers:
- Content-Length:
- - "35639"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:28:45 GMT
- Link:
- - ; rel="next",; rel="last"
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 89c90451-18ac-4930-89b6-b167bcf15b8a
- X-Total-Count:
- - "68"
- status: 200 OK
- code: 200
- duration: 106.940833ms
- - id: 4
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 13164
- uncompressed: false
- body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":1,"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":200000000000}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":100000000000}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":50000000000}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":25000000000}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":200000000000}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":100000000000}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":50000000000}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":1000000000000,"min_size":500000000000}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":200000000000}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":300000000000}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":400000000000}}}}'
- headers:
- Content-Length:
- - "13164"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:28:45 GMT
- Link:
- - ; rel="first",; rel="previous",; rel="last"
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 4fe471eb-1fa1-401e-ba86-9cde92fd2503
- X-Total-Count:
- - "68"
- status: 200 OK
- code: 200
- duration: 64.29075ms
- - id: 5
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/df96dde1-31f6-48f8-9ad5-43bda9f53c68
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 427
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T15:28:45.073822+00:00","export_uri":null,"id":"df96dde1-31f6-48f8-9ad5-43bda9f53c68","modification_date":"2025-02-11T15:28:45.073822+00:00","name":"foobar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":1000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "427"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:28:45 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - ebf77e39-8d58-49cc-a6b8-e3d8a5d7366f
- status: 200 OK
- code: 200
- duration: 114.806291ms
- - id: 6
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 1296
- uncompressed: false
- body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"57509e82-ac3b-49b7-9970-97b60f40ff72","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"arm64","compatible_commercial_types":["AMP2-C1","AMP2-C2","AMP2-C4","AMP2-C8","AMP2-C12","AMP2-C24","AMP2-C48","AMP2-C60","COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"9b647e1e-253a-41e7-8c15-911c622ee2dc","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}'
- headers:
- Content-Length:
- - "1296"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:28:45 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 0dd32210-50c5-4f37-a4a3-0e64bcdc06a4
- status: 200 OK
- code: 200
- duration: 110.878ms
- - id: 7
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 284
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"name":"foobar","dynamic_ip_required":true,"commercial_type":"DEV1-S","image":"57509e82-ac3b-49b7-9970-97b60f40ff72","volumes":{"0":{"boot":false},"1":{"id":"df96dde1-31f6-48f8-9ad5-43bda9f53c68","name":"foobar"}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2178
- uncompressed: false
- body: '{"server":{"admin_password_encrypted_value":null,"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T15:28:46.367923+00:00","dynamic_ip_required":true,"enable_ipv6":false,"extra_networks":[],"hostname":"foobar","id":"50065cc5-82db-40fb-8481-43b9d6d58709","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:93:71:a3","maintenances":[],"modification_date":"2025-02-11T15:28:46.367923+00:00","name":"foobar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"1c9d9721-c5d6-4b91-99fb-771a503d1478","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T15:28:45.073822+00:00","export_uri":null,"id":"df96dde1-31f6-48f8-9ad5-43bda9f53c68","modification_date":"2025-02-11T15:28:46.367923+00:00","name":"foobar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"50065cc5-82db-40fb-8481-43b9d6d58709","name":"foobar"},"size":1000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2178"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:28:46 GMT
- Location:
- - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/50065cc5-82db-40fb-8481-43b9d6d58709
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 71049aa9-6212-4201-b9fe-f11eb3e398cf
- status: 201 Created
- code: 201
- duration: 1.464108708s
- - id: 8
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/50065cc5-82db-40fb-8481-43b9d6d58709
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2138
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T15:28:46.367923+00:00","dynamic_ip_required":true,"enable_ipv6":false,"extra_networks":[],"hostname":"foobar","id":"50065cc5-82db-40fb-8481-43b9d6d58709","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:93:71:a3","maintenances":[],"modification_date":"2025-02-11T15:28:46.367923+00:00","name":"foobar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"1c9d9721-c5d6-4b91-99fb-771a503d1478","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T15:28:45.073822+00:00","export_uri":null,"id":"df96dde1-31f6-48f8-9ad5-43bda9f53c68","modification_date":"2025-02-11T15:28:46.367923+00:00","name":"foobar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"50065cc5-82db-40fb-8481-43b9d6d58709","name":"foobar"},"size":1000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2138"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:28:47 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 9ff5a1fc-011a-4d3a-845f-266bf6a282fa
- status: 200 OK
- code: 200
- duration: 206.415084ms
- - id: 9
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/50065cc5-82db-40fb-8481-43b9d6d58709
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2138
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T15:28:46.367923+00:00","dynamic_ip_required":true,"enable_ipv6":false,"extra_networks":[],"hostname":"foobar","id":"50065cc5-82db-40fb-8481-43b9d6d58709","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:93:71:a3","maintenances":[],"modification_date":"2025-02-11T15:28:46.367923+00:00","name":"foobar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"1c9d9721-c5d6-4b91-99fb-771a503d1478","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T15:28:45.073822+00:00","export_uri":null,"id":"df96dde1-31f6-48f8-9ad5-43bda9f53c68","modification_date":"2025-02-11T15:28:46.367923+00:00","name":"foobar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"50065cc5-82db-40fb-8481-43b9d6d58709","name":"foobar"},"size":1000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2138"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:28:47 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - b7ff25df-24c5-4569-ab08-4df7de20e810
- status: 200 OK
- code: 200
- duration: 307.830584ms
- - id: 10
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1c9d9721-c5d6-4b91-99fb-771a503d1478
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 701
- uncompressed: false
- body: '{"created_at":"2025-02-11T15:28:46.586882Z","id":"1c9d9721-c5d6-4b91-99fb-771a503d1478","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"703a3bad-5fc4-450a-9b35-c128312df5f5","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-02-11T15:28:46.586882Z","id":"173006c5-5a64-486f-829e-9a5a813fcd5f","product_resource_id":"50065cc5-82db-40fb-8481-43b9d6d58709","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-02-11T15:28:46.586882Z","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "701"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:28:47 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - dfd83083-24e3-4e57-8b75-e9b7530553a8
- status: 200 OK
- code: 200
- duration: 92.918417ms
- - id: 11
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 20
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"action":"poweron"}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/50065cc5-82db-40fb-8481-43b9d6d58709/action
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 357
- uncompressed: false
- body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/50065cc5-82db-40fb-8481-43b9d6d58709/action","href_result":"/servers/50065cc5-82db-40fb-8481-43b9d6d58709","id":"8fc1bfc3-83f1-4715-af71-7d6321300fe9","progress":0,"started_at":"2025-02-11T15:28:48.414886+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "357"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:28:47 GMT
- Location:
- - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/8fc1bfc3-83f1-4715-af71-7d6321300fe9
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - dbd5794e-f5e3-4dcf-9c11-ab9c85ddbb1c
- status: 202 Accepted
- code: 202
- duration: 606.992833ms
- - id: 12
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/50065cc5-82db-40fb-8481-43b9d6d58709
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2160
- uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T15:28:46.367923+00:00","dynamic_ip_required":true,"enable_ipv6":false,"extra_networks":[],"hostname":"foobar","id":"50065cc5-82db-40fb-8481-43b9d6d58709","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:93:71:a3","maintenances":[],"modification_date":"2025-02-11T15:28:47.883247+00:00","name":"foobar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"1c9d9721-c5d6-4b91-99fb-771a503d1478","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T15:28:45.073822+00:00","export_uri":null,"id":"df96dde1-31f6-48f8-9ad5-43bda9f53c68","modification_date":"2025-02-11T15:28:46.367923+00:00","name":"foobar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"50065cc5-82db-40fb-8481-43b9d6d58709","name":"foobar"},"size":1000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2160"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:28:48 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 53eaf697-541e-4c5c-adfe-8887555de58c
- status: 200 OK
- code: 200
- duration: 211.0615ms
- - id: 13
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/50065cc5-82db-40fb-8481-43b9d6d58709
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2817
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T15:28:46.367923+00:00","dynamic_ip_required":true,"enable_ipv6":false,"extra_networks":[],"hostname":"foobar","id":"50065cc5-82db-40fb-8481-43b9d6d58709","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"604","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:71:a3","maintenances":[],"modification_date":"2025-02-11T15:28:52.731637+00:00","name":"foobar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.219.146","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"090b718f-a41b-45ad-9bdb-0514effd355c","ipam_id":"72d0ef4e-8b26-41af-9d61-ff736f90f605","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.219.146","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"090b718f-a41b-45ad-9bdb-0514effd355c","ipam_id":"72d0ef4e-8b26-41af-9d61-ff736f90f605","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1c9d9721-c5d6-4b91-99fb-771a503d1478","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T15:28:45.073822+00:00","export_uri":null,"id":"df96dde1-31f6-48f8-9ad5-43bda9f53c68","modification_date":"2025-02-11T15:28:46.367923+00:00","name":"foobar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"50065cc5-82db-40fb-8481-43b9d6d58709","name":"foobar"},"size":1000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2817"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:28:54 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 048970d3-a3cd-48c9-8da8-c4f2039da44e
- status: 200 OK
- code: 200
- duration: 794.139417ms
- - id: 14
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/50065cc5-82db-40fb-8481-43b9d6d58709
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2817
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T15:28:46.367923+00:00","dynamic_ip_required":true,"enable_ipv6":false,"extra_networks":[],"hostname":"foobar","id":"50065cc5-82db-40fb-8481-43b9d6d58709","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"604","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:71:a3","maintenances":[],"modification_date":"2025-02-11T15:28:52.731637+00:00","name":"foobar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.219.146","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"090b718f-a41b-45ad-9bdb-0514effd355c","ipam_id":"72d0ef4e-8b26-41af-9d61-ff736f90f605","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.219.146","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"090b718f-a41b-45ad-9bdb-0514effd355c","ipam_id":"72d0ef4e-8b26-41af-9d61-ff736f90f605","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1c9d9721-c5d6-4b91-99fb-771a503d1478","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T15:28:45.073822+00:00","export_uri":null,"id":"df96dde1-31f6-48f8-9ad5-43bda9f53c68","modification_date":"2025-02-11T15:28:46.367923+00:00","name":"foobar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"50065cc5-82db-40fb-8481-43b9d6d58709","name":"foobar"},"size":1000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2817"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:28:54 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 00ac00fb-1634-4ffe-9877-07b4a962955a
- status: 200 OK
- code: 200
- duration: 203.113125ms
- - id: 15
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1c9d9721-c5d6-4b91-99fb-771a503d1478
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 143
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"1c9d9721-c5d6-4b91-99fb-771a503d1478","type":"not_found"}'
- headers:
- Content-Length:
- - "143"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:28:54 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - b27ca352-76d7-47fb-a505-794702ad21a7
- status: 404 Not Found
- code: 404
- duration: 55.742ms
- - id: 16
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1c9d9721-c5d6-4b91-99fb-771a503d1478
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 701
- uncompressed: false
- body: '{"created_at":"2025-02-11T15:28:46.586882Z","id":"1c9d9721-c5d6-4b91-99fb-771a503d1478","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"703a3bad-5fc4-450a-9b35-c128312df5f5","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-02-11T15:28:46.586882Z","id":"173006c5-5a64-486f-829e-9a5a813fcd5f","product_resource_id":"50065cc5-82db-40fb-8481-43b9d6d58709","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-02-11T15:28:46.586882Z","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "701"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:28:54 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - a6cb0659-ea5f-43ca-ac6c-0e5e90a9db2d
- status: 200 OK
- code: 200
- duration: 79.615916ms
- - id: 17
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/50065cc5-82db-40fb-8481-43b9d6d58709/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:
- - Tue, 11 Feb 2025 15:28:54 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 5c025006-25ff-4dfd-b445-980d21aa361f
- status: 200 OK
- code: 200
- duration: 104.097708ms
- - id: 18
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/50065cc5-82db-40fb-8481-43b9d6d58709/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:
- - Tue, 11 Feb 2025 15:28:54 GMT
- Link:
- - ; rel="last"
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 0628510b-90c2-4255-8dcb-21da4e1c62a5
- X-Total-Count:
- - "0"
- status: 200 OK
- code: 200
- duration: 108.403041ms
- - id: 19
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/df96dde1-31f6-48f8-9ad5-43bda9f53c68
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 487
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T15:28:45.073822+00:00","export_uri":null,"id":"df96dde1-31f6-48f8-9ad5-43bda9f53c68","modification_date":"2025-02-11T15:28:46.367923+00:00","name":"foobar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"50065cc5-82db-40fb-8481-43b9d6d58709","name":"foobar"},"size":1000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "487"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:28:55 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - c4b89a04-1368-4811-a0f2-ae80f62edcc7
- status: 200 OK
- code: 200
- duration: 112.385958ms
- - id: 20
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/50065cc5-82db-40fb-8481-43b9d6d58709
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2817
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T15:28:46.367923+00:00","dynamic_ip_required":true,"enable_ipv6":false,"extra_networks":[],"hostname":"foobar","id":"50065cc5-82db-40fb-8481-43b9d6d58709","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"604","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:71:a3","maintenances":[],"modification_date":"2025-02-11T15:28:52.731637+00:00","name":"foobar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.219.146","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"090b718f-a41b-45ad-9bdb-0514effd355c","ipam_id":"72d0ef4e-8b26-41af-9d61-ff736f90f605","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.219.146","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"090b718f-a41b-45ad-9bdb-0514effd355c","ipam_id":"72d0ef4e-8b26-41af-9d61-ff736f90f605","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1c9d9721-c5d6-4b91-99fb-771a503d1478","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T15:28:45.073822+00:00","export_uri":null,"id":"df96dde1-31f6-48f8-9ad5-43bda9f53c68","modification_date":"2025-02-11T15:28:46.367923+00:00","name":"foobar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"50065cc5-82db-40fb-8481-43b9d6d58709","name":"foobar"},"size":1000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2817"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:28:55 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - c6d9b411-059f-43e8-80de-1beea5d32fe8
- status: 200 OK
- code: 200
- duration: 331.610541ms
- - id: 21
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1c9d9721-c5d6-4b91-99fb-771a503d1478
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 143
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"1c9d9721-c5d6-4b91-99fb-771a503d1478","type":"not_found"}'
- headers:
- Content-Length:
- - "143"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:28:55 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 85a0ae78-9212-400f-81d4-6678a0f6c1d8
- status: 404 Not Found
- code: 404
- duration: 65.093375ms
- - id: 22
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1c9d9721-c5d6-4b91-99fb-771a503d1478
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 701
- uncompressed: false
- body: '{"created_at":"2025-02-11T15:28:46.586882Z","id":"1c9d9721-c5d6-4b91-99fb-771a503d1478","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"703a3bad-5fc4-450a-9b35-c128312df5f5","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-02-11T15:28:46.586882Z","id":"173006c5-5a64-486f-829e-9a5a813fcd5f","product_resource_id":"50065cc5-82db-40fb-8481-43b9d6d58709","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-02-11T15:28:46.586882Z","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "701"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:28:55 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 5a51ce32-9887-4e2b-add0-95dbdda149ba
- status: 200 OK
- code: 200
- duration: 101.854167ms
- - id: 23
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/50065cc5-82db-40fb-8481-43b9d6d58709/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:
- - Tue, 11 Feb 2025 15:28:55 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - d2b30e3b-f96c-4b51-ae95-7e9a6b2d120d
- status: 200 OK
- code: 200
- duration: 91.608959ms
- - id: 24
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/50065cc5-82db-40fb-8481-43b9d6d58709/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:
- - Tue, 11 Feb 2025 15:28:55 GMT
- Link:
- - ; rel="last"
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 258f0e22-a193-47cd-b29e-4aff2063a005
- X-Total-Count:
- - "0"
- status: 200 OK
- code: 200
- duration: 117.438333ms
- - id: 25
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/df96dde1-31f6-48f8-9ad5-43bda9f53c68
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 487
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T15:28:45.073822+00:00","export_uri":null,"id":"df96dde1-31f6-48f8-9ad5-43bda9f53c68","modification_date":"2025-02-11T15:28:46.367923+00:00","name":"foobar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"50065cc5-82db-40fb-8481-43b9d6d58709","name":"foobar"},"size":1000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "487"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:28:56 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - ee699458-fb9d-496e-841f-591c0c18b65e
- status: 200 OK
- code: 200
- duration: 103.044958ms
- - id: 26
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/50065cc5-82db-40fb-8481-43b9d6d58709
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2817
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T15:28:46.367923+00:00","dynamic_ip_required":true,"enable_ipv6":false,"extra_networks":[],"hostname":"foobar","id":"50065cc5-82db-40fb-8481-43b9d6d58709","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"604","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:71:a3","maintenances":[],"modification_date":"2025-02-11T15:28:52.731637+00:00","name":"foobar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.219.146","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"090b718f-a41b-45ad-9bdb-0514effd355c","ipam_id":"72d0ef4e-8b26-41af-9d61-ff736f90f605","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.219.146","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"090b718f-a41b-45ad-9bdb-0514effd355c","ipam_id":"72d0ef4e-8b26-41af-9d61-ff736f90f605","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1c9d9721-c5d6-4b91-99fb-771a503d1478","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T15:28:45.073822+00:00","export_uri":null,"id":"df96dde1-31f6-48f8-9ad5-43bda9f53c68","modification_date":"2025-02-11T15:28:46.367923+00:00","name":"foobar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"50065cc5-82db-40fb-8481-43b9d6d58709","name":"foobar"},"size":1000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2817"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:28:56 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - ed678963-47bd-458a-94cb-fb5be9bf7ba1
- status: 200 OK
- code: 200
- duration: 217.997083ms
- - id: 27
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1c9d9721-c5d6-4b91-99fb-771a503d1478
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 143
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"1c9d9721-c5d6-4b91-99fb-771a503d1478","type":"not_found"}'
- headers:
- Content-Length:
- - "143"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:28:56 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - c5aff6b8-b953-4f23-b21d-57e2ed3aba1c
- status: 404 Not Found
- code: 404
- duration: 62.181708ms
- - id: 28
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1c9d9721-c5d6-4b91-99fb-771a503d1478
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 701
- uncompressed: false
- body: '{"created_at":"2025-02-11T15:28:46.586882Z","id":"1c9d9721-c5d6-4b91-99fb-771a503d1478","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"703a3bad-5fc4-450a-9b35-c128312df5f5","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-02-11T15:28:46.586882Z","id":"173006c5-5a64-486f-829e-9a5a813fcd5f","product_resource_id":"50065cc5-82db-40fb-8481-43b9d6d58709","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-02-11T15:28:46.586882Z","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "701"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:28:56 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 19b9f4e8-02b1-4fd6-a08a-47483489629e
- status: 200 OK
- code: 200
- duration: 92.81475ms
- - id: 29
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/50065cc5-82db-40fb-8481-43b9d6d58709/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:
- - Tue, 11 Feb 2025 15:28:56 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 6ad7c497-4d87-49c8-8a7d-969d51bd8cbc
- status: 200 OK
- code: 200
- duration: 99.737584ms
- - id: 30
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/50065cc5-82db-40fb-8481-43b9d6d58709/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:
- - Tue, 11 Feb 2025 15:28:56 GMT
- Link:
- - ; rel="last"
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 12428c91-6712-470d-95d3-7ac2e8b6fdb4
- X-Total-Count:
- - "0"
- status: 200 OK
- code: 200
- duration: 101.123166ms
- - id: 31
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/50065cc5-82db-40fb-8481-43b9d6d58709
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2817
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T15:28:46.367923+00:00","dynamic_ip_required":true,"enable_ipv6":false,"extra_networks":[],"hostname":"foobar","id":"50065cc5-82db-40fb-8481-43b9d6d58709","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"604","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:71:a3","maintenances":[],"modification_date":"2025-02-11T15:28:52.731637+00:00","name":"foobar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.219.146","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"090b718f-a41b-45ad-9bdb-0514effd355c","ipam_id":"72d0ef4e-8b26-41af-9d61-ff736f90f605","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.219.146","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"090b718f-a41b-45ad-9bdb-0514effd355c","ipam_id":"72d0ef4e-8b26-41af-9d61-ff736f90f605","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1c9d9721-c5d6-4b91-99fb-771a503d1478","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T15:28:45.073822+00:00","export_uri":null,"id":"df96dde1-31f6-48f8-9ad5-43bda9f53c68","modification_date":"2025-02-11T15:28:46.367923+00:00","name":"foobar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"50065cc5-82db-40fb-8481-43b9d6d58709","name":"foobar"},"size":1000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2817"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:28:57 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 7c1f2d0f-1594-4bdd-8547-82215ec73389
- status: 200 OK
- code: 200
- duration: 194.540375ms
- - id: 32
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 107
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"volumes":{"0":{"id":"1c9d9721-c5d6-4b91-99fb-771a503d1478","boot":false,"name":"tf-vol-happy-meninsky"}}}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/50065cc5-82db-40fb-8481-43b9d6d58709
- method: PATCH
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2320
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T15:28:46.367923+00:00","dynamic_ip_required":true,"enable_ipv6":false,"extra_networks":[],"hostname":"foobar","id":"50065cc5-82db-40fb-8481-43b9d6d58709","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"604","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:71:a3","maintenances":[],"modification_date":"2025-02-11T15:28:52.731637+00:00","name":"foobar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.219.146","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"090b718f-a41b-45ad-9bdb-0514effd355c","ipam_id":"72d0ef4e-8b26-41af-9d61-ff736f90f605","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.219.146","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"090b718f-a41b-45ad-9bdb-0514effd355c","ipam_id":"72d0ef4e-8b26-41af-9d61-ff736f90f605","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1c9d9721-c5d6-4b91-99fb-771a503d1478","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2320"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:28:57 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 7d77dc64-abc8-4cfa-aaec-6069bec6f0af
- status: 200 OK
- code: 200
- duration: 824.363167ms
- - id: 33
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/50065cc5-82db-40fb-8481-43b9d6d58709
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2320
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T15:28:46.367923+00:00","dynamic_ip_required":true,"enable_ipv6":false,"extra_networks":[],"hostname":"foobar","id":"50065cc5-82db-40fb-8481-43b9d6d58709","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"604","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:71:a3","maintenances":[],"modification_date":"2025-02-11T15:28:52.731637+00:00","name":"foobar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.219.146","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"090b718f-a41b-45ad-9bdb-0514effd355c","ipam_id":"72d0ef4e-8b26-41af-9d61-ff736f90f605","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.219.146","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"090b718f-a41b-45ad-9bdb-0514effd355c","ipam_id":"72d0ef4e-8b26-41af-9d61-ff736f90f605","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1c9d9721-c5d6-4b91-99fb-771a503d1478","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2320"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:28:58 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - fdabf947-6ec3-4c23-b585-c524af0b5f01
- status: 200 OK
- code: 200
- duration: 215.864292ms
- - id: 34
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/50065cc5-82db-40fb-8481-43b9d6d58709
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2320
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T15:28:46.367923+00:00","dynamic_ip_required":true,"enable_ipv6":false,"extra_networks":[],"hostname":"foobar","id":"50065cc5-82db-40fb-8481-43b9d6d58709","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"604","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:71:a3","maintenances":[],"modification_date":"2025-02-11T15:28:52.731637+00:00","name":"foobar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.219.146","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"090b718f-a41b-45ad-9bdb-0514effd355c","ipam_id":"72d0ef4e-8b26-41af-9d61-ff736f90f605","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.219.146","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"090b718f-a41b-45ad-9bdb-0514effd355c","ipam_id":"72d0ef4e-8b26-41af-9d61-ff736f90f605","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1c9d9721-c5d6-4b91-99fb-771a503d1478","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2320"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:28:58 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - cef49943-1687-488d-94ed-eb3ece11359a
- status: 200 OK
- code: 200
- duration: 284.290667ms
- - id: 35
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1c9d9721-c5d6-4b91-99fb-771a503d1478
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 143
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"1c9d9721-c5d6-4b91-99fb-771a503d1478","type":"not_found"}'
- headers:
- Content-Length:
- - "143"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:28:58 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 2bf57112-82d3-49d5-8342-71e6c94546b3
- status: 404 Not Found
- code: 404
- duration: 56.079125ms
- - id: 36
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1c9d9721-c5d6-4b91-99fb-771a503d1478
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 701
- uncompressed: false
- body: '{"created_at":"2025-02-11T15:28:46.586882Z","id":"1c9d9721-c5d6-4b91-99fb-771a503d1478","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"703a3bad-5fc4-450a-9b35-c128312df5f5","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-02-11T15:28:46.586882Z","id":"173006c5-5a64-486f-829e-9a5a813fcd5f","product_resource_id":"50065cc5-82db-40fb-8481-43b9d6d58709","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-02-11T15:28:46.586882Z","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "701"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:28:58 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - f1ff9546-4912-4210-a634-c8c13f091a44
- status: 200 OK
- code: 200
- duration: 92.725208ms
- - id: 37
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/50065cc5-82db-40fb-8481-43b9d6d58709/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:
- - Tue, 11 Feb 2025 15:28:58 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - b283d43c-6403-4c61-ae79-98701d0c100b
- status: 200 OK
- code: 200
- duration: 95.68625ms
- - id: 38
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/50065cc5-82db-40fb-8481-43b9d6d58709/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:
- - Tue, 11 Feb 2025 15:28:58 GMT
- Link:
- - ; rel="last"
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 320bea38-f42a-49d8-b947-6d8c99c72193
- X-Total-Count:
- - "0"
- status: 200 OK
- code: 200
- duration: 108.508542ms
- - id: 39
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/df96dde1-31f6-48f8-9ad5-43bda9f53c68
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 428
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T15:28:45.073822+00:00","export_uri":null,"id":"df96dde1-31f6-48f8-9ad5-43bda9f53c68","modification_date":"2025-02-11T15:28:57.466065+00:00","name":"foobar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":1000000000,"state":"hotsyncing","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "428"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:28:58 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 4e98065a-0ea4-426f-8fc6-51528141b2c3
- status: 200 OK
- code: 200
- duration: 122.154125ms
- - id: 40
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/df96dde1-31f6-48f8-9ad5-43bda9f53c68
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 428
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T15:28:45.073822+00:00","export_uri":null,"id":"df96dde1-31f6-48f8-9ad5-43bda9f53c68","modification_date":"2025-02-11T15:28:57.466065+00:00","name":"foobar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":1000000000,"state":"hotsyncing","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "428"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:28:59 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - d472da2c-c561-4c26-8844-5bba7961c512
- status: 200 OK
- code: 200
- duration: 103.535667ms
- - id: 41
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/50065cc5-82db-40fb-8481-43b9d6d58709
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2320
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T15:28:46.367923+00:00","dynamic_ip_required":true,"enable_ipv6":false,"extra_networks":[],"hostname":"foobar","id":"50065cc5-82db-40fb-8481-43b9d6d58709","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"604","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:71:a3","maintenances":[],"modification_date":"2025-02-11T15:28:52.731637+00:00","name":"foobar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.219.146","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"090b718f-a41b-45ad-9bdb-0514effd355c","ipam_id":"72d0ef4e-8b26-41af-9d61-ff736f90f605","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.219.146","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"090b718f-a41b-45ad-9bdb-0514effd355c","ipam_id":"72d0ef4e-8b26-41af-9d61-ff736f90f605","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1c9d9721-c5d6-4b91-99fb-771a503d1478","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2320"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:28:59 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 28e281d2-919f-4dcb-80ed-4f32684e42fe
- status: 200 OK
- code: 200
- duration: 176.229584ms
- - id: 42
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1c9d9721-c5d6-4b91-99fb-771a503d1478
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 143
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"1c9d9721-c5d6-4b91-99fb-771a503d1478","type":"not_found"}'
- headers:
- Content-Length:
- - "143"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:28:59 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 5605fd09-7069-41ef-8b97-8e8dc873e085
- status: 404 Not Found
- code: 404
- duration: 51.329667ms
- - id: 43
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1c9d9721-c5d6-4b91-99fb-771a503d1478
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 701
- uncompressed: false
- body: '{"created_at":"2025-02-11T15:28:46.586882Z","id":"1c9d9721-c5d6-4b91-99fb-771a503d1478","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"703a3bad-5fc4-450a-9b35-c128312df5f5","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-02-11T15:28:46.586882Z","id":"173006c5-5a64-486f-829e-9a5a813fcd5f","product_resource_id":"50065cc5-82db-40fb-8481-43b9d6d58709","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-02-11T15:28:46.586882Z","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "701"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:28:59 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - aa9d7181-1c43-41c4-a7ac-d90d2c250c9d
- status: 200 OK
- code: 200
- duration: 96.710167ms
- - id: 44
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/50065cc5-82db-40fb-8481-43b9d6d58709/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:
- - Tue, 11 Feb 2025 15:28:59 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 0913d75f-7258-4aa7-a83f-46876461b142
- status: 200 OK
- code: 200
- duration: 274.771292ms
- - id: 45
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/50065cc5-82db-40fb-8481-43b9d6d58709/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:
- - Tue, 11 Feb 2025 15:28:59 GMT
- Link:
- - ; rel="last"
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 6f32454c-961d-4045-b21b-88c5b5ec1acb
- X-Total-Count:
- - "0"
- status: 200 OK
- code: 200
- duration: 101.127041ms
- - id: 46
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/df96dde1-31f6-48f8-9ad5-43bda9f53c68
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 428
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T15:28:45.073822+00:00","export_uri":null,"id":"df96dde1-31f6-48f8-9ad5-43bda9f53c68","modification_date":"2025-02-11T15:28:57.466065+00:00","name":"foobar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":1000000000,"state":"hotsyncing","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "428"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:29:00 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 221b4490-6fec-4dc3-9513-7d942bb5768c
- status: 200 OK
- code: 200
- duration: 103.003375ms
- - id: 47
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/50065cc5-82db-40fb-8481-43b9d6d58709
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2320
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T15:28:46.367923+00:00","dynamic_ip_required":true,"enable_ipv6":false,"extra_networks":[],"hostname":"foobar","id":"50065cc5-82db-40fb-8481-43b9d6d58709","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"604","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:71:a3","maintenances":[],"modification_date":"2025-02-11T15:28:52.731637+00:00","name":"foobar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.219.146","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"090b718f-a41b-45ad-9bdb-0514effd355c","ipam_id":"72d0ef4e-8b26-41af-9d61-ff736f90f605","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.219.146","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"090b718f-a41b-45ad-9bdb-0514effd355c","ipam_id":"72d0ef4e-8b26-41af-9d61-ff736f90f605","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1c9d9721-c5d6-4b91-99fb-771a503d1478","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2320"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:29:00 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - d6068bc8-8f9a-40fa-ae9a-42508bc00063
- status: 200 OK
- code: 200
- duration: 240.741333ms
- - id: 48
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1c9d9721-c5d6-4b91-99fb-771a503d1478
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 701
- uncompressed: false
- body: '{"created_at":"2025-02-11T15:28:46.586882Z","id":"1c9d9721-c5d6-4b91-99fb-771a503d1478","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"703a3bad-5fc4-450a-9b35-c128312df5f5","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-02-11T15:28:46.586882Z","id":"173006c5-5a64-486f-829e-9a5a813fcd5f","product_resource_id":"50065cc5-82db-40fb-8481-43b9d6d58709","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-02-11T15:28:46.586882Z","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "701"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:29:00 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 43b09aaa-0c0b-4c21-b81c-aa2fb8542088
- status: 200 OK
- code: 200
- duration: 117.226792ms
- - id: 49
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 21
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"action":"poweroff"}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/50065cc5-82db-40fb-8481-43b9d6d58709/action
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 352
- uncompressed: false
- body: '{"task":{"description":"server_poweroff","href_from":"/servers/50065cc5-82db-40fb-8481-43b9d6d58709/action","href_result":"/servers/50065cc5-82db-40fb-8481-43b9d6d58709","id":"3c1d5702-0566-4ab3-8f3c-c4244e3200b6","progress":0,"started_at":"2025-02-11T15:29:01.007960+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "352"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:29:00 GMT
- Location:
- - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/3c1d5702-0566-4ab3-8f3c-c4244e3200b6
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 40854988-616c-43a8-8101-f45217ea6645
- status: 202 Accepted
- code: 202
- duration: 273.737166ms
- - id: 50
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/50065cc5-82db-40fb-8481-43b9d6d58709
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2280
- uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T15:28:46.367923+00:00","dynamic_ip_required":true,"enable_ipv6":false,"extra_networks":[],"hostname":"foobar","id":"50065cc5-82db-40fb-8481-43b9d6d58709","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"604","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:71:a3","maintenances":[],"modification_date":"2025-02-11T15:29:00.811804+00:00","name":"foobar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.219.146","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"090b718f-a41b-45ad-9bdb-0514effd355c","ipam_id":"72d0ef4e-8b26-41af-9d61-ff736f90f605","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.219.146","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"090b718f-a41b-45ad-9bdb-0514effd355c","ipam_id":"72d0ef4e-8b26-41af-9d61-ff736f90f605","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"1c9d9721-c5d6-4b91-99fb-771a503d1478","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2280"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:29:01 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 83070408-28c6-4f12-886f-c7ef3bc412e4
- status: 200 OK
- code: 200
- duration: 312.848042ms
- - id: 51
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/df96dde1-31f6-48f8-9ad5-43bda9f53c68
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 428
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T15:28:45.073822+00:00","export_uri":null,"id":"df96dde1-31f6-48f8-9ad5-43bda9f53c68","modification_date":"2025-02-11T15:28:57.466065+00:00","name":"foobar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":1000000000,"state":"hotsyncing","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "428"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:29:05 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - aeedb06c-8ba1-4dbc-ac8e-58fea36a430e
- status: 200 OK
- code: 200
- duration: 103.697333ms
- - id: 52
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/50065cc5-82db-40fb-8481-43b9d6d58709
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 1756
- uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T15:28:46.367923+00:00","dynamic_ip_required":true,"enable_ipv6":false,"extra_networks":[],"hostname":"foobar","id":"50065cc5-82db-40fb-8481-43b9d6d58709","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"604","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:71:a3","maintenances":[],"modification_date":"2025-02-11T15:29:00.811804+00:00","name":"foobar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"1c9d9721-c5d6-4b91-99fb-771a503d1478","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "1756"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:29:06 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 0b2e629b-8ba2-41e3-953c-a20864da09f9
- status: 200 OK
- code: 200
- duration: 188.879375ms
- - id: 53
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/df96dde1-31f6-48f8-9ad5-43bda9f53c68
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 428
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T15:28:45.073822+00:00","export_uri":null,"id":"df96dde1-31f6-48f8-9ad5-43bda9f53c68","modification_date":"2025-02-11T15:28:57.466065+00:00","name":"foobar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":1000000000,"state":"hotsyncing","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "428"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:29:10 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 179bb2eb-0867-4a2f-9ebc-e8d9b75805b7
- status: 200 OK
- code: 200
- duration: 112.693ms
- - id: 54
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/50065cc5-82db-40fb-8481-43b9d6d58709
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 1756
- uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T15:28:46.367923+00:00","dynamic_ip_required":true,"enable_ipv6":false,"extra_networks":[],"hostname":"foobar","id":"50065cc5-82db-40fb-8481-43b9d6d58709","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"604","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:71:a3","maintenances":[],"modification_date":"2025-02-11T15:29:00.811804+00:00","name":"foobar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"1c9d9721-c5d6-4b91-99fb-771a503d1478","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "1756"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:29:11 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 9ad3ad56-aff1-45f2-83c2-e8f206c8e65d
- status: 200 OK
- code: 200
- duration: 180.93575ms
- - id: 55
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/df96dde1-31f6-48f8-9ad5-43bda9f53c68
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 428
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T15:28:45.073822+00:00","export_uri":null,"id":"df96dde1-31f6-48f8-9ad5-43bda9f53c68","modification_date":"2025-02-11T15:28:57.466065+00:00","name":"foobar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":1000000000,"state":"hotsyncing","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "428"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:29:15 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - e1edce90-5bfb-4fed-96f7-531bcb0672f4
- status: 200 OK
- code: 200
- duration: 261.912ms
- - id: 56
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/50065cc5-82db-40fb-8481-43b9d6d58709
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 1756
- uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T15:28:46.367923+00:00","dynamic_ip_required":true,"enable_ipv6":false,"extra_networks":[],"hostname":"foobar","id":"50065cc5-82db-40fb-8481-43b9d6d58709","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"604","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:71:a3","maintenances":[],"modification_date":"2025-02-11T15:29:00.811804+00:00","name":"foobar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"1c9d9721-c5d6-4b91-99fb-771a503d1478","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "1756"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:29:16 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 3681a0df-8b65-4f7d-82f3-1645ec03f237
- status: 200 OK
- code: 200
- duration: 165.477333ms
- - id: 57
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/df96dde1-31f6-48f8-9ad5-43bda9f53c68
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 428
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T15:28:45.073822+00:00","export_uri":null,"id":"df96dde1-31f6-48f8-9ad5-43bda9f53c68","modification_date":"2025-02-11T15:28:57.466065+00:00","name":"foobar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":1000000000,"state":"hotsyncing","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "428"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:29:20 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - b60ea05f-99c0-4f10-ae4d-0ef04080d7d6
- status: 200 OK
- code: 200
- duration: 92.118417ms
- - id: 58
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/50065cc5-82db-40fb-8481-43b9d6d58709
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 1756
- uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T15:28:46.367923+00:00","dynamic_ip_required":true,"enable_ipv6":false,"extra_networks":[],"hostname":"foobar","id":"50065cc5-82db-40fb-8481-43b9d6d58709","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"604","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:71:a3","maintenances":[],"modification_date":"2025-02-11T15:29:00.811804+00:00","name":"foobar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"1c9d9721-c5d6-4b91-99fb-771a503d1478","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "1756"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:29:21 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 0d12f281-b3f5-430b-97d9-56451cd9b98a
- status: 200 OK
- code: 200
- duration: 186.199333ms
- - id: 59
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/df96dde1-31f6-48f8-9ad5-43bda9f53c68
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 428
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T15:28:45.073822+00:00","export_uri":null,"id":"df96dde1-31f6-48f8-9ad5-43bda9f53c68","modification_date":"2025-02-11T15:28:57.466065+00:00","name":"foobar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":1000000000,"state":"hotsyncing","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "428"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:29:25 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 5f3ce41d-b39d-4c21-abb0-397eeb6d387e
- status: 200 OK
- code: 200
- duration: 113.454666ms
- - id: 60
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/50065cc5-82db-40fb-8481-43b9d6d58709
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 1802
- uncompressed: false
- body: '{"server":{"admin_password_encryption_ssh_key_id":null,"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T15:28:46.367923+00:00","dynamic_ip_required":true,"enable_ipv6":false,"extra_networks":[],"hostname":"foobar","id":"50065cc5-82db-40fb-8481-43b9d6d58709","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"604","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:71:a3","maintenances":[],"modification_date":"2025-02-11T15:29:00.811804+00:00","name":"foobar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"1c9d9721-c5d6-4b91-99fb-771a503d1478","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "1802"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:29:27 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 31126f76-f878-43dd-adec-fb1ceb4c56c7
- status: 200 OK
- code: 200
- duration: 234.448958ms
- - id: 61
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/df96dde1-31f6-48f8-9ad5-43bda9f53c68
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 428
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T15:28:45.073822+00:00","export_uri":null,"id":"df96dde1-31f6-48f8-9ad5-43bda9f53c68","modification_date":"2025-02-11T15:28:57.466065+00:00","name":"foobar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":1000000000,"state":"hotsyncing","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "428"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:29:31 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - a545168c-08dd-4e54-b320-62449033c521
- status: 200 OK
- code: 200
- duration: 94.601709ms
- - id: 62
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/50065cc5-82db-40fb-8481-43b9d6d58709
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 1802
- uncompressed: false
- body: '{"server":{"admin_password_encryption_ssh_key_id":null,"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T15:28:46.367923+00:00","dynamic_ip_required":true,"enable_ipv6":false,"extra_networks":[],"hostname":"foobar","id":"50065cc5-82db-40fb-8481-43b9d6d58709","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"604","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:71:a3","maintenances":[],"modification_date":"2025-02-11T15:29:00.811804+00:00","name":"foobar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"1c9d9721-c5d6-4b91-99fb-771a503d1478","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "1802"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:29:32 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 5d59a478-c607-450f-a1d2-7ce053ec9319
- status: 200 OK
- code: 200
- duration: 211.849166ms
- - id: 63
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/df96dde1-31f6-48f8-9ad5-43bda9f53c68
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 428
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T15:28:45.073822+00:00","export_uri":null,"id":"df96dde1-31f6-48f8-9ad5-43bda9f53c68","modification_date":"2025-02-11T15:28:57.466065+00:00","name":"foobar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":1000000000,"state":"hotsyncing","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "428"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:29:35 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - f007d832-4a8d-4cd6-b83a-1e129fc10160
- status: 200 OK
- code: 200
- duration: 112.899458ms
- - id: 64
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/50065cc5-82db-40fb-8481-43b9d6d58709
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 1756
- uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T15:28:46.367923+00:00","dynamic_ip_required":true,"enable_ipv6":false,"extra_networks":[],"hostname":"foobar","id":"50065cc5-82db-40fb-8481-43b9d6d58709","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"604","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:71:a3","maintenances":[],"modification_date":"2025-02-11T15:29:00.811804+00:00","name":"foobar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"1c9d9721-c5d6-4b91-99fb-771a503d1478","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "1756"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:29:37 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 61189300-4f14-43a3-aac1-bf329d13184e
- status: 200 OK
- code: 200
- duration: 199.257625ms
- - id: 65
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/df96dde1-31f6-48f8-9ad5-43bda9f53c68
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 428
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T15:28:45.073822+00:00","export_uri":null,"id":"df96dde1-31f6-48f8-9ad5-43bda9f53c68","modification_date":"2025-02-11T15:28:57.466065+00:00","name":"foobar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":1000000000,"state":"hotsyncing","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "428"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:29:41 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - af67271f-5007-4a22-9c75-f5522301dff4
- status: 200 OK
- code: 200
- duration: 105.429791ms
- - id: 66
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/50065cc5-82db-40fb-8481-43b9d6d58709
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 1756
- uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T15:28:46.367923+00:00","dynamic_ip_required":true,"enable_ipv6":false,"extra_networks":[],"hostname":"foobar","id":"50065cc5-82db-40fb-8481-43b9d6d58709","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"604","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:71:a3","maintenances":[],"modification_date":"2025-02-11T15:29:00.811804+00:00","name":"foobar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"1c9d9721-c5d6-4b91-99fb-771a503d1478","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "1756"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:29:42 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - b30344cb-f691-4203-8a3d-1f37e9bc4e7b
- status: 200 OK
- code: 200
- duration: 224.991542ms
- - id: 67
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/df96dde1-31f6-48f8-9ad5-43bda9f53c68
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 427
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T15:28:45.073822+00:00","export_uri":null,"id":"df96dde1-31f6-48f8-9ad5-43bda9f53c68","modification_date":"2025-02-11T15:29:43.736342+00:00","name":"foobar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":1000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "427"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:29:46 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - ea6e14d8-7522-46cf-b6a7-3ee2596fbfe0
- status: 200 OK
- code: 200
- duration: 503.659834ms
- - id: 68
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/df96dde1-31f6-48f8-9ad5-43bda9f53c68
- 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, 11 Feb 2025 15:29:46 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 9e6c3afd-72a9-42e9-923e-bd29ad66b815
- status: 204 No Content
- code: 204
- duration: 188.274125ms
- - id: 69
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/50065cc5-82db-40fb-8481-43b9d6d58709
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 1641
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T15:28:46.367923+00:00","dynamic_ip_required":true,"enable_ipv6":false,"extra_networks":[],"hostname":"foobar","id":"50065cc5-82db-40fb-8481-43b9d6d58709","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:93:71:a3","maintenances":[],"modification_date":"2025-02-11T15:29:43.736342+00:00","name":"foobar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"1c9d9721-c5d6-4b91-99fb-771a503d1478","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "1641"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:29:48 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - dd01059b-0bc5-4bba-bdf4-321b9fa7e6e7
- status: 200 OK
- code: 200
- duration: 189.976792ms
- - id: 70
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/50065cc5-82db-40fb-8481-43b9d6d58709
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 1641
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T15:28:46.367923+00:00","dynamic_ip_required":true,"enable_ipv6":false,"extra_networks":[],"hostname":"foobar","id":"50065cc5-82db-40fb-8481-43b9d6d58709","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:93:71:a3","maintenances":[],"modification_date":"2025-02-11T15:29:43.736342+00:00","name":"foobar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"1c9d9721-c5d6-4b91-99fb-771a503d1478","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "1641"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:29:48 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 2d3a974e-bbc6-45ec-ae4c-86f5ea33d468
- status: 200 OK
- code: 200
- duration: 179.897542ms
- - id: 71
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/50065cc5-82db-40fb-8481-43b9d6d58709
- 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, 11 Feb 2025 15:29:48 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - d797b95a-e747-453b-b414-e18713999f70
- status: 204 No Content
- code: 204
- duration: 421.114333ms
- - id: 72
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/50065cc5-82db-40fb-8481-43b9d6d58709
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 143
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_server","resource_id":"50065cc5-82db-40fb-8481-43b9d6d58709","type":"not_found"}'
- headers:
- Content-Length:
- - "143"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:29:48 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - f31391c0-ff73-4fdb-a7b9-6183e2280509
- status: 404 Not Found
- code: 404
- duration: 117.733542ms
- - id: 73
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1c9d9721-c5d6-4b91-99fb-771a503d1478
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 143
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"1c9d9721-c5d6-4b91-99fb-771a503d1478","type":"not_found"}'
- headers:
- Content-Length:
- - "143"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:29:48 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 58dc6ba4-9c77-4072-aba9-4da62de19794
- status: 404 Not Found
- code: 404
- duration: 66.115ms
- - id: 74
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1c9d9721-c5d6-4b91-99fb-771a503d1478
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 494
- uncompressed: false
- body: '{"created_at":"2025-02-11T15:28:46.586882Z","id":"1c9d9721-c5d6-4b91-99fb-771a503d1478","last_detached_at":"2025-02-11T15:29:48.721980Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"703a3bad-5fc4-450a-9b35-c128312df5f5","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-02-11T15:29:48.721980Z","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "494"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:29:49 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 5f36df41-4d95-4d91-a717-33369c7685a9
- status: 200 OK
- code: 200
- duration: 81.800875ms
- - id: 75
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1c9d9721-c5d6-4b91-99fb-771a503d1478
- 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, 11 Feb 2025 15:29:49 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - b9478f5e-0991-4d8d-8d3b-c27125291ec1
- status: 204 No Content
- code: 204
- duration: 135.640458ms
- - id: 76
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/df96dde1-31f6-48f8-9ad5-43bda9f53c68
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 143
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"df96dde1-31f6-48f8-9ad5-43bda9f53c68","type":"not_found"}'
- headers:
- Content-Length:
- - "143"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:29:49 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 393a01df-d453-452a-a9ec-e18e26f8547d
- status: 404 Not Found
- code: 404
- duration: 58.182667ms
- - id: 77
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/50065cc5-82db-40fb-8481-43b9d6d58709
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 143
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_server","resource_id":"50065cc5-82db-40fb-8481-43b9d6d58709","type":"not_found"}'
- headers:
- Content-Length:
- - "143"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 15:29:48 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - e8e4ed9b-fe53-47f7-9c06-0d0a0b80dd47
- status: 404 Not Found
- code: 404
- duration: 112.748792ms
diff --git a/internal/services/instance/testdata/server-additional-volumes.cassette.yaml b/internal/services/instance/testdata/server-additional-volumes.cassette.yaml
deleted file mode 100644
index 7ce713a04d..0000000000
--- a/internal/services/instance/testdata/server-additional-volumes.cassette.yaml
+++ /dev/null
@@ -1,4063 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 121
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"name":"tf-vol-nifty-lehmann","project":"105bdce1-64c0-48ab-899d-868455867ecf","volume_type":"l_ssd","size":10000000000}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 442
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T14:22:36.140861+00:00","export_uri":null,"id":"96f61139-ede1-403c-bbe8-78bc1b5eda75","modification_date":"2025-02-11T14:22:36.140861+00:00","name":"tf-vol-nifty-lehmann","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"}}'
- headers:
- Content-Length:
- - "442"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:36 GMT
- Location:
- - https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/96f61139-ede1-403c-bbe8-78bc1b5eda75
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - b861a98d-1e3f-4a03-92e5-a169ef5ff76a
- status: 201 Created
- code: 201
- duration: 479.029375ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/96f61139-ede1-403c-bbe8-78bc1b5eda75
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 442
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T14:22:36.140861+00:00","export_uri":null,"id":"96f61139-ede1-403c-bbe8-78bc1b5eda75","modification_date":"2025-02-11T14:22:36.140861+00:00","name":"tf-vol-nifty-lehmann","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"}}'
- headers:
- Content-Length:
- - "442"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:36 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - c4f479d0-fe22-4fca-b662-cd53c8d884b2
- status: 200 OK
- code: 200
- duration: 100.27125ms
- - id: 2
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/96f61139-ede1-403c-bbe8-78bc1b5eda75
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 442
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T14:22:36.140861+00:00","export_uri":null,"id":"96f61139-ede1-403c-bbe8-78bc1b5eda75","modification_date":"2025-02-11T14:22:36.140861+00:00","name":"tf-vol-nifty-lehmann","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"}}'
- headers:
- Content-Length:
- - "442"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:36 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 61853926-8d4f-48be-8da3-2f26a5e3a643
- status: 200 OK
- code: 200
- duration: 77.583959ms
- - id: 3
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 35639
- uncompressed: false
- body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":6710886400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":13421772800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":6710886400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":6710886400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":13421772800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":6710886400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":13421772800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":6710886400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":13421772800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}'
- headers:
- Content-Length:
- - "35639"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:36 GMT
- Link:
- - ; rel="next",; rel="last"
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 6dc8d66f-a08e-4e08-b96c-e5613f75ae2c
- X-Total-Count:
- - "68"
- status: 200 OK
- code: 200
- duration: 48.066667ms
- - id: 4
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 13164
- uncompressed: false
- body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":1,"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":200000000000}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":100000000000}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":50000000000}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":25000000000}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":200000000000}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":100000000000}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":50000000000}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":1000000000000,"min_size":500000000000}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":200000000000}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":300000000000}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":400000000000}}}}'
- headers:
- Content-Length:
- - "13164"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:36 GMT
- Link:
- - ; rel="first",; rel="previous",; rel="last"
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - fa0aa176-78a4-409c-bae9-5dcc240baf55
- X-Total-Count:
- - "68"
- status: 200 OK
- code: 200
- duration: 54.09325ms
- - id: 5
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/96f61139-ede1-403c-bbe8-78bc1b5eda75
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 442
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T14:22:36.140861+00:00","export_uri":null,"id":"96f61139-ede1-403c-bbe8-78bc1b5eda75","modification_date":"2025-02-11T14:22:36.140861+00:00","name":"tf-vol-nifty-lehmann","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"}}'
- headers:
- Content-Length:
- - "442"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:36 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 6a05b2c3-c6d7-49af-87ea-6492c28a3b9b
- status: 200 OK
- code: 200
- duration: 83.688666ms
- - id: 6
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 1296
- uncompressed: false
- body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"57509e82-ac3b-49b7-9970-97b60f40ff72","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"arm64","compatible_commercial_types":["AMP2-C1","AMP2-C2","AMP2-C4","AMP2-C8","AMP2-C12","AMP2-C24","AMP2-C48","AMP2-C60","COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"9b647e1e-253a-41e7-8c15-911c622ee2dc","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}'
- headers:
- Content-Length:
- - "1296"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:36 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 03b3addb-26e4-4611-91e7-d7e1b4bdf14f
- status: 200 OK
- code: 200
- duration: 79.5255ms
- - id: 7
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 409
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"name":"tf-srv-goofy-germain","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"57509e82-ac3b-49b7-9970-97b60f40ff72","volumes":{"0":{"boot":false,"size":10000000000},"1":{"id":"96f61139-ede1-403c-bbe8-78bc1b5eda75","name":"tf-vol-nifty-lehmann"}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["terraform-test","scaleway_instance_server","additional_volume_ids"]}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2265
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.325511+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-goofy-germain","id":"b3e931e5-840f-4b53-b781-46d8d011c59d","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:93:6d:db","maintenances":[],"modification_date":"2025-02-11T14:22:37.325511+00:00","name":"tf-srv-goofy-germain","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":["terraform-test","scaleway_instance_server","additional_volume_ids"],"volumes":{"0":{"boot":false,"id":"ec2186d1-6fe2-4c53-823c-71823657a4d1","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.140861+00:00","export_uri":null,"id":"96f61139-ede1-403c-bbe8-78bc1b5eda75","modification_date":"2025-02-11T14:22:37.325511+00:00","name":"tf-vol-nifty-lehmann","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"b3e931e5-840f-4b53-b781-46d8d011c59d","name":"tf-srv-goofy-germain"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2265"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:37 GMT
- Location:
- - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b3e931e5-840f-4b53-b781-46d8d011c59d
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 51308984-9036-43b0-8933-929cdfcd194c
- status: 201 Created
- code: 201
- duration: 1.4082995s
- - id: 8
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b3e931e5-840f-4b53-b781-46d8d011c59d
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2265
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.325511+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-goofy-germain","id":"b3e931e5-840f-4b53-b781-46d8d011c59d","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:93:6d:db","maintenances":[],"modification_date":"2025-02-11T14:22:37.325511+00:00","name":"tf-srv-goofy-germain","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":["terraform-test","scaleway_instance_server","additional_volume_ids"],"volumes":{"0":{"boot":false,"id":"ec2186d1-6fe2-4c53-823c-71823657a4d1","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.140861+00:00","export_uri":null,"id":"96f61139-ede1-403c-bbe8-78bc1b5eda75","modification_date":"2025-02-11T14:22:37.325511+00:00","name":"tf-vol-nifty-lehmann","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"b3e931e5-840f-4b53-b781-46d8d011c59d","name":"tf-srv-goofy-germain"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2265"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:37 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - f3520278-353e-4fa4-8176-b2793703fe58
- status: 200 OK
- code: 200
- duration: 143.129875ms
- - id: 9
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b3e931e5-840f-4b53-b781-46d8d011c59d
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2265
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.325511+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-goofy-germain","id":"b3e931e5-840f-4b53-b781-46d8d011c59d","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:93:6d:db","maintenances":[],"modification_date":"2025-02-11T14:22:37.325511+00:00","name":"tf-srv-goofy-germain","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":["terraform-test","scaleway_instance_server","additional_volume_ids"],"volumes":{"0":{"boot":false,"id":"ec2186d1-6fe2-4c53-823c-71823657a4d1","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.140861+00:00","export_uri":null,"id":"96f61139-ede1-403c-bbe8-78bc1b5eda75","modification_date":"2025-02-11T14:22:37.325511+00:00","name":"tf-vol-nifty-lehmann","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"b3e931e5-840f-4b53-b781-46d8d011c59d","name":"tf-srv-goofy-germain"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2265"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:37 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - a93c6471-36ba-4b7f-a600-e1fb75cb22b9
- status: 200 OK
- code: 200
- duration: 186.444708ms
- - id: 10
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ec2186d1-6fe2-4c53-823c-71823657a4d1
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 701
- uncompressed: false
- body: '{"created_at":"2025-02-11T14:22:37.565262Z","id":"ec2186d1-6fe2-4c53-823c-71823657a4d1","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"703a3bad-5fc4-450a-9b35-c128312df5f5","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-02-11T14:22:37.565262Z","id":"451128d5-8ffe-4120-882f-ffd892ece8b1","product_resource_id":"b3e931e5-840f-4b53-b781-46d8d011c59d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-02-11T14:22:37.565262Z","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "701"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:38 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 2478140a-0363-446c-a73c-cd03ebcf2c1d
- status: 200 OK
- code: 200
- duration: 73.686167ms
- - id: 11
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 20
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"action":"poweron"}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b3e931e5-840f-4b53-b781-46d8d011c59d/action
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 357
- uncompressed: false
- body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/b3e931e5-840f-4b53-b781-46d8d011c59d/action","href_result":"/servers/b3e931e5-840f-4b53-b781-46d8d011c59d","id":"b7174d4a-fc07-460f-af9e-276bcbdd0266","progress":0,"started_at":"2025-02-11T14:22:38.688161+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "357"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:38 GMT
- Location:
- - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/b7174d4a-fc07-460f-af9e-276bcbdd0266
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 71dbcd45-1ed8-4e8f-a1be-6fd4472073c3
- status: 202 Accepted
- code: 202
- duration: 248.920916ms
- - id: 12
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b3e931e5-840f-4b53-b781-46d8d011c59d
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2287
- uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.325511+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-goofy-germain","id":"b3e931e5-840f-4b53-b781-46d8d011c59d","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:93:6d:db","maintenances":[],"modification_date":"2025-02-11T14:22:38.492441+00:00","name":"tf-srv-goofy-germain","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":["terraform-test","scaleway_instance_server","additional_volume_ids"],"volumes":{"0":{"boot":false,"id":"ec2186d1-6fe2-4c53-823c-71823657a4d1","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.140861+00:00","export_uri":null,"id":"96f61139-ede1-403c-bbe8-78bc1b5eda75","modification_date":"2025-02-11T14:22:37.325511+00:00","name":"tf-vol-nifty-lehmann","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"b3e931e5-840f-4b53-b781-46d8d011c59d","name":"tf-srv-goofy-germain"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2287"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:38 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 51e39a74-d43a-4ad2-a1c3-43ae423b5046
- status: 200 OK
- code: 200
- duration: 157.548584ms
- - id: 13
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b3e931e5-840f-4b53-b781-46d8d011c59d
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2390
- uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.325511+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-goofy-germain","id":"b3e931e5-840f-4b53-b781-46d8d011c59d","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"201","node_id":"43","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:6d:db","maintenances":[],"modification_date":"2025-02-11T14:22:38.492441+00:00","name":"tf-srv-goofy-germain","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":["terraform-test","scaleway_instance_server","additional_volume_ids"],"volumes":{"0":{"boot":false,"id":"ec2186d1-6fe2-4c53-823c-71823657a4d1","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.140861+00:00","export_uri":null,"id":"96f61139-ede1-403c-bbe8-78bc1b5eda75","modification_date":"2025-02-11T14:22:37.325511+00:00","name":"tf-vol-nifty-lehmann","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"b3e931e5-840f-4b53-b781-46d8d011c59d","name":"tf-srv-goofy-germain"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2390"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:43 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 2cdadfb5-4e3e-4cca-a4f2-cb2460f629c5
- status: 200 OK
- code: 200
- duration: 187.503417ms
- - id: 14
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b3e931e5-840f-4b53-b781-46d8d011c59d
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2421
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.325511+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-goofy-germain","id":"b3e931e5-840f-4b53-b781-46d8d011c59d","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"201","node_id":"43","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:6d:db","maintenances":[],"modification_date":"2025-02-11T14:22:45.255608+00:00","name":"tf-srv-goofy-germain","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":["terraform-test","scaleway_instance_server","additional_volume_ids"],"volumes":{"0":{"boot":false,"id":"ec2186d1-6fe2-4c53-823c-71823657a4d1","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.140861+00:00","export_uri":null,"id":"96f61139-ede1-403c-bbe8-78bc1b5eda75","modification_date":"2025-02-11T14:22:37.325511+00:00","name":"tf-vol-nifty-lehmann","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"b3e931e5-840f-4b53-b781-46d8d011c59d","name":"tf-srv-goofy-germain"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2421"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:49 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 56cfffd7-7259-447a-a44b-eea6de5d9385
- status: 200 OK
- code: 200
- duration: 180.74675ms
- - id: 15
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b3e931e5-840f-4b53-b781-46d8d011c59d
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2421
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.325511+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-goofy-germain","id":"b3e931e5-840f-4b53-b781-46d8d011c59d","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"201","node_id":"43","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:6d:db","maintenances":[],"modification_date":"2025-02-11T14:22:45.255608+00:00","name":"tf-srv-goofy-germain","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":["terraform-test","scaleway_instance_server","additional_volume_ids"],"volumes":{"0":{"boot":false,"id":"ec2186d1-6fe2-4c53-823c-71823657a4d1","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.140861+00:00","export_uri":null,"id":"96f61139-ede1-403c-bbe8-78bc1b5eda75","modification_date":"2025-02-11T14:22:37.325511+00:00","name":"tf-vol-nifty-lehmann","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"b3e931e5-840f-4b53-b781-46d8d011c59d","name":"tf-srv-goofy-germain"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2421"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:49 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 9aadb866-4dcd-4083-87a9-f876fa8a1d33
- status: 200 OK
- code: 200
- duration: 329.000042ms
- - id: 16
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ec2186d1-6fe2-4c53-823c-71823657a4d1
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 143
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ec2186d1-6fe2-4c53-823c-71823657a4d1","type":"not_found"}'
- headers:
- Content-Length:
- - "143"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:49 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - ff34d812-e56d-4aad-8de9-6bc44dfcab23
- status: 404 Not Found
- code: 404
- duration: 44.420166ms
- - id: 17
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ec2186d1-6fe2-4c53-823c-71823657a4d1
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 701
- uncompressed: false
- body: '{"created_at":"2025-02-11T14:22:37.565262Z","id":"ec2186d1-6fe2-4c53-823c-71823657a4d1","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"703a3bad-5fc4-450a-9b35-c128312df5f5","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-02-11T14:22:37.565262Z","id":"451128d5-8ffe-4120-882f-ffd892ece8b1","product_resource_id":"b3e931e5-840f-4b53-b781-46d8d011c59d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-02-11T14:22:37.565262Z","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "701"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:49 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 1d9e0c2b-4e49-4e5f-bd30-4183db28b1b7
- status: 200 OK
- code: 200
- duration: 61.520875ms
- - id: 18
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b3e931e5-840f-4b53-b781-46d8d011c59d/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:
- - Tue, 11 Feb 2025 14:22:49 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - b35a0859-9215-4e25-9fdc-8b21c5853a99
- status: 200 OK
- code: 200
- duration: 115.30025ms
- - id: 19
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b3e931e5-840f-4b53-b781-46d8d011c59d/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:
- - Tue, 11 Feb 2025 14:22:49 GMT
- Link:
- - ; rel="last"
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 7ae55d3b-9204-493e-9583-70aca528bbc2
- X-Total-Count:
- - "0"
- status: 200 OK
- code: 200
- duration: 89.8875ms
- - id: 20
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b3e931e5-840f-4b53-b781-46d8d011c59d
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2421
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.325511+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-goofy-germain","id":"b3e931e5-840f-4b53-b781-46d8d011c59d","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"201","node_id":"43","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:6d:db","maintenances":[],"modification_date":"2025-02-11T14:22:45.255608+00:00","name":"tf-srv-goofy-germain","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":["terraform-test","scaleway_instance_server","additional_volume_ids"],"volumes":{"0":{"boot":false,"id":"ec2186d1-6fe2-4c53-823c-71823657a4d1","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.140861+00:00","export_uri":null,"id":"96f61139-ede1-403c-bbe8-78bc1b5eda75","modification_date":"2025-02-11T14:22:37.325511+00:00","name":"tf-vol-nifty-lehmann","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"b3e931e5-840f-4b53-b781-46d8d011c59d","name":"tf-srv-goofy-germain"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2421"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:49 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - cc3719ee-5a11-4cf9-9dd1-6a0bab3a6795
- status: 200 OK
- code: 200
- duration: 155.579875ms
- - id: 21
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/96f61139-ede1-403c-bbe8-78bc1b5eda75
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 516
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T14:22:36.140861+00:00","export_uri":null,"id":"96f61139-ede1-403c-bbe8-78bc1b5eda75","modification_date":"2025-02-11T14:22:37.325511+00:00","name":"tf-vol-nifty-lehmann","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"b3e931e5-840f-4b53-b781-46d8d011c59d","name":"tf-srv-goofy-germain"},"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:
- - Tue, 11 Feb 2025 14:22:50 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - fec8adb8-ccda-4352-b2d6-7cd7da8b4f93
- status: 200 OK
- code: 200
- duration: 104.99575ms
- - id: 22
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b3e931e5-840f-4b53-b781-46d8d011c59d
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2421
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.325511+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-goofy-germain","id":"b3e931e5-840f-4b53-b781-46d8d011c59d","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"201","node_id":"43","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:6d:db","maintenances":[],"modification_date":"2025-02-11T14:22:45.255608+00:00","name":"tf-srv-goofy-germain","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":["terraform-test","scaleway_instance_server","additional_volume_ids"],"volumes":{"0":{"boot":false,"id":"ec2186d1-6fe2-4c53-823c-71823657a4d1","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.140861+00:00","export_uri":null,"id":"96f61139-ede1-403c-bbe8-78bc1b5eda75","modification_date":"2025-02-11T14:22:37.325511+00:00","name":"tf-vol-nifty-lehmann","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"b3e931e5-840f-4b53-b781-46d8d011c59d","name":"tf-srv-goofy-germain"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2421"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:50 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - d9d7b322-6eae-4987-b59b-811ca2d00a39
- status: 200 OK
- code: 200
- duration: 172.54625ms
- - id: 23
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ec2186d1-6fe2-4c53-823c-71823657a4d1
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 143
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ec2186d1-6fe2-4c53-823c-71823657a4d1","type":"not_found"}'
- headers:
- Content-Length:
- - "143"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:50 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 12078aee-1909-41a5-88ed-46613d149277
- status: 404 Not Found
- code: 404
- duration: 30.204084ms
- - id: 24
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ec2186d1-6fe2-4c53-823c-71823657a4d1
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 701
- uncompressed: false
- body: '{"created_at":"2025-02-11T14:22:37.565262Z","id":"ec2186d1-6fe2-4c53-823c-71823657a4d1","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"703a3bad-5fc4-450a-9b35-c128312df5f5","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-02-11T14:22:37.565262Z","id":"451128d5-8ffe-4120-882f-ffd892ece8b1","product_resource_id":"b3e931e5-840f-4b53-b781-46d8d011c59d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-02-11T14:22:37.565262Z","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "701"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:50 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 643be5be-1e4f-43c9-84e3-4f779223e3cb
- status: 200 OK
- code: 200
- duration: 68.689625ms
- - id: 25
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b3e931e5-840f-4b53-b781-46d8d011c59d/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:
- - Tue, 11 Feb 2025 14:22:50 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 4af3ef03-f793-48a0-8bd7-a816de5fb635
- status: 200 OK
- code: 200
- duration: 98.640292ms
- - id: 26
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b3e931e5-840f-4b53-b781-46d8d011c59d/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:
- - Tue, 11 Feb 2025 14:22:50 GMT
- Link:
- - ; rel="last"
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 77513e7e-d666-4768-a236-6cd3f6a7df4d
- X-Total-Count:
- - "0"
- status: 200 OK
- code: 200
- duration: 73.546375ms
- - id: 27
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/96f61139-ede1-403c-bbe8-78bc1b5eda75
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 516
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T14:22:36.140861+00:00","export_uri":null,"id":"96f61139-ede1-403c-bbe8-78bc1b5eda75","modification_date":"2025-02-11T14:22:37.325511+00:00","name":"tf-vol-nifty-lehmann","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"b3e931e5-840f-4b53-b781-46d8d011c59d","name":"tf-srv-goofy-germain"},"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:
- - Tue, 11 Feb 2025 14:22:51 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 5bd962c5-eb02-44c8-a4ac-d7e7a913d13b
- status: 200 OK
- code: 200
- duration: 102.812333ms
- - id: 28
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b3e931e5-840f-4b53-b781-46d8d011c59d
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2421
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.325511+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-goofy-germain","id":"b3e931e5-840f-4b53-b781-46d8d011c59d","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"201","node_id":"43","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:6d:db","maintenances":[],"modification_date":"2025-02-11T14:22:45.255608+00:00","name":"tf-srv-goofy-germain","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":["terraform-test","scaleway_instance_server","additional_volume_ids"],"volumes":{"0":{"boot":false,"id":"ec2186d1-6fe2-4c53-823c-71823657a4d1","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.140861+00:00","export_uri":null,"id":"96f61139-ede1-403c-bbe8-78bc1b5eda75","modification_date":"2025-02-11T14:22:37.325511+00:00","name":"tf-vol-nifty-lehmann","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"b3e931e5-840f-4b53-b781-46d8d011c59d","name":"tf-srv-goofy-germain"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2421"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:51 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 316ef8d3-44a2-4595-8d83-6afb81b75d66
- status: 200 OK
- code: 200
- duration: 172.55ms
- - id: 29
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ec2186d1-6fe2-4c53-823c-71823657a4d1
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 143
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ec2186d1-6fe2-4c53-823c-71823657a4d1","type":"not_found"}'
- headers:
- Content-Length:
- - "143"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:51 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 0f7230ac-457d-461a-a52f-88abff541a5c
- status: 404 Not Found
- code: 404
- duration: 29.667708ms
- - id: 30
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ec2186d1-6fe2-4c53-823c-71823657a4d1
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 701
- uncompressed: false
- body: '{"created_at":"2025-02-11T14:22:37.565262Z","id":"ec2186d1-6fe2-4c53-823c-71823657a4d1","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"703a3bad-5fc4-450a-9b35-c128312df5f5","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-02-11T14:22:37.565262Z","id":"451128d5-8ffe-4120-882f-ffd892ece8b1","product_resource_id":"b3e931e5-840f-4b53-b781-46d8d011c59d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-02-11T14:22:37.565262Z","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "701"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:51 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 33d95d83-0b7b-47d3-aafe-36d02fddfae3
- status: 200 OK
- code: 200
- duration: 66.828625ms
- - id: 31
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b3e931e5-840f-4b53-b781-46d8d011c59d/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:
- - Tue, 11 Feb 2025 14:22:51 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 47eedf2f-e00c-4029-bf0a-5ebc891056b0
- status: 200 OK
- code: 200
- duration: 87.112708ms
- - id: 32
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b3e931e5-840f-4b53-b781-46d8d011c59d/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:
- - Tue, 11 Feb 2025 14:22:51 GMT
- Link:
- - ; rel="last"
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 24fb7ae9-365f-49ef-9811-687f9f06625b
- X-Total-Count:
- - "0"
- status: 200 OK
- code: 200
- duration: 89.094208ms
- - id: 33
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 123
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"name":"tf-vol-heuristic-dirac","project":"105bdce1-64c0-48ab-899d-868455867ecf","volume_type":"b_ssd","size":10000000000}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 444
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T14:22:52.063543+00:00","export_uri":null,"id":"2dd5e2ea-8bd8-4e04-a8c7-aea840937543","modification_date":"2025-02-11T14:22:52.063543+00:00","name":"tf-vol-heuristic-dirac","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "444"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:51 GMT
- Location:
- - https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2dd5e2ea-8bd8-4e04-a8c7-aea840937543
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 100f0834-efac-4c47-a11c-f3217083d028
- status: 201 Created
- code: 201
- duration: 212.404416ms
- - id: 34
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2dd5e2ea-8bd8-4e04-a8c7-aea840937543
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 444
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T14:22:52.063543+00:00","export_uri":null,"id":"2dd5e2ea-8bd8-4e04-a8c7-aea840937543","modification_date":"2025-02-11T14:22:52.063543+00:00","name":"tf-vol-heuristic-dirac","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "444"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:51 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 6165e4e5-b321-41ed-a6f7-759b9fff07f9
- status: 200 OK
- code: 200
- duration: 70.2485ms
- - id: 35
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2dd5e2ea-8bd8-4e04-a8c7-aea840937543
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 444
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T14:22:52.063543+00:00","export_uri":null,"id":"2dd5e2ea-8bd8-4e04-a8c7-aea840937543","modification_date":"2025-02-11T14:22:52.063543+00:00","name":"tf-vol-heuristic-dirac","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "444"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:52 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 2798c0db-0258-4041-8c3d-2a3edddca827
- status: 200 OK
- code: 200
- duration: 88.019333ms
- - id: 36
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b3e931e5-840f-4b53-b781-46d8d011c59d
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2421
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.325511+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-goofy-germain","id":"b3e931e5-840f-4b53-b781-46d8d011c59d","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"201","node_id":"43","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:6d:db","maintenances":[],"modification_date":"2025-02-11T14:22:45.255608+00:00","name":"tf-srv-goofy-germain","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":["terraform-test","scaleway_instance_server","additional_volume_ids"],"volumes":{"0":{"boot":false,"id":"ec2186d1-6fe2-4c53-823c-71823657a4d1","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.140861+00:00","export_uri":null,"id":"96f61139-ede1-403c-bbe8-78bc1b5eda75","modification_date":"2025-02-11T14:22:37.325511+00:00","name":"tf-vol-nifty-lehmann","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"b3e931e5-840f-4b53-b781-46d8d011c59d","name":"tf-srv-goofy-germain"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2421"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:52 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 5fc7f997-bdff-4929-9607-b7b826fab3ba
- status: 200 OK
- code: 200
- duration: 194.358084ms
- - id: 37
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/96f61139-ede1-403c-bbe8-78bc1b5eda75
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 516
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T14:22:36.140861+00:00","export_uri":null,"id":"96f61139-ede1-403c-bbe8-78bc1b5eda75","modification_date":"2025-02-11T14:22:37.325511+00:00","name":"tf-vol-nifty-lehmann","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"b3e931e5-840f-4b53-b781-46d8d011c59d","name":"tf-srv-goofy-germain"},"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:
- - Tue, 11 Feb 2025 14:22:52 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 94ba75ad-3513-4084-ba39-f76388765b9b
- status: 200 OK
- code: 200
- duration: 82.794917ms
- - id: 38
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2dd5e2ea-8bd8-4e04-a8c7-aea840937543
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 444
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T14:22:52.063543+00:00","export_uri":null,"id":"2dd5e2ea-8bd8-4e04-a8c7-aea840937543","modification_date":"2025-02-11T14:22:52.063543+00:00","name":"tf-vol-heuristic-dirac","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "444"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:52 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 284910a8-0c83-4524-8ac5-0f2e28df1bb1
- status: 200 OK
- code: 200
- duration: 167.780625ms
- - id: 39
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 269
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"volumes":{"0":{"id":"ec2186d1-6fe2-4c53-823c-71823657a4d1","boot":false,"name":"tf-vol-zealous-shtern"},"1":{"id":"96f61139-ede1-403c-bbe8-78bc1b5eda75","name":"tf-vol-nifty-lehmann"},"2":{"id":"2dd5e2ea-8bd8-4e04-a8c7-aea840937543","name":"tf-vol-heuristic-dirac"}}}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b3e931e5-840f-4b53-b781-46d8d011c59d
- method: PATCH
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2890
- uncompressed: false
- body: '{"server":{"allowed_actions":[],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.325511+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-goofy-germain","id":"b3e931e5-840f-4b53-b781-46d8d011c59d","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"201","node_id":"43","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:6d:db","maintenances":[],"modification_date":"2025-02-11T14:22:45.255608+00:00","name":"tf-srv-goofy-germain","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":["terraform-test","scaleway_instance_server","additional_volume_ids"],"volumes":{"0":{"boot":false,"id":"ec2186d1-6fe2-4c53-823c-71823657a4d1","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.140861+00:00","export_uri":null,"id":"96f61139-ede1-403c-bbe8-78bc1b5eda75","modification_date":"2025-02-11T14:22:37.325511+00:00","name":"tf-vol-nifty-lehmann","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"b3e931e5-840f-4b53-b781-46d8d011c59d","name":"tf-srv-goofy-germain"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"2":{"boot":false,"creation_date":"2025-02-11T14:22:52.063543+00:00","export_uri":null,"id":"2dd5e2ea-8bd8-4e04-a8c7-aea840937543","modification_date":"2025-02-11T14:22:52.825506+00:00","name":"tf-vol-heuristic-dirac","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"b3e931e5-840f-4b53-b781-46d8d011c59d","name":"tf-srv-goofy-germain"},"size":10000000000,"state":"hotsyncing","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2890"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:53 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 63eccc96-31ee-4c6e-ba3e-942e489c70f6
- status: 200 OK
- code: 200
- duration: 467.069875ms
- - id: 40
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b3e931e5-840f-4b53-b781-46d8d011c59d
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2890
- uncompressed: false
- body: '{"server":{"allowed_actions":[],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.325511+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-goofy-germain","id":"b3e931e5-840f-4b53-b781-46d8d011c59d","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"201","node_id":"43","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:6d:db","maintenances":[],"modification_date":"2025-02-11T14:22:45.255608+00:00","name":"tf-srv-goofy-germain","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":["terraform-test","scaleway_instance_server","additional_volume_ids"],"volumes":{"0":{"boot":false,"id":"ec2186d1-6fe2-4c53-823c-71823657a4d1","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.140861+00:00","export_uri":null,"id":"96f61139-ede1-403c-bbe8-78bc1b5eda75","modification_date":"2025-02-11T14:22:37.325511+00:00","name":"tf-vol-nifty-lehmann","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"b3e931e5-840f-4b53-b781-46d8d011c59d","name":"tf-srv-goofy-germain"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"2":{"boot":false,"creation_date":"2025-02-11T14:22:52.063543+00:00","export_uri":null,"id":"2dd5e2ea-8bd8-4e04-a8c7-aea840937543","modification_date":"2025-02-11T14:22:52.825506+00:00","name":"tf-vol-heuristic-dirac","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"b3e931e5-840f-4b53-b781-46d8d011c59d","name":"tf-srv-goofy-germain"},"size":10000000000,"state":"hotsyncing","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2890"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:53 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - add33de7-a332-43aa-a87a-41fa97854364
- status: 200 OK
- code: 200
- duration: 232.647084ms
- - id: 41
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b3e931e5-840f-4b53-b781-46d8d011c59d
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2890
- uncompressed: false
- body: '{"server":{"allowed_actions":[],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.325511+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-goofy-germain","id":"b3e931e5-840f-4b53-b781-46d8d011c59d","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"201","node_id":"43","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:6d:db","maintenances":[],"modification_date":"2025-02-11T14:22:45.255608+00:00","name":"tf-srv-goofy-germain","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":["terraform-test","scaleway_instance_server","additional_volume_ids"],"volumes":{"0":{"boot":false,"id":"ec2186d1-6fe2-4c53-823c-71823657a4d1","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.140861+00:00","export_uri":null,"id":"96f61139-ede1-403c-bbe8-78bc1b5eda75","modification_date":"2025-02-11T14:22:37.325511+00:00","name":"tf-vol-nifty-lehmann","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"b3e931e5-840f-4b53-b781-46d8d011c59d","name":"tf-srv-goofy-germain"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"2":{"boot":false,"creation_date":"2025-02-11T14:22:52.063543+00:00","export_uri":null,"id":"2dd5e2ea-8bd8-4e04-a8c7-aea840937543","modification_date":"2025-02-11T14:22:52.825506+00:00","name":"tf-vol-heuristic-dirac","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"b3e931e5-840f-4b53-b781-46d8d011c59d","name":"tf-srv-goofy-germain"},"size":10000000000,"state":"hotsyncing","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2890"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:53 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 04902300-78f2-4c23-a643-b08fcd06c8d8
- status: 200 OK
- code: 200
- duration: 169.016458ms
- - id: 42
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ec2186d1-6fe2-4c53-823c-71823657a4d1
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 143
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ec2186d1-6fe2-4c53-823c-71823657a4d1","type":"not_found"}'
- headers:
- Content-Length:
- - "143"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:53 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - bce98dbe-9cda-4b8b-9eb4-f793b5a9d66d
- status: 404 Not Found
- code: 404
- duration: 35.108791ms
- - id: 43
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ec2186d1-6fe2-4c53-823c-71823657a4d1
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 701
- uncompressed: false
- body: '{"created_at":"2025-02-11T14:22:37.565262Z","id":"ec2186d1-6fe2-4c53-823c-71823657a4d1","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"703a3bad-5fc4-450a-9b35-c128312df5f5","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-02-11T14:22:37.565262Z","id":"451128d5-8ffe-4120-882f-ffd892ece8b1","product_resource_id":"b3e931e5-840f-4b53-b781-46d8d011c59d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-02-11T14:22:37.565262Z","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "701"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:53 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 96c7043b-590f-46ce-9602-8976cc059a25
- status: 200 OK
- code: 200
- duration: 62.789417ms
- - id: 44
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b3e931e5-840f-4b53-b781-46d8d011c59d/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:
- - Tue, 11 Feb 2025 14:22:53 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - ffae38de-9d7f-42c6-9f4b-0c7ed6b4611c
- status: 200 OK
- code: 200
- duration: 86.082791ms
- - id: 45
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b3e931e5-840f-4b53-b781-46d8d011c59d/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:
- - Tue, 11 Feb 2025 14:22:53 GMT
- Link:
- - ; rel="last"
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - c4110d90-e6cc-43f1-871e-11a5320cde28
- X-Total-Count:
- - "0"
- status: 200 OK
- code: 200
- duration: 91.270333ms
- - id: 46
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2dd5e2ea-8bd8-4e04-a8c7-aea840937543
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 519
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T14:22:52.063543+00:00","export_uri":null,"id":"2dd5e2ea-8bd8-4e04-a8c7-aea840937543","modification_date":"2025-02-11T14:22:52.825506+00:00","name":"tf-vol-heuristic-dirac","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"b3e931e5-840f-4b53-b781-46d8d011c59d","name":"tf-srv-goofy-germain"},"size":10000000000,"state":"hotsyncing","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "519"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:53 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - c232bda5-4530-4afc-b931-a6464f7132b7
- status: 200 OK
- code: 200
- duration: 177.37525ms
- - id: 47
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b3e931e5-840f-4b53-b781-46d8d011c59d
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2890
- uncompressed: false
- body: '{"server":{"allowed_actions":[],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.325511+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-goofy-germain","id":"b3e931e5-840f-4b53-b781-46d8d011c59d","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"201","node_id":"43","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:6d:db","maintenances":[],"modification_date":"2025-02-11T14:22:45.255608+00:00","name":"tf-srv-goofy-germain","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":["terraform-test","scaleway_instance_server","additional_volume_ids"],"volumes":{"0":{"boot":false,"id":"ec2186d1-6fe2-4c53-823c-71823657a4d1","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.140861+00:00","export_uri":null,"id":"96f61139-ede1-403c-bbe8-78bc1b5eda75","modification_date":"2025-02-11T14:22:37.325511+00:00","name":"tf-vol-nifty-lehmann","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"b3e931e5-840f-4b53-b781-46d8d011c59d","name":"tf-srv-goofy-germain"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"2":{"boot":false,"creation_date":"2025-02-11T14:22:52.063543+00:00","export_uri":null,"id":"2dd5e2ea-8bd8-4e04-a8c7-aea840937543","modification_date":"2025-02-11T14:22:52.825506+00:00","name":"tf-vol-heuristic-dirac","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"b3e931e5-840f-4b53-b781-46d8d011c59d","name":"tf-srv-goofy-germain"},"size":10000000000,"state":"hotsyncing","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2890"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:54 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 746da850-021e-45ac-ae3b-fdcdba21056a
- status: 200 OK
- code: 200
- duration: 142.042375ms
- - id: 48
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/96f61139-ede1-403c-bbe8-78bc1b5eda75
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 516
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T14:22:36.140861+00:00","export_uri":null,"id":"96f61139-ede1-403c-bbe8-78bc1b5eda75","modification_date":"2025-02-11T14:22:37.325511+00:00","name":"tf-vol-nifty-lehmann","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"b3e931e5-840f-4b53-b781-46d8d011c59d","name":"tf-srv-goofy-germain"},"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:
- - Tue, 11 Feb 2025 14:22:54 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - ae641f43-a8f2-476b-ac89-9260d17f4cc8
- status: 200 OK
- code: 200
- duration: 70.878166ms
- - id: 49
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2dd5e2ea-8bd8-4e04-a8c7-aea840937543
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 519
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T14:22:52.063543+00:00","export_uri":null,"id":"2dd5e2ea-8bd8-4e04-a8c7-aea840937543","modification_date":"2025-02-11T14:22:52.825506+00:00","name":"tf-vol-heuristic-dirac","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"b3e931e5-840f-4b53-b781-46d8d011c59d","name":"tf-srv-goofy-germain"},"size":10000000000,"state":"hotsyncing","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "519"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:54 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 5edb4b44-6a7c-4917-99a7-e6d270d7044e
- status: 200 OK
- code: 200
- duration: 73.687458ms
- - id: 50
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b3e931e5-840f-4b53-b781-46d8d011c59d
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2890
- uncompressed: false
- body: '{"server":{"allowed_actions":[],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.325511+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-goofy-germain","id":"b3e931e5-840f-4b53-b781-46d8d011c59d","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"201","node_id":"43","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:6d:db","maintenances":[],"modification_date":"2025-02-11T14:22:45.255608+00:00","name":"tf-srv-goofy-germain","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":["terraform-test","scaleway_instance_server","additional_volume_ids"],"volumes":{"0":{"boot":false,"id":"ec2186d1-6fe2-4c53-823c-71823657a4d1","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.140861+00:00","export_uri":null,"id":"96f61139-ede1-403c-bbe8-78bc1b5eda75","modification_date":"2025-02-11T14:22:37.325511+00:00","name":"tf-vol-nifty-lehmann","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"b3e931e5-840f-4b53-b781-46d8d011c59d","name":"tf-srv-goofy-germain"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"2":{"boot":false,"creation_date":"2025-02-11T14:22:52.063543+00:00","export_uri":null,"id":"2dd5e2ea-8bd8-4e04-a8c7-aea840937543","modification_date":"2025-02-11T14:22:52.825506+00:00","name":"tf-vol-heuristic-dirac","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"b3e931e5-840f-4b53-b781-46d8d011c59d","name":"tf-srv-goofy-germain"},"size":10000000000,"state":"hotsyncing","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2890"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:54 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 86814b42-8dc5-487c-8043-b0312099039d
- status: 200 OK
- code: 200
- duration: 172.623042ms
- - id: 51
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ec2186d1-6fe2-4c53-823c-71823657a4d1
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 143
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ec2186d1-6fe2-4c53-823c-71823657a4d1","type":"not_found"}'
- headers:
- Content-Length:
- - "143"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:54 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 62e8076b-f806-40c1-a0b0-e9e3cb5c47b0
- status: 404 Not Found
- code: 404
- duration: 45.995875ms
- - id: 52
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ec2186d1-6fe2-4c53-823c-71823657a4d1
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 701
- uncompressed: false
- body: '{"created_at":"2025-02-11T14:22:37.565262Z","id":"ec2186d1-6fe2-4c53-823c-71823657a4d1","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"703a3bad-5fc4-450a-9b35-c128312df5f5","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-02-11T14:22:37.565262Z","id":"451128d5-8ffe-4120-882f-ffd892ece8b1","product_resource_id":"b3e931e5-840f-4b53-b781-46d8d011c59d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-02-11T14:22:37.565262Z","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "701"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:54 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 72723694-0f3b-4be0-bf5b-c888d8057ef4
- status: 200 OK
- code: 200
- duration: 69.902709ms
- - id: 53
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b3e931e5-840f-4b53-b781-46d8d011c59d/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:
- - Tue, 11 Feb 2025 14:22:54 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 3af0574a-060f-465a-a3ed-87cd95ded119
- status: 200 OK
- code: 200
- duration: 80.601459ms
- - id: 54
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b3e931e5-840f-4b53-b781-46d8d011c59d/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:
- - Tue, 11 Feb 2025 14:22:54 GMT
- Link:
- - ; rel="last"
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - de09a8bc-760d-4467-982d-a2fdc84904f0
- X-Total-Count:
- - "0"
- status: 200 OK
- code: 200
- duration: 86.592416ms
- - id: 55
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b3e931e5-840f-4b53-b781-46d8d011c59d
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2890
- uncompressed: false
- body: '{"server":{"allowed_actions":[],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.325511+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-goofy-germain","id":"b3e931e5-840f-4b53-b781-46d8d011c59d","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"201","node_id":"43","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:6d:db","maintenances":[],"modification_date":"2025-02-11T14:22:45.255608+00:00","name":"tf-srv-goofy-germain","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":["terraform-test","scaleway_instance_server","additional_volume_ids"],"volumes":{"0":{"boot":false,"id":"ec2186d1-6fe2-4c53-823c-71823657a4d1","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.140861+00:00","export_uri":null,"id":"96f61139-ede1-403c-bbe8-78bc1b5eda75","modification_date":"2025-02-11T14:22:37.325511+00:00","name":"tf-vol-nifty-lehmann","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"b3e931e5-840f-4b53-b781-46d8d011c59d","name":"tf-srv-goofy-germain"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"2":{"boot":false,"creation_date":"2025-02-11T14:22:52.063543+00:00","export_uri":null,"id":"2dd5e2ea-8bd8-4e04-a8c7-aea840937543","modification_date":"2025-02-11T14:22:52.825506+00:00","name":"tf-vol-heuristic-dirac","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"b3e931e5-840f-4b53-b781-46d8d011c59d","name":"tf-srv-goofy-germain"},"size":10000000000,"state":"hotsyncing","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2890"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:55 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 37cfb4a9-2111-445a-80f7-190a2f1c028e
- status: 200 OK
- code: 200
- duration: 145.516291ms
- - id: 56
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ec2186d1-6fe2-4c53-823c-71823657a4d1
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 701
- uncompressed: false
- body: '{"created_at":"2025-02-11T14:22:37.565262Z","id":"ec2186d1-6fe2-4c53-823c-71823657a4d1","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"703a3bad-5fc4-450a-9b35-c128312df5f5","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-02-11T14:22:37.565262Z","id":"451128d5-8ffe-4120-882f-ffd892ece8b1","product_resource_id":"b3e931e5-840f-4b53-b781-46d8d011c59d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-02-11T14:22:37.565262Z","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "701"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:55 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - cb80e1bd-e513-4e68-81df-9b7943f2c039
- status: 200 OK
- code: 200
- duration: 68.319166ms
- - id: 57
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2dd5e2ea-8bd8-4e04-a8c7-aea840937543
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 519
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T14:22:52.063543+00:00","export_uri":null,"id":"2dd5e2ea-8bd8-4e04-a8c7-aea840937543","modification_date":"2025-02-11T14:22:52.825506+00:00","name":"tf-vol-heuristic-dirac","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"b3e931e5-840f-4b53-b781-46d8d011c59d","name":"tf-srv-goofy-germain"},"size":10000000000,"state":"hotsyncing","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "519"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:55 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - f3ba8567-1314-47b3-8aa3-f4bd0483c169
- status: 200 OK
- code: 200
- duration: 97.618417ms
- - id: 58
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2dd5e2ea-8bd8-4e04-a8c7-aea840937543
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 519
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T14:22:52.063543+00:00","export_uri":null,"id":"2dd5e2ea-8bd8-4e04-a8c7-aea840937543","modification_date":"2025-02-11T14:22:52.825506+00:00","name":"tf-vol-heuristic-dirac","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"b3e931e5-840f-4b53-b781-46d8d011c59d","name":"tf-srv-goofy-germain"},"size":10000000000,"state":"hotsyncing","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "519"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:23:00 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 7c3315cd-fa3a-4833-a28b-ee5ab0fcfa7a
- status: 200 OK
- code: 200
- duration: 87.5795ms
- - id: 59
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2dd5e2ea-8bd8-4e04-a8c7-aea840937543
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 519
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T14:22:52.063543+00:00","export_uri":null,"id":"2dd5e2ea-8bd8-4e04-a8c7-aea840937543","modification_date":"2025-02-11T14:22:52.825506+00:00","name":"tf-vol-heuristic-dirac","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"b3e931e5-840f-4b53-b781-46d8d011c59d","name":"tf-srv-goofy-germain"},"size":10000000000,"state":"hotsyncing","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "519"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:23:05 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 834716d3-fb7b-41b2-88bf-bc2ba378370f
- status: 200 OK
- code: 200
- duration: 85.329667ms
- - id: 60
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2dd5e2ea-8bd8-4e04-a8c7-aea840937543
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 519
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T14:22:52.063543+00:00","export_uri":null,"id":"2dd5e2ea-8bd8-4e04-a8c7-aea840937543","modification_date":"2025-02-11T14:22:52.825506+00:00","name":"tf-vol-heuristic-dirac","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"b3e931e5-840f-4b53-b781-46d8d011c59d","name":"tf-srv-goofy-germain"},"size":10000000000,"state":"hotsyncing","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "519"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:23:10 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - e531b188-efb2-400e-afaa-462984228fbf
- status: 200 OK
- code: 200
- duration: 77.624958ms
- - id: 61
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2dd5e2ea-8bd8-4e04-a8c7-aea840937543
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 518
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T14:22:52.063543+00:00","export_uri":null,"id":"2dd5e2ea-8bd8-4e04-a8c7-aea840937543","modification_date":"2025-02-11T14:23:14.492520+00:00","name":"tf-vol-heuristic-dirac","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"b3e931e5-840f-4b53-b781-46d8d011c59d","name":"tf-srv-goofy-germain"},"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "518"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:23:15 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - f264672a-e6ce-453a-8822-2554b5ecfc4e
- status: 200 OK
- code: 200
- duration: 120.89875ms
- - id: 62
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 21
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"action":"poweroff"}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b3e931e5-840f-4b53-b781-46d8d011c59d/action
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 352
- uncompressed: false
- body: '{"task":{"description":"server_poweroff","href_from":"/servers/b3e931e5-840f-4b53-b781-46d8d011c59d/action","href_result":"/servers/b3e931e5-840f-4b53-b781-46d8d011c59d","id":"3566b20a-8dbc-48fd-858c-e5c0897c1aa6","progress":0,"started_at":"2025-02-11T14:23:16.245448+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "352"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:23:15 GMT
- Location:
- - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/3566b20a-8dbc-48fd-858c-e5c0897c1aa6
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - d9f6fc73-6529-4c85-9e0e-02e3def6aa37
- status: 202 Accepted
- code: 202
- duration: 238.229ms
- - id: 63
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b3e931e5-840f-4b53-b781-46d8d011c59d
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2909
- uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.325511+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-goofy-germain","id":"b3e931e5-840f-4b53-b781-46d8d011c59d","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"201","node_id":"43","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:6d:db","maintenances":[],"modification_date":"2025-02-11T14:23:16.063192+00:00","name":"tf-srv-goofy-germain","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":["terraform-test","scaleway_instance_server","additional_volume_ids"],"volumes":{"0":{"boot":false,"id":"ec2186d1-6fe2-4c53-823c-71823657a4d1","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.140861+00:00","export_uri":null,"id":"96f61139-ede1-403c-bbe8-78bc1b5eda75","modification_date":"2025-02-11T14:22:37.325511+00:00","name":"tf-vol-nifty-lehmann","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"b3e931e5-840f-4b53-b781-46d8d011c59d","name":"tf-srv-goofy-germain"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"2":{"boot":false,"creation_date":"2025-02-11T14:22:52.063543+00:00","export_uri":null,"id":"2dd5e2ea-8bd8-4e04-a8c7-aea840937543","modification_date":"2025-02-11T14:23:14.492520+00:00","name":"tf-vol-heuristic-dirac","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"b3e931e5-840f-4b53-b781-46d8d011c59d","name":"tf-srv-goofy-germain"},"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2909"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:23:16 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - f53d3c1d-dedf-4817-89e9-dc1725e6a4f6
- status: 200 OK
- code: 200
- duration: 191.789875ms
- - id: 64
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b3e931e5-840f-4b53-b781-46d8d011c59d
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2909
- uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.325511+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-goofy-germain","id":"b3e931e5-840f-4b53-b781-46d8d011c59d","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"201","node_id":"43","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:6d:db","maintenances":[],"modification_date":"2025-02-11T14:23:16.063192+00:00","name":"tf-srv-goofy-germain","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":["terraform-test","scaleway_instance_server","additional_volume_ids"],"volumes":{"0":{"boot":false,"id":"ec2186d1-6fe2-4c53-823c-71823657a4d1","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.140861+00:00","export_uri":null,"id":"96f61139-ede1-403c-bbe8-78bc1b5eda75","modification_date":"2025-02-11T14:22:37.325511+00:00","name":"tf-vol-nifty-lehmann","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"b3e931e5-840f-4b53-b781-46d8d011c59d","name":"tf-srv-goofy-germain"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"2":{"boot":false,"creation_date":"2025-02-11T14:22:52.063543+00:00","export_uri":null,"id":"2dd5e2ea-8bd8-4e04-a8c7-aea840937543","modification_date":"2025-02-11T14:23:14.492520+00:00","name":"tf-vol-heuristic-dirac","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"b3e931e5-840f-4b53-b781-46d8d011c59d","name":"tf-srv-goofy-germain"},"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2909"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:23:21 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - e2fa8fc6-9088-4878-9747-c9ba865d6adc
- status: 200 OK
- code: 200
- duration: 167.603334ms
- - id: 65
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b3e931e5-840f-4b53-b781-46d8d011c59d
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2909
- uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.325511+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-goofy-germain","id":"b3e931e5-840f-4b53-b781-46d8d011c59d","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"201","node_id":"43","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:6d:db","maintenances":[],"modification_date":"2025-02-11T14:23:16.063192+00:00","name":"tf-srv-goofy-germain","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":["terraform-test","scaleway_instance_server","additional_volume_ids"],"volumes":{"0":{"boot":false,"id":"ec2186d1-6fe2-4c53-823c-71823657a4d1","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.140861+00:00","export_uri":null,"id":"96f61139-ede1-403c-bbe8-78bc1b5eda75","modification_date":"2025-02-11T14:22:37.325511+00:00","name":"tf-vol-nifty-lehmann","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"b3e931e5-840f-4b53-b781-46d8d011c59d","name":"tf-srv-goofy-germain"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"2":{"boot":false,"creation_date":"2025-02-11T14:22:52.063543+00:00","export_uri":null,"id":"2dd5e2ea-8bd8-4e04-a8c7-aea840937543","modification_date":"2025-02-11T14:23:14.492520+00:00","name":"tf-vol-heuristic-dirac","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"b3e931e5-840f-4b53-b781-46d8d011c59d","name":"tf-srv-goofy-germain"},"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2909"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:23:26 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 1712d9ed-3402-4142-bb29-51f77826c766
- status: 200 OK
- code: 200
- duration: 173.829125ms
- - id: 66
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b3e931e5-840f-4b53-b781-46d8d011c59d
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2909
- uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.325511+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-goofy-germain","id":"b3e931e5-840f-4b53-b781-46d8d011c59d","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"201","node_id":"43","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:6d:db","maintenances":[],"modification_date":"2025-02-11T14:23:16.063192+00:00","name":"tf-srv-goofy-germain","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":["terraform-test","scaleway_instance_server","additional_volume_ids"],"volumes":{"0":{"boot":false,"id":"ec2186d1-6fe2-4c53-823c-71823657a4d1","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.140861+00:00","export_uri":null,"id":"96f61139-ede1-403c-bbe8-78bc1b5eda75","modification_date":"2025-02-11T14:22:37.325511+00:00","name":"tf-vol-nifty-lehmann","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"b3e931e5-840f-4b53-b781-46d8d011c59d","name":"tf-srv-goofy-germain"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"2":{"boot":false,"creation_date":"2025-02-11T14:22:52.063543+00:00","export_uri":null,"id":"2dd5e2ea-8bd8-4e04-a8c7-aea840937543","modification_date":"2025-02-11T14:23:14.492520+00:00","name":"tf-vol-heuristic-dirac","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"b3e931e5-840f-4b53-b781-46d8d011c59d","name":"tf-srv-goofy-germain"},"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2909"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:23:31 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 4ff87514-8f50-44ef-99a7-4102cc9e85c0
- status: 200 OK
- code: 200
- duration: 223.011167ms
- - id: 67
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b3e931e5-840f-4b53-b781-46d8d011c59d
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2909
- uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.325511+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-goofy-germain","id":"b3e931e5-840f-4b53-b781-46d8d011c59d","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"201","node_id":"43","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:6d:db","maintenances":[],"modification_date":"2025-02-11T14:23:16.063192+00:00","name":"tf-srv-goofy-germain","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":["terraform-test","scaleway_instance_server","additional_volume_ids"],"volumes":{"0":{"boot":false,"id":"ec2186d1-6fe2-4c53-823c-71823657a4d1","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.140861+00:00","export_uri":null,"id":"96f61139-ede1-403c-bbe8-78bc1b5eda75","modification_date":"2025-02-11T14:22:37.325511+00:00","name":"tf-vol-nifty-lehmann","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"b3e931e5-840f-4b53-b781-46d8d011c59d","name":"tf-srv-goofy-germain"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"2":{"boot":false,"creation_date":"2025-02-11T14:22:52.063543+00:00","export_uri":null,"id":"2dd5e2ea-8bd8-4e04-a8c7-aea840937543","modification_date":"2025-02-11T14:23:14.492520+00:00","name":"tf-vol-heuristic-dirac","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"b3e931e5-840f-4b53-b781-46d8d011c59d","name":"tf-srv-goofy-germain"},"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2909"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:23:36 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - ea14cbaf-cba3-4ac6-8847-9e4217879f86
- status: 200 OK
- code: 200
- duration: 229.108041ms
- - id: 68
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b3e931e5-840f-4b53-b781-46d8d011c59d
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2909
- uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.325511+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-goofy-germain","id":"b3e931e5-840f-4b53-b781-46d8d011c59d","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"201","node_id":"43","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:6d:db","maintenances":[],"modification_date":"2025-02-11T14:23:16.063192+00:00","name":"tf-srv-goofy-germain","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":["terraform-test","scaleway_instance_server","additional_volume_ids"],"volumes":{"0":{"boot":false,"id":"ec2186d1-6fe2-4c53-823c-71823657a4d1","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.140861+00:00","export_uri":null,"id":"96f61139-ede1-403c-bbe8-78bc1b5eda75","modification_date":"2025-02-11T14:22:37.325511+00:00","name":"tf-vol-nifty-lehmann","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"b3e931e5-840f-4b53-b781-46d8d011c59d","name":"tf-srv-goofy-germain"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"2":{"boot":false,"creation_date":"2025-02-11T14:22:52.063543+00:00","export_uri":null,"id":"2dd5e2ea-8bd8-4e04-a8c7-aea840937543","modification_date":"2025-02-11T14:23:14.492520+00:00","name":"tf-vol-heuristic-dirac","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"b3e931e5-840f-4b53-b781-46d8d011c59d","name":"tf-srv-goofy-germain"},"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2909"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:23:42 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 7baa04e0-d007-49c2-ab52-1e899db1d89a
- status: 200 OK
- code: 200
- duration: 175.407167ms
- - id: 69
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b3e931e5-840f-4b53-b781-46d8d011c59d
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2909
- uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.325511+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-goofy-germain","id":"b3e931e5-840f-4b53-b781-46d8d011c59d","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"201","node_id":"43","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:6d:db","maintenances":[],"modification_date":"2025-02-11T14:23:16.063192+00:00","name":"tf-srv-goofy-germain","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":["terraform-test","scaleway_instance_server","additional_volume_ids"],"volumes":{"0":{"boot":false,"id":"ec2186d1-6fe2-4c53-823c-71823657a4d1","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.140861+00:00","export_uri":null,"id":"96f61139-ede1-403c-bbe8-78bc1b5eda75","modification_date":"2025-02-11T14:22:37.325511+00:00","name":"tf-vol-nifty-lehmann","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"b3e931e5-840f-4b53-b781-46d8d011c59d","name":"tf-srv-goofy-germain"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"2":{"boot":false,"creation_date":"2025-02-11T14:22:52.063543+00:00","export_uri":null,"id":"2dd5e2ea-8bd8-4e04-a8c7-aea840937543","modification_date":"2025-02-11T14:23:14.492520+00:00","name":"tf-vol-heuristic-dirac","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"b3e931e5-840f-4b53-b781-46d8d011c59d","name":"tf-srv-goofy-germain"},"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2909"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:23:47 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - bc43ac18-7050-4035-86dc-392d9772ec5b
- status: 200 OK
- code: 200
- duration: 205.199667ms
- - id: 70
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b3e931e5-840f-4b53-b781-46d8d011c59d
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2793
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.325511+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-goofy-germain","id":"b3e931e5-840f-4b53-b781-46d8d011c59d","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:93:6d:db","maintenances":[],"modification_date":"2025-02-11T14:23:52.431434+00:00","name":"tf-srv-goofy-germain","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":["terraform-test","scaleway_instance_server","additional_volume_ids"],"volumes":{"0":{"boot":false,"id":"ec2186d1-6fe2-4c53-823c-71823657a4d1","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.140861+00:00","export_uri":null,"id":"96f61139-ede1-403c-bbe8-78bc1b5eda75","modification_date":"2025-02-11T14:22:37.325511+00:00","name":"tf-vol-nifty-lehmann","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"b3e931e5-840f-4b53-b781-46d8d011c59d","name":"tf-srv-goofy-germain"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"2":{"boot":false,"creation_date":"2025-02-11T14:22:52.063543+00:00","export_uri":null,"id":"2dd5e2ea-8bd8-4e04-a8c7-aea840937543","modification_date":"2025-02-11T14:23:14.492520+00:00","name":"tf-vol-heuristic-dirac","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"b3e931e5-840f-4b53-b781-46d8d011c59d","name":"tf-srv-goofy-germain"},"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2793"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:23:52 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 25e6bf1f-2d45-4edc-aefd-1f948917fc42
- status: 200 OK
- code: 200
- duration: 193.664291ms
- - id: 71
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b3e931e5-840f-4b53-b781-46d8d011c59d
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2793
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.325511+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-goofy-germain","id":"b3e931e5-840f-4b53-b781-46d8d011c59d","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:33.350089+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"57509e82-ac3b-49b7-9970-97b60f40ff72","modification_date":"2024-10-14T09:05:33.350089+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":"703a3bad-5fc4-450a-9b35-c128312df5f5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:93:6d:db","maintenances":[],"modification_date":"2025-02-11T14:23:52.431434+00:00","name":"tf-srv-goofy-germain","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":["terraform-test","scaleway_instance_server","additional_volume_ids"],"volumes":{"0":{"boot":false,"id":"ec2186d1-6fe2-4c53-823c-71823657a4d1","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.140861+00:00","export_uri":null,"id":"96f61139-ede1-403c-bbe8-78bc1b5eda75","modification_date":"2025-02-11T14:22:37.325511+00:00","name":"tf-vol-nifty-lehmann","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"b3e931e5-840f-4b53-b781-46d8d011c59d","name":"tf-srv-goofy-germain"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"2":{"boot":false,"creation_date":"2025-02-11T14:22:52.063543+00:00","export_uri":null,"id":"2dd5e2ea-8bd8-4e04-a8c7-aea840937543","modification_date":"2025-02-11T14:23:14.492520+00:00","name":"tf-vol-heuristic-dirac","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"b3e931e5-840f-4b53-b781-46d8d011c59d","name":"tf-srv-goofy-germain"},"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2793"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:23:52 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 5b7709de-4265-488c-ad70-b189ad215878
- status: 200 OK
- code: 200
- duration: 172.66475ms
- - id: 72
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b3e931e5-840f-4b53-b781-46d8d011c59d
- 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, 11 Feb 2025 14:23:53 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 04563a61-9130-4f0e-b1ec-a55c09c1ddfa
- status: 204 No Content
- code: 204
- duration: 521.692667ms
- - id: 73
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b3e931e5-840f-4b53-b781-46d8d011c59d
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 143
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_server","resource_id":"b3e931e5-840f-4b53-b781-46d8d011c59d","type":"not_found"}'
- headers:
- Content-Length:
- - "143"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:23:53 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 6722e617-9d68-419e-9544-c0c4f85549fe
- status: 404 Not Found
- code: 404
- duration: 98.374792ms
- - id: 74
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ec2186d1-6fe2-4c53-823c-71823657a4d1
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 143
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ec2186d1-6fe2-4c53-823c-71823657a4d1","type":"not_found"}'
- headers:
- Content-Length:
- - "143"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:23:53 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 4fc59528-e728-4b6c-9708-ce4c5cea58bc
- status: 404 Not Found
- code: 404
- duration: 31.821042ms
- - id: 75
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ec2186d1-6fe2-4c53-823c-71823657a4d1
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 494
- uncompressed: false
- body: '{"created_at":"2025-02-11T14:22:37.565262Z","id":"ec2186d1-6fe2-4c53-823c-71823657a4d1","last_detached_at":"2025-02-11T14:23:53.640126Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"703a3bad-5fc4-450a-9b35-c128312df5f5","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-02-11T14:23:53.640126Z","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "494"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:23:53 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 8cba3755-f215-456b-8d17-5903aecd3c5b
- status: 200 OK
- code: 200
- duration: 76.797ms
- - id: 76
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ec2186d1-6fe2-4c53-823c-71823657a4d1
- 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, 11 Feb 2025 14:23:53 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - ccd218f1-3f18-46f1-96d7-ebbe80ea923c
- status: 204 No Content
- code: 204
- duration: 128.490417ms
- - id: 77
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2dd5e2ea-8bd8-4e04-a8c7-aea840937543
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 444
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T14:22:52.063543+00:00","export_uri":null,"id":"2dd5e2ea-8bd8-4e04-a8c7-aea840937543","modification_date":"2025-02-11T14:23:53.059585+00:00","name":"tf-vol-heuristic-dirac","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "444"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:23:53 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 0884bd3a-7746-46f1-8de2-7375d1887f8d
- status: 200 OK
- code: 200
- duration: 76.807583ms
- - id: 78
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/96f61139-ede1-403c-bbe8-78bc1b5eda75
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 442
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T14:22:36.140861+00:00","export_uri":null,"id":"96f61139-ede1-403c-bbe8-78bc1b5eda75","modification_date":"2025-02-11T14:23:53.059585+00:00","name":"tf-vol-nifty-lehmann","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"}}'
- headers:
- Content-Length:
- - "442"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:23:53 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 79339eff-3b21-42bc-a0c7-b4c49d87e2da
- status: 200 OK
- code: 200
- duration: 77.089209ms
- - id: 79
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2dd5e2ea-8bd8-4e04-a8c7-aea840937543
- 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, 11 Feb 2025 14:23:54 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - a6832345-9ab6-464b-9b20-838f633bd6d9
- status: 204 No Content
- code: 204
- duration: 237.887833ms
- - id: 80
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/96f61139-ede1-403c-bbe8-78bc1b5eda75
- 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, 11 Feb 2025 14:23:54 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 5faa899d-c20a-4af0-a429-38276c16365c
- status: 204 No Content
- code: 204
- duration: 252.715667ms
- - id: 81
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b3e931e5-840f-4b53-b781-46d8d011c59d
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 143
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_server","resource_id":"b3e931e5-840f-4b53-b781-46d8d011c59d","type":"not_found"}'
- headers:
- Content-Length:
- - "143"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:23:54 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 5fed4cf1-73ec-468f-aec6-ae2ede664e2b
- status: 404 Not Found
- code: 404
- duration: 115.616209ms
diff --git a/internal/services/instance/testdata/server-block-external.cassette.yaml b/internal/services/instance/testdata/server-block-external.cassette.yaml
index fc0f7d005b..d16f6e4295 100644
--- a/internal/services/instance/testdata/server-block-external.cassette.yaml
+++ b/internal/services/instance/testdata/server-block-external.cassette.yaml
@@ -6,19 +6,19 @@ interactions:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 146
+ content_length: 145
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: '{"name":"tf-volume-sad-herschel","perf_iops":5000,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","from_empty":{"size":10000000000},"tags":[]}'
+ body: '{"name":"tf-volume-funny-curie","perf_iops":5000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","from_empty":{"size":10000000000},"tags":[]}'
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
+ - scaleway-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
method: POST
response:
@@ -27,20 +27,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 419
+ content_length: 404
uncompressed: false
- body: '{"created_at":"2025-01-27T13:49:09.632002Z","id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","last_detached_at":null,"name":"tf-volume-sad-herschel","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-01-27T13:49:09.632002Z","zone":"fr-par-1"}'
+ body: '{"created_at":"2025-05-22T15:30:58.677558Z","id":"891b58c3-d2ec-4983-b28a-8cb483205477","last_detached_at":null,"name":"tf-volume-funny-curie","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-05-22T15:30:58.677558Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "419"
+ - "404"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:09 GMT
+ - Thu, 22 May 2025 15:30:58 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -48,10 +48,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2bb569d9-085a-4154-90d2-1cc84927bbbd
+ - d7a2ddea-2bee-47dc-8124-8cb36c2442cf
status: 200 OK
code: 200
- duration: 307.345417ms
+ duration: 353.733927ms
- id: 1
request:
proto: HTTP/1.1
@@ -67,8 +67,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ae16abdb-d1dd-46bf-8b5d-dd281cf374ff
+ - scaleway-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/891b58c3-d2ec-4983-b28a-8cb483205477
method: GET
response:
proto: HTTP/2.0
@@ -76,20 +76,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 419
+ content_length: 404
uncompressed: false
- body: '{"created_at":"2025-01-27T13:49:09.632002Z","id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","last_detached_at":null,"name":"tf-volume-sad-herschel","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-01-27T13:49:09.632002Z","zone":"fr-par-1"}'
+ body: '{"created_at":"2025-05-22T15:30:58.677558Z","id":"891b58c3-d2ec-4983-b28a-8cb483205477","last_detached_at":null,"name":"tf-volume-funny-curie","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-05-22T15:30:58.677558Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "419"
+ - "404"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:09 GMT
+ - Thu, 22 May 2025 15:30:58 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -97,10 +97,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 33105fc6-dbff-4688-81c9-cafbcdeaeb2c
+ - 9920f38b-2131-4eb3-a5e6-58e1aebe0598
status: 200 OK
code: 200
- duration: 89.854084ms
+ duration: 74.618145ms
- id: 2
request:
proto: HTTP/1.1
@@ -116,8 +116,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ae16abdb-d1dd-46bf-8b5d-dd281cf374ff
+ - scaleway-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/891b58c3-d2ec-4983-b28a-8cb483205477
method: GET
response:
proto: HTTP/2.0
@@ -125,20 +125,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 420
+ content_length: 405
uncompressed: false
- body: '{"created_at":"2025-01-27T13:49:09.632002Z","id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","last_detached_at":null,"name":"tf-volume-sad-herschel","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-01-27T13:49:09.632002Z","zone":"fr-par-1"}'
+ body: '{"created_at":"2025-05-22T15:30:58.677558Z","id":"891b58c3-d2ec-4983-b28a-8cb483205477","last_detached_at":null,"name":"tf-volume-funny-curie","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-05-22T15:30:58.677558Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "420"
+ - "405"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:14 GMT
+ - Thu, 22 May 2025 15:31:03 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -146,10 +146,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ad583b98-ea65-4005-80c7-3c0e4c40d7fc
+ - 9e320bb5-00dd-4ae4-9c90-a1a6eaa6e0dd
status: 200 OK
code: 200
- duration: 91.604959ms
+ duration: 65.212263ms
- id: 3
request:
proto: HTTP/1.1
@@ -165,8 +165,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ae16abdb-d1dd-46bf-8b5d-dd281cf374ff
+ - scaleway-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/891b58c3-d2ec-4983-b28a-8cb483205477
method: GET
response:
proto: HTTP/2.0
@@ -174,20 +174,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 420
+ content_length: 405
uncompressed: false
- body: '{"created_at":"2025-01-27T13:49:09.632002Z","id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","last_detached_at":null,"name":"tf-volume-sad-herschel","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-01-27T13:49:09.632002Z","zone":"fr-par-1"}'
+ body: '{"created_at":"2025-05-22T15:30:58.677558Z","id":"891b58c3-d2ec-4983-b28a-8cb483205477","last_detached_at":null,"name":"tf-volume-funny-curie","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-05-22T15:30:58.677558Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "420"
+ - "405"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:14 GMT
+ - Thu, 22 May 2025 15:31:03 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -195,10 +195,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 68e4952f-b3cd-4892-bb2b-8e3827f242c8
+ - c462facd-d5d6-442a-af34-9d7b61fca74f
status: 200 OK
code: 200
- duration: 77.20525ms
+ duration: 95.325275ms
- id: 4
request:
proto: HTTP/1.1
@@ -214,7 +214,7 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
+ - scaleway-sdk-go/v1.0.0-beta.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
response:
@@ -223,22 +223,22 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 38539
+ content_length: 38951
uncompressed: false
- body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":6710886400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":13421772800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":6710886400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":6710886400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":13421772800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":6710886400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":13421772800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":6710886400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":13421772800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":null},{"internal_bandwidth":null,"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}}}}'
+ body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}'
headers:
Content-Length:
- - "38539"
+ - "38951"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:14 GMT
+ - Thu, 22 May 2025 15:31:04 GMT
Link:
- ; rel="next",; rel="last"
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -246,12 +246,12 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b187d444-2784-4c1e-8798-0c8386d1ef0a
+ - 2d8fc1fb-17a1-4e12-91ab-45edf94e9562
X-Total-Count:
- - "68"
+ - "71"
status: 200 OK
code: 200
- duration: 53.613ms
+ duration: 61.044422ms
- id: 5
request:
proto: HTTP/1.1
@@ -267,7 +267,7 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2
method: GET
response:
@@ -276,22 +276,22 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 14208
+ content_length: 16732
uncompressed: false
- body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":1,"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":200000000000}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":100000000000}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":50000000000}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":25000000000}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":200000000000}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":100000000000}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":50000000000}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":1000000000000,"min_size":500000000000}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":200000000000}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":300000000000}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":400000000000}}}}'
+ body: '{"servers":{"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":200000000000}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":100000000000}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":50000000000}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":25000000000}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":200000000000}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":100000000000}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":50000000000}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":1000000000000,"min_size":500000000000}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":200000000000}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":300000000000}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":400000000000}}}}'
headers:
Content-Length:
- - "14208"
+ - "16732"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:15 GMT
+ - Thu, 22 May 2025 15:31:04 GMT
Link:
- ; rel="first",; rel="previous",; rel="last"
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -299,12 +299,12 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 05ca31c3-799a-4736-85ea-4325988b01e4
+ - 2fcf6223-6485-4f29-98b9-bc5ee8eae0dc
X-Total-Count:
- - "68"
+ - "71"
status: 200 OK
code: 200
- duration: 49.808666ms
+ duration: 127.041467ms
- id: 6
request:
proto: HTTP/1.1
@@ -320,8 +320,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ae16abdb-d1dd-46bf-8b5d-dd281cf374ff
+ - scaleway-sdk-go/v1.0.0-beta.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/891b58c3-d2ec-4983-b28a-8cb483205477
method: GET
response:
proto: HTTP/2.0
@@ -331,7 +331,7 @@ interactions:
trailer: {}
content_length: 143
uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"891b58c3-d2ec-4983-b28a-8cb483205477","type":"not_found"}'
headers:
Content-Length:
- "143"
@@ -340,9 +340,9 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:14 GMT
+ - Thu, 22 May 2025 15:31:04 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -350,10 +350,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5d9df14f-2382-406d-b5c6-05850afe08a0
+ - 2f4939a5-b42d-4604-9cfa-c4952a121109
status: 404 Not Found
code: 404
- duration: 34.634041ms
+ duration: 120.813639ms
- id: 7
request:
proto: HTTP/1.1
@@ -369,8 +369,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ae16abdb-d1dd-46bf-8b5d-dd281cf374ff
+ - scaleway-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/891b58c3-d2ec-4983-b28a-8cb483205477
method: GET
response:
proto: HTTP/2.0
@@ -378,20 +378,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 420
+ content_length: 405
uncompressed: false
- body: '{"created_at":"2025-01-27T13:49:09.632002Z","id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","last_detached_at":null,"name":"tf-volume-sad-herschel","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-01-27T13:49:09.632002Z","zone":"fr-par-1"}'
+ body: '{"created_at":"2025-05-22T15:30:58.677558Z","id":"891b58c3-d2ec-4983-b28a-8cb483205477","last_detached_at":null,"name":"tf-volume-funny-curie","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-05-22T15:30:58.677558Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "420"
+ - "405"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:15 GMT
+ - Thu, 22 May 2025 15:31:04 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -399,10 +399,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 293ff985-3979-4504-9168-7313e765e8d2
+ - db30c4a1-0689-4457-8b44-bdc05beb2e04
status: 200 OK
code: 200
- duration: 68.907333ms
+ duration: 68.981216ms
- id: 8
request:
proto: HTTP/1.1
@@ -418,7 +418,7 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
+ - scaleway-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_jammy&order_by=type_asc&type=instance_sbs&zone=fr-par-1
method: GET
response:
@@ -427,20 +427,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1296
+ content_length: 1269
uncompressed: false
- body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"},{"arch":"arm64","compatible_commercial_types":["AMP2-C1","AMP2-C2","AMP2-C4","AMP2-C8","AMP2-C12","AMP2-C24","AMP2-C48","AMP2-C60","COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"7044ae1e-a35d-4364-a962-93811c845f2f","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}'
+ body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["AMP2-C1","AMP2-C2","AMP2-C4","AMP2-C8","AMP2-C12","AMP2-C24","AMP2-C48","AMP2-C60","COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"3b131f0d-7075-494e-9c86-b2c424007a0a","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10","POP2-48C-192G","POP2-HC-48C-96G","POP2-HM-48C-384G"],"id":"63d40353-5519-46d0-9172-ccf4885954e1","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}'
headers:
Content-Length:
- - "1296"
+ - "1269"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:15 GMT
+ - Thu, 22 May 2025 15:31:04 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -448,28 +448,28 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 20337aa5-1974-4f12-93f5-c9005b06564a
+ - f319cb28-bfc8-41ec-b0d8-826d25500430
status: 200 OK
code: 200
- duration: 93.348125ms
+ duration: 128.263029ms
- id: 9
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 339
+ content_length: 314
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: '{"name":"tf-srv-jolly-wiles","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","volumes":{"0":{"boot":false,"volume_type":"sbs_volume"},"1":{"id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","volume_type":"sbs_volume"}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}'
+ body: '{"name":"tf-srv-elated-euclid","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"63d40353-5519-46d0-9172-ccf4885954e1","volumes":{"0":{"boot":false},"1":{"id":"891b58c3-d2ec-4983-b28a-8cb483205477","volume_type":"sbs_volume"}},"boot_type":"local","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552"}'
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
+ - scaleway-sdk-go/v1.0.0-beta.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
response:
@@ -478,22 +478,22 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1791
+ content_length: 1839
uncompressed: false
- body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-01-27T13:49:15.595743+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-jolly-wiles","id":"14d55807-c24e-4109-9461-4db25ccb30df","image":{"arch":"x86_64","creation_date":"2024-10-07T11:39:13.069801+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","modification_date":"2024-10-07T11:39:13.069801+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"4eb9437f-8993-444a-b564-f7654add2131","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:90:00:1f","maintenances":[],"modification_date":"2025-01-27T13:49:15.595743+00:00","name":"tf-srv-jolly-wiles","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
+ body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-05-22T15:31:04.954748+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-elated-euclid","id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b0:1d:0b","maintenances":[],"modification_date":"2025-05-22T15:31:04.954748+00:00","name":"tf-srv-elated-euclid","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"d39f8983-965c-483a-a369-d7cbc01448a1","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"891b58c3-d2ec-4983-b28a-8cb483205477","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "1791"
+ - "1839"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:16 GMT
+ - Thu, 22 May 2025 15:31:05 GMT
Location:
- - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df
+ - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/421a1744-d051-4b78-9fd8-2ef5f6c100df
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -501,10 +501,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6e12457a-d34c-4c3b-aba5-e496b698633e
+ - 2c65bb2b-8603-4814-80f6-5f9e6206ebe4
status: 201 Created
code: 201
- duration: 1.073046834s
+ duration: 1.396527743s
- id: 10
request:
proto: HTTP/1.1
@@ -520,8 +520,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df
+ - scaleway-sdk-go/v1.0.0-beta.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/421a1744-d051-4b78-9fd8-2ef5f6c100df
method: GET
response:
proto: HTTP/2.0
@@ -529,20 +529,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1791
+ content_length: 1839
uncompressed: false
- body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-01-27T13:49:15.595743+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-jolly-wiles","id":"14d55807-c24e-4109-9461-4db25ccb30df","image":{"arch":"x86_64","creation_date":"2024-10-07T11:39:13.069801+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","modification_date":"2024-10-07T11:39:13.069801+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"4eb9437f-8993-444a-b564-f7654add2131","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:90:00:1f","maintenances":[],"modification_date":"2025-01-27T13:49:15.595743+00:00","name":"tf-srv-jolly-wiles","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
+ body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-05-22T15:31:04.954748+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-elated-euclid","id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b0:1d:0b","maintenances":[],"modification_date":"2025-05-22T15:31:04.954748+00:00","name":"tf-srv-elated-euclid","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"d39f8983-965c-483a-a369-d7cbc01448a1","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"891b58c3-d2ec-4983-b28a-8cb483205477","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "1791"
+ - "1839"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:16 GMT
+ - Thu, 22 May 2025 15:31:06 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -550,10 +550,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c794cb01-71d9-4c0f-a23d-cee7aa08af4f
+ - 62dc3506-9e44-4be3-bc3b-c756bec20c09
status: 200 OK
code: 200
- duration: 178.0945ms
+ duration: 196.851519ms
- id: 11
request:
proto: HTTP/1.1
@@ -569,8 +569,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df
+ - scaleway-sdk-go/v1.0.0-beta.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/421a1744-d051-4b78-9fd8-2ef5f6c100df
method: GET
response:
proto: HTTP/2.0
@@ -578,20 +578,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1791
+ content_length: 1839
uncompressed: false
- body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-01-27T13:49:15.595743+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-jolly-wiles","id":"14d55807-c24e-4109-9461-4db25ccb30df","image":{"arch":"x86_64","creation_date":"2024-10-07T11:39:13.069801+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","modification_date":"2024-10-07T11:39:13.069801+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"4eb9437f-8993-444a-b564-f7654add2131","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:90:00:1f","maintenances":[],"modification_date":"2025-01-27T13:49:15.595743+00:00","name":"tf-srv-jolly-wiles","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
+ body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-05-22T15:31:04.954748+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-elated-euclid","id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b0:1d:0b","maintenances":[],"modification_date":"2025-05-22T15:31:04.954748+00:00","name":"tf-srv-elated-euclid","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"d39f8983-965c-483a-a369-d7cbc01448a1","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"891b58c3-d2ec-4983-b28a-8cb483205477","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "1791"
+ - "1839"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:16 GMT
+ - Thu, 22 May 2025 15:31:06 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -599,10 +599,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7197163d-5525-41c9-aa50-efd93857aac6
+ - c5a87dd7-b2fc-476b-8f70-c4edb709d0b8
status: 200 OK
code: 200
- duration: 198.351958ms
+ duration: 248.518881ms
- id: 12
request:
proto: HTTP/1.1
@@ -618,8 +618,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3d7e600d-bd4a-4782-9129-1c1401c319cd
+ - scaleway-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/d39f8983-965c-483a-a369-d7cbc01448a1
method: GET
response:
proto: HTTP/2.0
@@ -627,20 +627,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 705
+ content_length: 686
uncompressed: false
- body: '{"created_at":"2025-01-27T13:49:15.792688Z","id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"4eb9437f-8993-444a-b564-f7654add2131","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-01-27T13:49:15.792688Z","id":"9cfc1f86-0936-48a9-886b-85392381eaef","product_resource_id":"14d55807-c24e-4109-9461-4db25ccb30df","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-01-27T13:49:15.792688Z","zone":"fr-par-1"}'
+ body: '{"created_at":"2025-05-22T15:31:05.071179Z","id":"d39f8983-965c-483a-a369-d7cbc01448a1","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-22T15:31:05.071179Z","id":"05b3cfa2-3acb-44a8-93b8-00ebf830b4a3","product_resource_id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-05-22T15:31:05.071179Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "705"
+ - "686"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:16 GMT
+ - Thu, 22 May 2025 15:31:06 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -648,10 +648,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b2b67604-f445-48fe-91c3-8d50766d4f7d
+ - ac83a0e8-7cc7-48df-b27e-b8a799ce48d3
status: 200 OK
code: 200
- duration: 81.917875ms
+ duration: 74.762255ms
- id: 13
request:
proto: HTTP/1.1
@@ -667,8 +667,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ae16abdb-d1dd-46bf-8b5d-dd281cf374ff
+ - scaleway-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/891b58c3-d2ec-4983-b28a-8cb483205477
method: GET
response:
proto: HTTP/2.0
@@ -676,20 +676,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 652
+ content_length: 632
uncompressed: false
- body: '{"created_at":"2025-01-27T13:49:09.632002Z","id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","last_detached_at":null,"name":"tf-volume-sad-herschel","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-01-27T13:49:15.845066Z","id":"723b1e96-807d-4bf0-bc25-7367a24beaf8","product_resource_id":"14d55807-c24e-4109-9461-4db25ccb30df","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-01-27T13:49:15.845066Z","zone":"fr-par-1"}'
+ body: '{"created_at":"2025-05-22T15:30:58.677558Z","id":"891b58c3-d2ec-4983-b28a-8cb483205477","last_detached_at":null,"name":"tf-volume-funny-curie","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-22T15:31:05.133624Z","id":"fcf1fdd4-1689-4168-99cd-190be233b839","product_resource_id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-05-22T15:31:05.133624Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "652"
+ - "632"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:16 GMT
+ - Thu, 22 May 2025 15:31:06 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -697,10 +697,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - dfd0e45a-50f0-4e81-bd18-7007c9cc6a51
+ - 2bf878e0-6f71-4189-b0d3-c278d84b890d
status: 200 OK
code: 200
- duration: 86.211125ms
+ duration: 75.610116ms
- id: 14
request:
proto: HTTP/1.1
@@ -718,8 +718,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df/action
+ - scaleway-sdk-go/v1.0.0-beta.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/421a1744-d051-4b78-9fd8-2ef5f6c100df/action
method: POST
response:
proto: HTTP/2.0
@@ -729,7 +729,7 @@ interactions:
trailer: {}
content_length: 357
uncompressed: false
- body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/14d55807-c24e-4109-9461-4db25ccb30df/action","href_result":"/servers/14d55807-c24e-4109-9461-4db25ccb30df","id":"324146e8-266a-490c-8e3b-eeca5fbe570b","progress":0,"started_at":"2025-01-27T13:49:17.158944+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}'
+ body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/421a1744-d051-4b78-9fd8-2ef5f6c100df/action","href_result":"/servers/421a1744-d051-4b78-9fd8-2ef5f6c100df","id":"be970213-41d4-49ff-8a82-2f988d8fedf3","progress":0,"started_at":"2025-05-22T15:31:06.834235+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}'
headers:
Content-Length:
- "357"
@@ -738,11 +738,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:16 GMT
+ - Thu, 22 May 2025 15:31:06 GMT
Location:
- - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/324146e8-266a-490c-8e3b-eeca5fbe570b
+ - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/be970213-41d4-49ff-8a82-2f988d8fedf3
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -750,10 +750,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b911024c-a4d6-4b5a-b527-cbb53051ae8b
+ - 38164440-b922-4575-896d-d80a3d705334
status: 202 Accepted
code: 202
- duration: 257.537584ms
+ duration: 371.341562ms
- id: 15
request:
proto: HTTP/1.1
@@ -769,8 +769,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df
+ - scaleway-sdk-go/v1.0.0-beta.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/421a1744-d051-4b78-9fd8-2ef5f6c100df
method: GET
response:
proto: HTTP/2.0
@@ -778,20 +778,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1813
+ content_length: 1861
uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-01-27T13:49:15.595743+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-jolly-wiles","id":"14d55807-c24e-4109-9461-4db25ccb30df","image":{"arch":"x86_64","creation_date":"2024-10-07T11:39:13.069801+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","modification_date":"2024-10-07T11:39:13.069801+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"4eb9437f-8993-444a-b564-f7654add2131","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:90:00:1f","maintenances":[],"modification_date":"2025-01-27T13:49:16.949388+00:00","name":"tf-srv-jolly-wiles","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
+ body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-05-22T15:31:04.954748+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-elated-euclid","id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b0:1d:0b","maintenances":[],"modification_date":"2025-05-22T15:31:06.613674+00:00","name":"tf-srv-elated-euclid","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"d39f8983-965c-483a-a369-d7cbc01448a1","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"891b58c3-d2ec-4983-b28a-8cb483205477","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "1813"
+ - "1861"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:17 GMT
+ - Thu, 22 May 2025 15:31:07 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -799,10 +799,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ea9010bd-3676-49f0-93d6-e0909b4beae6
+ - 9e119ffa-a902-4d61-b65c-88f5b25d34a7
status: 200 OK
code: 200
- duration: 230.384292ms
+ duration: 240.7062ms
- id: 16
request:
proto: HTTP/1.1
@@ -818,8 +818,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df
+ - scaleway-sdk-go/v1.0.0-beta.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/421a1744-d051-4b78-9fd8-2ef5f6c100df
method: GET
response:
proto: HTTP/2.0
@@ -827,20 +827,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1946
+ content_length: 1996
uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-01-27T13:49:15.595743+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-jolly-wiles","id":"14d55807-c24e-4109-9461-4db25ccb30df","image":{"arch":"x86_64","creation_date":"2024-10-07T11:39:13.069801+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","modification_date":"2024-10-07T11:39:13.069801+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"4eb9437f-8993-444a-b564-f7654add2131","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:90:00:1f","maintenances":[],"modification_date":"2025-01-27T13:49:22.182411+00:00","name":"tf-srv-jolly-wiles","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
+ body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-05-22T15:31:04.954748+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-elated-euclid","id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"104","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b0:1d:0b","maintenances":[],"modification_date":"2025-05-22T15:31:11.606989+00:00","name":"tf-srv-elated-euclid","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d39f8983-965c-483a-a369-d7cbc01448a1","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"891b58c3-d2ec-4983-b28a-8cb483205477","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "1946"
+ - "1996"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:22 GMT
+ - Thu, 22 May 2025 15:31:12 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -848,10 +848,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - dcafe585-5c53-4a65-b448-34c7b1f97d06
+ - 893f90f9-1e68-4eec-9cff-21a5535a95fe
status: 200 OK
code: 200
- duration: 182.946334ms
+ duration: 159.498979ms
- id: 17
request:
proto: HTTP/1.1
@@ -867,8 +867,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df
+ - scaleway-sdk-go/v1.0.0-beta.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/421a1744-d051-4b78-9fd8-2ef5f6c100df
method: GET
response:
proto: HTTP/2.0
@@ -876,20 +876,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1946
+ content_length: 1996
uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-01-27T13:49:15.595743+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-jolly-wiles","id":"14d55807-c24e-4109-9461-4db25ccb30df","image":{"arch":"x86_64","creation_date":"2024-10-07T11:39:13.069801+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","modification_date":"2024-10-07T11:39:13.069801+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"4eb9437f-8993-444a-b564-f7654add2131","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:90:00:1f","maintenances":[],"modification_date":"2025-01-27T13:49:22.182411+00:00","name":"tf-srv-jolly-wiles","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
+ body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-05-22T15:31:04.954748+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-elated-euclid","id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"104","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b0:1d:0b","maintenances":[],"modification_date":"2025-05-22T15:31:11.606989+00:00","name":"tf-srv-elated-euclid","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d39f8983-965c-483a-a369-d7cbc01448a1","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"891b58c3-d2ec-4983-b28a-8cb483205477","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "1946"
+ - "1996"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:22 GMT
+ - Thu, 22 May 2025 15:31:12 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -897,10 +897,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ec4812c8-e2c5-4898-bd6c-4f0f1d21e35d
+ - 706b2316-97ab-4a01-96f9-763cbb456ada
status: 200 OK
code: 200
- duration: 205.274708ms
+ duration: 197.910335ms
- id: 18
request:
proto: HTTP/1.1
@@ -916,8 +916,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3d7e600d-bd4a-4782-9129-1c1401c319cd
+ - scaleway-sdk-go/v1.0.0-beta.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/d39f8983-965c-483a-a369-d7cbc01448a1
method: GET
response:
proto: HTTP/2.0
@@ -927,7 +927,7 @@ interactions:
trailer: {}
content_length: 143
uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d39f8983-965c-483a-a369-d7cbc01448a1","type":"not_found"}'
headers:
Content-Length:
- "143"
@@ -936,9 +936,9 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:22 GMT
+ - Thu, 22 May 2025 15:31:12 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -946,10 +946,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b119e083-3056-434e-9e68-acae11dcf8c2
+ - 833e6528-a9fb-4393-be18-bee0dc4a72ce
status: 404 Not Found
code: 404
- duration: 38.198709ms
+ duration: 60.353745ms
- id: 19
request:
proto: HTTP/1.1
@@ -965,8 +965,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3d7e600d-bd4a-4782-9129-1c1401c319cd
+ - scaleway-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/d39f8983-965c-483a-a369-d7cbc01448a1
method: GET
response:
proto: HTTP/2.0
@@ -974,20 +974,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 705
+ content_length: 686
uncompressed: false
- body: '{"created_at":"2025-01-27T13:49:15.792688Z","id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"4eb9437f-8993-444a-b564-f7654add2131","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-01-27T13:49:15.792688Z","id":"9cfc1f86-0936-48a9-886b-85392381eaef","product_resource_id":"14d55807-c24e-4109-9461-4db25ccb30df","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-01-27T13:49:15.792688Z","zone":"fr-par-1"}'
+ body: '{"created_at":"2025-05-22T15:31:05.071179Z","id":"d39f8983-965c-483a-a369-d7cbc01448a1","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-22T15:31:05.071179Z","id":"05b3cfa2-3acb-44a8-93b8-00ebf830b4a3","product_resource_id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-05-22T15:31:05.071179Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "705"
+ - "686"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:22 GMT
+ - Thu, 22 May 2025 15:31:12 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -995,10 +995,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e6e6aeed-d262-4926-bdbc-7e87ec8474dd
+ - 5187c28a-5c14-4e20-93f4-43e10306dbbd
status: 200 OK
code: 200
- duration: 78.326583ms
+ duration: 70.327051ms
- id: 20
request:
proto: HTTP/1.1
@@ -1014,8 +1014,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df/user_data
+ - scaleway-sdk-go/v1.0.0-beta.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/421a1744-d051-4b78-9fd8-2ef5f6c100df/user_data
method: GET
response:
proto: HTTP/2.0
@@ -1034,9 +1034,9 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:22 GMT
+ - Thu, 22 May 2025 15:31:12 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -1044,10 +1044,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9b9987a9-f57e-4c19-88e0-8c6bc8c7ae95
+ - f16af8d5-ac29-4f00-8ff9-4df534663e16
status: 200 OK
code: 200
- duration: 86.227ms
+ duration: 91.907231ms
- id: 21
request:
proto: HTTP/1.1
@@ -1063,8 +1063,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df/private_nics
+ - scaleway-sdk-go/v1.0.0-beta.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/421a1744-d051-4b78-9fd8-2ef5f6c100df/private_nics
method: GET
response:
proto: HTTP/2.0
@@ -1083,11 +1083,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:22 GMT
+ - Thu, 22 May 2025 15:31:12 GMT
Link:
- - ; rel="last"
+ - ; rel="last"
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -1095,12 +1095,12 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d909b313-1471-42de-b5ab-a20d2ff1ba10
+ - 9f90228b-ba2a-4403-b797-6cf9753a6fd7
X-Total-Count:
- "0"
status: 200 OK
code: 200
- duration: 89.942084ms
+ duration: 103.33154ms
- id: 22
request:
proto: HTTP/1.1
@@ -1116,8 +1116,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ae16abdb-d1dd-46bf-8b5d-dd281cf374ff
+ - scaleway-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/891b58c3-d2ec-4983-b28a-8cb483205477
method: GET
response:
proto: HTTP/2.0
@@ -1125,20 +1125,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 652
+ content_length: 632
uncompressed: false
- body: '{"created_at":"2025-01-27T13:49:09.632002Z","id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","last_detached_at":null,"name":"tf-volume-sad-herschel","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-01-27T13:49:15.845066Z","id":"723b1e96-807d-4bf0-bc25-7367a24beaf8","product_resource_id":"14d55807-c24e-4109-9461-4db25ccb30df","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-01-27T13:49:15.845066Z","zone":"fr-par-1"}'
+ body: '{"created_at":"2025-05-22T15:30:58.677558Z","id":"891b58c3-d2ec-4983-b28a-8cb483205477","last_detached_at":null,"name":"tf-volume-funny-curie","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-22T15:31:05.133624Z","id":"fcf1fdd4-1689-4168-99cd-190be233b839","product_resource_id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-05-22T15:31:05.133624Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "652"
+ - "632"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:23 GMT
+ - Thu, 22 May 2025 15:31:13 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -1146,10 +1146,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c64c9397-fdff-4155-9933-cccbfd8f9f1e
+ - 73f4dfc4-7537-4576-a568-5260bad4872d
status: 200 OK
code: 200
- duration: 68.629458ms
+ duration: 67.681257ms
- id: 23
request:
proto: HTTP/1.1
@@ -1165,8 +1165,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df
+ - scaleway-sdk-go/v1.0.0-beta.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/421a1744-d051-4b78-9fd8-2ef5f6c100df
method: GET
response:
proto: HTTP/2.0
@@ -1174,20 +1174,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1946
+ content_length: 1996
uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-01-27T13:49:15.595743+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-jolly-wiles","id":"14d55807-c24e-4109-9461-4db25ccb30df","image":{"arch":"x86_64","creation_date":"2024-10-07T11:39:13.069801+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","modification_date":"2024-10-07T11:39:13.069801+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"4eb9437f-8993-444a-b564-f7654add2131","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:90:00:1f","maintenances":[],"modification_date":"2025-01-27T13:49:22.182411+00:00","name":"tf-srv-jolly-wiles","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
+ body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-05-22T15:31:04.954748+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-elated-euclid","id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"104","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b0:1d:0b","maintenances":[],"modification_date":"2025-05-22T15:31:11.606989+00:00","name":"tf-srv-elated-euclid","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d39f8983-965c-483a-a369-d7cbc01448a1","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"891b58c3-d2ec-4983-b28a-8cb483205477","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "1946"
+ - "1996"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:23 GMT
+ - Thu, 22 May 2025 15:31:13 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -1195,10 +1195,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 734b324a-ae92-495f-bc1a-69a9a25f6539
+ - 965aa654-b26b-436c-abde-2281f9ea4c33
status: 200 OK
code: 200
- duration: 210.353458ms
+ duration: 262.003999ms
- id: 24
request:
proto: HTTP/1.1
@@ -1214,8 +1214,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3d7e600d-bd4a-4782-9129-1c1401c319cd
+ - scaleway-sdk-go/v1.0.0-beta.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/d39f8983-965c-483a-a369-d7cbc01448a1
method: GET
response:
proto: HTTP/2.0
@@ -1225,7 +1225,7 @@ interactions:
trailer: {}
content_length: 143
uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d39f8983-965c-483a-a369-d7cbc01448a1","type":"not_found"}'
headers:
Content-Length:
- "143"
@@ -1234,9 +1234,9 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:23 GMT
+ - Thu, 22 May 2025 15:31:14 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -1244,10 +1244,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7e9d161d-4bbc-46a1-ab48-dab7899520ff
+ - 12c0ccac-50a1-4a63-a3e6-5e1fc297243e
status: 404 Not Found
code: 404
- duration: 38.039458ms
+ duration: 81.263336ms
- id: 25
request:
proto: HTTP/1.1
@@ -1263,8 +1263,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3d7e600d-bd4a-4782-9129-1c1401c319cd
+ - scaleway-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/d39f8983-965c-483a-a369-d7cbc01448a1
method: GET
response:
proto: HTTP/2.0
@@ -1272,20 +1272,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 705
+ content_length: 686
uncompressed: false
- body: '{"created_at":"2025-01-27T13:49:15.792688Z","id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"4eb9437f-8993-444a-b564-f7654add2131","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-01-27T13:49:15.792688Z","id":"9cfc1f86-0936-48a9-886b-85392381eaef","product_resource_id":"14d55807-c24e-4109-9461-4db25ccb30df","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-01-27T13:49:15.792688Z","zone":"fr-par-1"}'
+ body: '{"created_at":"2025-05-22T15:31:05.071179Z","id":"d39f8983-965c-483a-a369-d7cbc01448a1","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-22T15:31:05.071179Z","id":"05b3cfa2-3acb-44a8-93b8-00ebf830b4a3","product_resource_id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-05-22T15:31:05.071179Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "705"
+ - "686"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:23 GMT
+ - Thu, 22 May 2025 15:31:14 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -1293,10 +1293,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3e943962-e0d8-43d9-9e07-09ac981426fe
+ - 6be17a72-7755-452f-a24a-2f1e8beadb25
status: 200 OK
code: 200
- duration: 71.12175ms
+ duration: 75.082045ms
- id: 26
request:
proto: HTTP/1.1
@@ -1312,8 +1312,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df/user_data
+ - scaleway-sdk-go/v1.0.0-beta.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/421a1744-d051-4b78-9fd8-2ef5f6c100df/user_data
method: GET
response:
proto: HTTP/2.0
@@ -1332,9 +1332,9 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:23 GMT
+ - Thu, 22 May 2025 15:31:14 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -1342,10 +1342,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 40e71245-50bb-4a51-b876-6edd5c7e1d17
+ - c42898a1-8878-4319-aa17-9bf6b209cd8b
status: 200 OK
code: 200
- duration: 106.970541ms
+ duration: 90.003398ms
- id: 27
request:
proto: HTTP/1.1
@@ -1361,8 +1361,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df/private_nics
+ - scaleway-sdk-go/v1.0.0-beta.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/421a1744-d051-4b78-9fd8-2ef5f6c100df/private_nics
method: GET
response:
proto: HTTP/2.0
@@ -1381,11 +1381,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:23 GMT
+ - Thu, 22 May 2025 15:31:14 GMT
Link:
- - ; rel="last"
+ - ; rel="last"
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -1393,12 +1393,12 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f6d0a5cb-8522-4591-a830-9de2d6f5f9f1
+ - 894e127a-baa6-4be8-b4ed-8b3ab498b2aa
X-Total-Count:
- "0"
status: 200 OK
code: 200
- duration: 92.73825ms
+ duration: 81.888208ms
- id: 28
request:
proto: HTTP/1.1
@@ -1414,8 +1414,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ae16abdb-d1dd-46bf-8b5d-dd281cf374ff
+ - scaleway-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/891b58c3-d2ec-4983-b28a-8cb483205477
method: GET
response:
proto: HTTP/2.0
@@ -1423,20 +1423,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 652
+ content_length: 632
uncompressed: false
- body: '{"created_at":"2025-01-27T13:49:09.632002Z","id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","last_detached_at":null,"name":"tf-volume-sad-herschel","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-01-27T13:49:15.845066Z","id":"723b1e96-807d-4bf0-bc25-7367a24beaf8","product_resource_id":"14d55807-c24e-4109-9461-4db25ccb30df","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-01-27T13:49:15.845066Z","zone":"fr-par-1"}'
+ body: '{"created_at":"2025-05-22T15:30:58.677558Z","id":"891b58c3-d2ec-4983-b28a-8cb483205477","last_detached_at":null,"name":"tf-volume-funny-curie","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-22T15:31:05.133624Z","id":"fcf1fdd4-1689-4168-99cd-190be233b839","product_resource_id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-05-22T15:31:05.133624Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "652"
+ - "632"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:24 GMT
+ - Thu, 22 May 2025 15:31:15 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -1444,10 +1444,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8539320f-a99b-40b9-8d07-b5e0ccd7b121
+ - 7003a7b0-b163-4703-a4e6-abc7132a2826
status: 200 OK
code: 200
- duration: 88.694583ms
+ duration: 71.505453ms
- id: 29
request:
proto: HTTP/1.1
@@ -1463,8 +1463,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df
+ - scaleway-sdk-go/v1.0.0-beta.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/421a1744-d051-4b78-9fd8-2ef5f6c100df
method: GET
response:
proto: HTTP/2.0
@@ -1472,20 +1472,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1946
+ content_length: 1996
uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-01-27T13:49:15.595743+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-jolly-wiles","id":"14d55807-c24e-4109-9461-4db25ccb30df","image":{"arch":"x86_64","creation_date":"2024-10-07T11:39:13.069801+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","modification_date":"2024-10-07T11:39:13.069801+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"4eb9437f-8993-444a-b564-f7654add2131","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:90:00:1f","maintenances":[],"modification_date":"2025-01-27T13:49:22.182411+00:00","name":"tf-srv-jolly-wiles","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
+ body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-05-22T15:31:04.954748+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-elated-euclid","id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"104","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b0:1d:0b","maintenances":[],"modification_date":"2025-05-22T15:31:11.606989+00:00","name":"tf-srv-elated-euclid","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d39f8983-965c-483a-a369-d7cbc01448a1","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"891b58c3-d2ec-4983-b28a-8cb483205477","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "1946"
+ - "1996"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:24 GMT
+ - Thu, 22 May 2025 15:31:15 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -1493,10 +1493,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 33db09e9-746c-4ae9-bcfc-bec791ff1e73
+ - a880ba08-532f-4629-8497-e56e419eec86
status: 200 OK
code: 200
- duration: 179.271334ms
+ duration: 283.917843ms
- id: 30
request:
proto: HTTP/1.1
@@ -1512,8 +1512,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3d7e600d-bd4a-4782-9129-1c1401c319cd
+ - scaleway-sdk-go/v1.0.0-beta.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/d39f8983-965c-483a-a369-d7cbc01448a1
method: GET
response:
proto: HTTP/2.0
@@ -1523,7 +1523,7 @@ interactions:
trailer: {}
content_length: 143
uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d39f8983-965c-483a-a369-d7cbc01448a1","type":"not_found"}'
headers:
Content-Length:
- "143"
@@ -1532,9 +1532,9 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:23 GMT
+ - Thu, 22 May 2025 15:31:15 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -1542,10 +1542,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 93b09f98-03c6-49f2-979c-314c7744a167
+ - 735a3917-6462-4465-b39c-eeefeb8c996f
status: 404 Not Found
code: 404
- duration: 30.4045ms
+ duration: 612.245311ms
- id: 31
request:
proto: HTTP/1.1
@@ -1561,8 +1561,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3d7e600d-bd4a-4782-9129-1c1401c319cd
+ - scaleway-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/d39f8983-965c-483a-a369-d7cbc01448a1
method: GET
response:
proto: HTTP/2.0
@@ -1570,20 +1570,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 705
+ content_length: 686
uncompressed: false
- body: '{"created_at":"2025-01-27T13:49:15.792688Z","id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"4eb9437f-8993-444a-b564-f7654add2131","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-01-27T13:49:15.792688Z","id":"9cfc1f86-0936-48a9-886b-85392381eaef","product_resource_id":"14d55807-c24e-4109-9461-4db25ccb30df","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-01-27T13:49:15.792688Z","zone":"fr-par-1"}'
+ body: '{"created_at":"2025-05-22T15:31:05.071179Z","id":"d39f8983-965c-483a-a369-d7cbc01448a1","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-22T15:31:05.071179Z","id":"05b3cfa2-3acb-44a8-93b8-00ebf830b4a3","product_resource_id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-05-22T15:31:05.071179Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "705"
+ - "686"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:24 GMT
+ - Thu, 22 May 2025 15:31:15 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -1591,10 +1591,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e1da1012-ca28-4770-8689-c187c8559adc
+ - e29faed3-c03b-45ed-a74b-bd3feb0d846c
status: 200 OK
code: 200
- duration: 78.761459ms
+ duration: 66.472788ms
- id: 32
request:
proto: HTTP/1.1
@@ -1610,8 +1610,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df/user_data
+ - scaleway-sdk-go/v1.0.0-beta.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/421a1744-d051-4b78-9fd8-2ef5f6c100df/user_data
method: GET
response:
proto: HTTP/2.0
@@ -1630,9 +1630,9 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:24 GMT
+ - Thu, 22 May 2025 15:31:16 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -1640,10 +1640,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 626c4029-10e7-4e71-b189-cd7e12697490
+ - 0f9f8195-a4c7-4e2e-b5b6-89f371996949
status: 200 OK
code: 200
- duration: 73.150334ms
+ duration: 138.291569ms
- id: 33
request:
proto: HTTP/1.1
@@ -1659,8 +1659,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df/private_nics
+ - scaleway-sdk-go/v1.0.0-beta.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/421a1744-d051-4b78-9fd8-2ef5f6c100df/private_nics
method: GET
response:
proto: HTTP/2.0
@@ -1679,11 +1679,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:24 GMT
+ - Thu, 22 May 2025 15:31:16 GMT
Link:
- - ; rel="last"
+ - ; rel="last"
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -1691,12 +1691,12 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3399f024-f324-4f43-812a-607b50ec45d5
+ - 3d4867f7-3291-4a9c-a49f-a794ed3b58c1
X-Total-Count:
- "0"
status: 200 OK
code: 200
- duration: 77.855916ms
+ duration: 112.3737ms
- id: 34
request:
proto: HTTP/1.1
@@ -1712,8 +1712,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df
+ - scaleway-sdk-go/v1.0.0-beta.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/421a1744-d051-4b78-9fd8-2ef5f6c100df
method: GET
response:
proto: HTTP/2.0
@@ -1721,20 +1721,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1946
+ content_length: 1996
uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-01-27T13:49:15.595743+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-jolly-wiles","id":"14d55807-c24e-4109-9461-4db25ccb30df","image":{"arch":"x86_64","creation_date":"2024-10-07T11:39:13.069801+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","modification_date":"2024-10-07T11:39:13.069801+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"4eb9437f-8993-444a-b564-f7654add2131","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:90:00:1f","maintenances":[],"modification_date":"2025-01-27T13:49:22.182411+00:00","name":"tf-srv-jolly-wiles","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
+ body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-05-22T15:31:04.954748+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-elated-euclid","id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"104","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b0:1d:0b","maintenances":[],"modification_date":"2025-05-22T15:31:11.606989+00:00","name":"tf-srv-elated-euclid","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d39f8983-965c-483a-a369-d7cbc01448a1","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"891b58c3-d2ec-4983-b28a-8cb483205477","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "1946"
+ - "1996"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:25 GMT
+ - Thu, 22 May 2025 15:31:17 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -1742,29 +1742,29 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 41fcf2d7-bb6a-4cf9-a22d-19b668c998d6
+ - 247b9ca6-d3eb-42fd-9282-d84349500901
status: 200 OK
code: 200
- duration: 212.964167ms
+ duration: 232.672363ms
- id: 35
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 106
+ content_length: 108
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: '{"volumes":{"0":{"id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","boot":false,"name":"tf-vol-romantic-wing"}}}'
+ body: '{"volumes":{"0":{"id":"d39f8983-965c-483a-a369-d7cbc01448a1","boot":false,"name":"tf-vol-priceless-wiles"}}}'
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df
+ - scaleway-sdk-go/v1.0.0-beta.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/421a1744-d051-4b78-9fd8-2ef5f6c100df
method: PATCH
response:
proto: HTTP/2.0
@@ -1772,20 +1772,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1829
+ content_length: 1879
uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-01-27T13:49:15.595743+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-jolly-wiles","id":"14d55807-c24e-4109-9461-4db25ccb30df","image":{"arch":"x86_64","creation_date":"2024-10-07T11:39:13.069801+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","modification_date":"2024-10-07T11:39:13.069801+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"4eb9437f-8993-444a-b564-f7654add2131","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:90:00:1f","maintenances":[],"modification_date":"2025-01-27T13:49:22.182411+00:00","name":"tf-srv-jolly-wiles","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
+ body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-05-22T15:31:04.954748+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-elated-euclid","id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"104","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b0:1d:0b","maintenances":[],"modification_date":"2025-05-22T15:31:11.606989+00:00","name":"tf-srv-elated-euclid","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d39f8983-965c-483a-a369-d7cbc01448a1","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "1829"
+ - "1879"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:25 GMT
+ - Thu, 22 May 2025 15:31:18 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -1793,10 +1793,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4efbf1e3-dfc3-41d9-91a7-aa30bce451f8
+ - 9a8ea275-ab0d-4e18-adc1-fde4496b29b1
status: 200 OK
code: 200
- duration: 441.753625ms
+ duration: 1.117686585s
- id: 36
request:
proto: HTTP/1.1
@@ -1812,8 +1812,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df
+ - scaleway-sdk-go/v1.0.0-beta.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/421a1744-d051-4b78-9fd8-2ef5f6c100df
method: GET
response:
proto: HTTP/2.0
@@ -1821,20 +1821,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1829
+ content_length: 1879
uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-01-27T13:49:15.595743+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-jolly-wiles","id":"14d55807-c24e-4109-9461-4db25ccb30df","image":{"arch":"x86_64","creation_date":"2024-10-07T11:39:13.069801+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","modification_date":"2024-10-07T11:39:13.069801+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"4eb9437f-8993-444a-b564-f7654add2131","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:90:00:1f","maintenances":[],"modification_date":"2025-01-27T13:49:22.182411+00:00","name":"tf-srv-jolly-wiles","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
+ body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-05-22T15:31:04.954748+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-elated-euclid","id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"104","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b0:1d:0b","maintenances":[],"modification_date":"2025-05-22T15:31:11.606989+00:00","name":"tf-srv-elated-euclid","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d39f8983-965c-483a-a369-d7cbc01448a1","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "1829"
+ - "1879"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:25 GMT
+ - Thu, 22 May 2025 15:31:18 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -1842,10 +1842,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6d3546cb-982b-4936-aca7-f6c3c1a7b0e7
+ - 96f90479-5ad5-4be7-acca-a314397161c0
status: 200 OK
code: 200
- duration: 151.658125ms
+ duration: 391.356162ms
- id: 37
request:
proto: HTTP/1.1
@@ -1861,8 +1861,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df
+ - scaleway-sdk-go/v1.0.0-beta.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/421a1744-d051-4b78-9fd8-2ef5f6c100df
method: GET
response:
proto: HTTP/2.0
@@ -1870,20 +1870,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1829
+ content_length: 1879
uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-01-27T13:49:15.595743+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-jolly-wiles","id":"14d55807-c24e-4109-9461-4db25ccb30df","image":{"arch":"x86_64","creation_date":"2024-10-07T11:39:13.069801+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","modification_date":"2024-10-07T11:39:13.069801+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"4eb9437f-8993-444a-b564-f7654add2131","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:90:00:1f","maintenances":[],"modification_date":"2025-01-27T13:49:22.182411+00:00","name":"tf-srv-jolly-wiles","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
+ body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-05-22T15:31:04.954748+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-elated-euclid","id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"104","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b0:1d:0b","maintenances":[],"modification_date":"2025-05-22T15:31:11.606989+00:00","name":"tf-srv-elated-euclid","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d39f8983-965c-483a-a369-d7cbc01448a1","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "1829"
+ - "1879"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:25 GMT
+ - Thu, 22 May 2025 15:31:19 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -1891,10 +1891,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - df3b6018-de04-4e5c-898f-61b7b2c9c2e8
+ - 3be87752-5a0a-4cb8-a8a4-430a89bc4879
status: 200 OK
code: 200
- duration: 184.841791ms
+ duration: 183.15217ms
- id: 38
request:
proto: HTTP/1.1
@@ -1910,8 +1910,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3d7e600d-bd4a-4782-9129-1c1401c319cd
+ - scaleway-sdk-go/v1.0.0-beta.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/d39f8983-965c-483a-a369-d7cbc01448a1
method: GET
response:
proto: HTTP/2.0
@@ -1921,7 +1921,7 @@ interactions:
trailer: {}
content_length: 143
uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d39f8983-965c-483a-a369-d7cbc01448a1","type":"not_found"}'
headers:
Content-Length:
- "143"
@@ -1930,9 +1930,9 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:25 GMT
+ - Thu, 22 May 2025 15:31:19 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -1940,10 +1940,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 162e3f9b-1eda-4efd-b538-1caf1d3a4646
+ - abe4a0c1-c85a-45ad-a50b-eee500273762
status: 404 Not Found
code: 404
- duration: 38.149375ms
+ duration: 77.318172ms
- id: 39
request:
proto: HTTP/1.1
@@ -1959,8 +1959,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3d7e600d-bd4a-4782-9129-1c1401c319cd
+ - scaleway-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/d39f8983-965c-483a-a369-d7cbc01448a1
method: GET
response:
proto: HTTP/2.0
@@ -1968,20 +1968,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 705
+ content_length: 686
uncompressed: false
- body: '{"created_at":"2025-01-27T13:49:15.792688Z","id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"4eb9437f-8993-444a-b564-f7654add2131","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-01-27T13:49:15.792688Z","id":"9cfc1f86-0936-48a9-886b-85392381eaef","product_resource_id":"14d55807-c24e-4109-9461-4db25ccb30df","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-01-27T13:49:15.792688Z","zone":"fr-par-1"}'
+ body: '{"created_at":"2025-05-22T15:31:05.071179Z","id":"d39f8983-965c-483a-a369-d7cbc01448a1","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-22T15:31:05.071179Z","id":"05b3cfa2-3acb-44a8-93b8-00ebf830b4a3","product_resource_id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-05-22T15:31:05.071179Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "705"
+ - "686"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:25 GMT
+ - Thu, 22 May 2025 15:31:19 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -1989,10 +1989,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 410b82ec-cd47-47e4-8233-e435d0ede975
+ - 2a4e3a4d-3480-411e-8385-81b1deb034dc
status: 200 OK
code: 200
- duration: 72.52775ms
+ duration: 57.354827ms
- id: 40
request:
proto: HTTP/1.1
@@ -2008,8 +2008,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df/user_data
+ - scaleway-sdk-go/v1.0.0-beta.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/421a1744-d051-4b78-9fd8-2ef5f6c100df/user_data
method: GET
response:
proto: HTTP/2.0
@@ -2028,9 +2028,9 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:26 GMT
+ - Thu, 22 May 2025 15:31:19 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -2038,10 +2038,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1b2cb289-75e3-4f56-bfd9-24e56b077ea5
+ - 8a17dd30-7af7-4f20-b696-03acc29c34b1
status: 200 OK
code: 200
- duration: 83.565125ms
+ duration: 144.081725ms
- id: 41
request:
proto: HTTP/1.1
@@ -2057,8 +2057,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df/private_nics
+ - scaleway-sdk-go/v1.0.0-beta.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/421a1744-d051-4b78-9fd8-2ef5f6c100df/private_nics
method: GET
response:
proto: HTTP/2.0
@@ -2077,11 +2077,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:25 GMT
+ - Thu, 22 May 2025 15:31:19 GMT
Link:
- - ; rel="last"
+ - ; rel="last"
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -2089,12 +2089,12 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0a7a3bea-98bd-4392-8ac5-29730496a960
+ - b72d5d63-1f02-410c-b41e-13937ff0a6a8
X-Total-Count:
- "0"
status: 200 OK
code: 200
- duration: 75.503625ms
+ duration: 72.499509ms
- id: 42
request:
proto: HTTP/1.1
@@ -2110,8 +2110,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ae16abdb-d1dd-46bf-8b5d-dd281cf374ff
+ - scaleway-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/891b58c3-d2ec-4983-b28a-8cb483205477
method: GET
response:
proto: HTTP/2.0
@@ -2119,20 +2119,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 653
+ content_length: 633
uncompressed: false
- body: '{"created_at":"2025-01-27T13:49:09.632002Z","id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","last_detached_at":null,"name":"tf-volume-sad-herschel","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-01-27T13:49:15.845066Z","id":"723b1e96-807d-4bf0-bc25-7367a24beaf8","product_resource_id":"14d55807-c24e-4109-9461-4db25ccb30df","product_resource_type":"instance_server","status":"detaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-01-27T13:49:15.845066Z","zone":"fr-par-1"}'
+ body: '{"created_at":"2025-05-22T15:30:58.677558Z","id":"891b58c3-d2ec-4983-b28a-8cb483205477","last_detached_at":null,"name":"tf-volume-funny-curie","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-22T15:31:05.133624Z","id":"fcf1fdd4-1689-4168-99cd-190be233b839","product_resource_id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","product_resource_type":"instance_server","status":"detaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-05-22T15:31:05.133624Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "653"
+ - "633"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:26 GMT
+ - Thu, 22 May 2025 15:31:20 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -2140,10 +2140,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d5910517-8693-4ef8-951d-328e18bf92ec
+ - 5440c9f3-b44a-4f21-bb7f-c365c7e74d97
status: 200 OK
code: 200
- duration: 71.887667ms
+ duration: 64.494125ms
- id: 43
request:
proto: HTTP/1.1
@@ -2159,8 +2159,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df
+ - scaleway-sdk-go/v1.0.0-beta.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/421a1744-d051-4b78-9fd8-2ef5f6c100df
method: GET
response:
proto: HTTP/2.0
@@ -2168,20 +2168,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1829
+ content_length: 1879
uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-01-27T13:49:15.595743+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-jolly-wiles","id":"14d55807-c24e-4109-9461-4db25ccb30df","image":{"arch":"x86_64","creation_date":"2024-10-07T11:39:13.069801+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","modification_date":"2024-10-07T11:39:13.069801+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"4eb9437f-8993-444a-b564-f7654add2131","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:90:00:1f","maintenances":[],"modification_date":"2025-01-27T13:49:22.182411+00:00","name":"tf-srv-jolly-wiles","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
+ body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-05-22T15:31:04.954748+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-elated-euclid","id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"104","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b0:1d:0b","maintenances":[],"modification_date":"2025-05-22T15:31:11.606989+00:00","name":"tf-srv-elated-euclid","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d39f8983-965c-483a-a369-d7cbc01448a1","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "1829"
+ - "1879"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:26 GMT
+ - Thu, 22 May 2025 15:31:20 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -2189,10 +2189,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e22e83b5-854d-4449-b3a1-6d1680ce9226
+ - 76ae2614-10c4-4f4a-8808-60e5fd2ec698
status: 200 OK
code: 200
- duration: 213.678667ms
+ duration: 188.520954ms
- id: 44
request:
proto: HTTP/1.1
@@ -2208,8 +2208,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3d7e600d-bd4a-4782-9129-1c1401c319cd
+ - scaleway-sdk-go/v1.0.0-beta.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/d39f8983-965c-483a-a369-d7cbc01448a1
method: GET
response:
proto: HTTP/2.0
@@ -2219,7 +2219,7 @@ interactions:
trailer: {}
content_length: 143
uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d39f8983-965c-483a-a369-d7cbc01448a1","type":"not_found"}'
headers:
Content-Length:
- "143"
@@ -2228,9 +2228,9 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:26 GMT
+ - Thu, 22 May 2025 15:31:20 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -2238,10 +2238,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 82f7cf2a-5c63-4273-ad90-a11ce12050e9
+ - 75c91095-47a7-4a08-9f98-724a29ce5949
status: 404 Not Found
code: 404
- duration: 29.190875ms
+ duration: 118.474789ms
- id: 45
request:
proto: HTTP/1.1
@@ -2257,8 +2257,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3d7e600d-bd4a-4782-9129-1c1401c319cd
+ - scaleway-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/d39f8983-965c-483a-a369-d7cbc01448a1
method: GET
response:
proto: HTTP/2.0
@@ -2266,20 +2266,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 705
+ content_length: 686
uncompressed: false
- body: '{"created_at":"2025-01-27T13:49:15.792688Z","id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"4eb9437f-8993-444a-b564-f7654add2131","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-01-27T13:49:15.792688Z","id":"9cfc1f86-0936-48a9-886b-85392381eaef","product_resource_id":"14d55807-c24e-4109-9461-4db25ccb30df","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-01-27T13:49:15.792688Z","zone":"fr-par-1"}'
+ body: '{"created_at":"2025-05-22T15:31:05.071179Z","id":"d39f8983-965c-483a-a369-d7cbc01448a1","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-22T15:31:05.071179Z","id":"05b3cfa2-3acb-44a8-93b8-00ebf830b4a3","product_resource_id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-05-22T15:31:05.071179Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "705"
+ - "686"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:26 GMT
+ - Thu, 22 May 2025 15:31:20 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -2287,10 +2287,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5828c114-7c96-4a5d-86f9-5f56c0941749
+ - afd6d05c-346c-41dc-80ac-3902a6428802
status: 200 OK
code: 200
- duration: 73.861208ms
+ duration: 69.119515ms
- id: 46
request:
proto: HTTP/1.1
@@ -2306,8 +2306,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df/user_data
+ - scaleway-sdk-go/v1.0.0-beta.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/421a1744-d051-4b78-9fd8-2ef5f6c100df/user_data
method: GET
response:
proto: HTTP/2.0
@@ -2326,9 +2326,9 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:26 GMT
+ - Thu, 22 May 2025 15:31:20 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -2336,10 +2336,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b88ad38f-e88c-469a-bcf9-7687ee390ac9
+ - 60306c9c-5e5a-4b69-9ffe-8853eae93f5e
status: 200 OK
code: 200
- duration: 89.918125ms
+ duration: 112.936086ms
- id: 47
request:
proto: HTTP/1.1
@@ -2355,8 +2355,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df/private_nics
+ - scaleway-sdk-go/v1.0.0-beta.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/421a1744-d051-4b78-9fd8-2ef5f6c100df/private_nics
method: GET
response:
proto: HTTP/2.0
@@ -2375,11 +2375,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:26 GMT
+ - Thu, 22 May 2025 15:31:20 GMT
Link:
- - ; rel="last"
+ - ; rel="last"
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -2387,12 +2387,12 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3edc7139-3a09-4d04-bc8b-3203a22c0763
+ - 35ebcf94-0db9-4792-9542-7a6c46342d92
X-Total-Count:
- "0"
status: 200 OK
code: 200
- duration: 82.759791ms
+ duration: 88.000219ms
- id: 48
request:
proto: HTTP/1.1
@@ -2408,8 +2408,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ae16abdb-d1dd-46bf-8b5d-dd281cf374ff
+ - scaleway-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/891b58c3-d2ec-4983-b28a-8cb483205477
method: GET
response:
proto: HTTP/2.0
@@ -2417,20 +2417,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 653
+ content_length: 633
uncompressed: false
- body: '{"created_at":"2025-01-27T13:49:09.632002Z","id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","last_detached_at":null,"name":"tf-volume-sad-herschel","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-01-27T13:49:15.845066Z","id":"723b1e96-807d-4bf0-bc25-7367a24beaf8","product_resource_id":"14d55807-c24e-4109-9461-4db25ccb30df","product_resource_type":"instance_server","status":"detaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-01-27T13:49:15.845066Z","zone":"fr-par-1"}'
+ body: '{"created_at":"2025-05-22T15:30:58.677558Z","id":"891b58c3-d2ec-4983-b28a-8cb483205477","last_detached_at":null,"name":"tf-volume-funny-curie","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-22T15:31:05.133624Z","id":"fcf1fdd4-1689-4168-99cd-190be233b839","product_resource_id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","product_resource_type":"instance_server","status":"detaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-05-22T15:31:05.133624Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "653"
+ - "633"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:31 GMT
+ - Thu, 22 May 2025 15:31:25 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -2438,10 +2438,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5b8e2edc-ab9d-44cd-a059-a3c9bd1360bc
+ - 2ca2b4a6-27c9-470d-9643-5a662a803a53
status: 200 OK
code: 200
- duration: 96.68825ms
+ duration: 69.625265ms
- id: 49
request:
proto: HTTP/1.1
@@ -2457,8 +2457,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ae16abdb-d1dd-46bf-8b5d-dd281cf374ff
+ - scaleway-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/891b58c3-d2ec-4983-b28a-8cb483205477
method: GET
response:
proto: HTTP/2.0
@@ -2466,20 +2466,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 653
+ content_length: 633
uncompressed: false
- body: '{"created_at":"2025-01-27T13:49:09.632002Z","id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","last_detached_at":null,"name":"tf-volume-sad-herschel","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-01-27T13:49:15.845066Z","id":"723b1e96-807d-4bf0-bc25-7367a24beaf8","product_resource_id":"14d55807-c24e-4109-9461-4db25ccb30df","product_resource_type":"instance_server","status":"detaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-01-27T13:49:15.845066Z","zone":"fr-par-1"}'
+ body: '{"created_at":"2025-05-22T15:30:58.677558Z","id":"891b58c3-d2ec-4983-b28a-8cb483205477","last_detached_at":null,"name":"tf-volume-funny-curie","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-22T15:31:05.133624Z","id":"fcf1fdd4-1689-4168-99cd-190be233b839","product_resource_id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","product_resource_type":"instance_server","status":"detaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-05-22T15:31:05.133624Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "653"
+ - "633"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:36 GMT
+ - Thu, 22 May 2025 15:31:30 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -2487,10 +2487,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2404edf0-2cf0-466f-884f-02cde7bee0de
+ - 0b851344-5bfc-4626-b700-dca3795bfa0c
status: 200 OK
code: 200
- duration: 80.87125ms
+ duration: 79.439623ms
- id: 50
request:
proto: HTTP/1.1
@@ -2506,8 +2506,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ae16abdb-d1dd-46bf-8b5d-dd281cf374ff
+ - scaleway-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/891b58c3-d2ec-4983-b28a-8cb483205477
method: GET
response:
proto: HTTP/2.0
@@ -2515,20 +2515,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 653
+ content_length: 633
uncompressed: false
- body: '{"created_at":"2025-01-27T13:49:09.632002Z","id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","last_detached_at":null,"name":"tf-volume-sad-herschel","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-01-27T13:49:15.845066Z","id":"723b1e96-807d-4bf0-bc25-7367a24beaf8","product_resource_id":"14d55807-c24e-4109-9461-4db25ccb30df","product_resource_type":"instance_server","status":"detaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-01-27T13:49:15.845066Z","zone":"fr-par-1"}'
+ body: '{"created_at":"2025-05-22T15:30:58.677558Z","id":"891b58c3-d2ec-4983-b28a-8cb483205477","last_detached_at":null,"name":"tf-volume-funny-curie","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-22T15:31:05.133624Z","id":"fcf1fdd4-1689-4168-99cd-190be233b839","product_resource_id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","product_resource_type":"instance_server","status":"detaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-05-22T15:31:05.133624Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "653"
+ - "633"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:41 GMT
+ - Thu, 22 May 2025 15:31:35 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -2536,10 +2536,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ed8ea573-042b-4f62-855a-9b55370d2d0e
+ - a77757af-160b-4f0f-9614-d8078ed44693
status: 200 OK
code: 200
- duration: 80.413958ms
+ duration: 65.158362ms
- id: 51
request:
proto: HTTP/1.1
@@ -2555,8 +2555,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ae16abdb-d1dd-46bf-8b5d-dd281cf374ff
+ - scaleway-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/891b58c3-d2ec-4983-b28a-8cb483205477
method: GET
response:
proto: HTTP/2.0
@@ -2564,20 +2564,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 653
+ content_length: 633
uncompressed: false
- body: '{"created_at":"2025-01-27T13:49:09.632002Z","id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","last_detached_at":null,"name":"tf-volume-sad-herschel","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-01-27T13:49:15.845066Z","id":"723b1e96-807d-4bf0-bc25-7367a24beaf8","product_resource_id":"14d55807-c24e-4109-9461-4db25ccb30df","product_resource_type":"instance_server","status":"detaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-01-27T13:49:15.845066Z","zone":"fr-par-1"}'
+ body: '{"created_at":"2025-05-22T15:30:58.677558Z","id":"891b58c3-d2ec-4983-b28a-8cb483205477","last_detached_at":null,"name":"tf-volume-funny-curie","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-22T15:31:05.133624Z","id":"fcf1fdd4-1689-4168-99cd-190be233b839","product_resource_id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","product_resource_type":"instance_server","status":"detaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-05-22T15:31:05.133624Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "653"
+ - "633"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:46 GMT
+ - Thu, 22 May 2025 15:31:40 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -2585,10 +2585,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - fc6f78bc-defd-4e9b-ad44-6d4a37b49da4
+ - 602df0e6-b32f-4694-af5a-c104c984ec62
status: 200 OK
code: 200
- duration: 91.83625ms
+ duration: 63.349527ms
- id: 52
request:
proto: HTTP/1.1
@@ -2604,8 +2604,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ae16abdb-d1dd-46bf-8b5d-dd281cf374ff
+ - scaleway-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/891b58c3-d2ec-4983-b28a-8cb483205477
method: GET
response:
proto: HTTP/2.0
@@ -2613,20 +2613,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 653
+ content_length: 633
uncompressed: false
- body: '{"created_at":"2025-01-27T13:49:09.632002Z","id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","last_detached_at":null,"name":"tf-volume-sad-herschel","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-01-27T13:49:15.845066Z","id":"723b1e96-807d-4bf0-bc25-7367a24beaf8","product_resource_id":"14d55807-c24e-4109-9461-4db25ccb30df","product_resource_type":"instance_server","status":"detaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-01-27T13:49:15.845066Z","zone":"fr-par-1"}'
+ body: '{"created_at":"2025-05-22T15:30:58.677558Z","id":"891b58c3-d2ec-4983-b28a-8cb483205477","last_detached_at":null,"name":"tf-volume-funny-curie","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-22T15:31:05.133624Z","id":"fcf1fdd4-1689-4168-99cd-190be233b839","product_resource_id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","product_resource_type":"instance_server","status":"detaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-05-22T15:31:05.133624Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "653"
+ - "633"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:51 GMT
+ - Thu, 22 May 2025 15:31:45 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -2634,10 +2634,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e6d22203-667d-49b3-a952-a1479ec05357
+ - 47edf3eb-fbc2-4873-82fd-2f9143c92277
status: 200 OK
code: 200
- duration: 74.247875ms
+ duration: 67.061633ms
- id: 53
request:
proto: HTTP/1.1
@@ -2653,8 +2653,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ae16abdb-d1dd-46bf-8b5d-dd281cf374ff
+ - scaleway-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/891b58c3-d2ec-4983-b28a-8cb483205477
method: GET
response:
proto: HTTP/2.0
@@ -2662,20 +2662,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 445
+ content_length: 633
uncompressed: false
- body: '{"created_at":"2025-01-27T13:49:09.632002Z","id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","last_detached_at":"2025-01-27T13:49:56.563437Z","name":"tf-volume-sad-herschel","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-01-27T13:49:56.563437Z","zone":"fr-par-1"}'
+ body: '{"created_at":"2025-05-22T15:30:58.677558Z","id":"891b58c3-d2ec-4983-b28a-8cb483205477","last_detached_at":null,"name":"tf-volume-funny-curie","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-22T15:31:05.133624Z","id":"fcf1fdd4-1689-4168-99cd-190be233b839","product_resource_id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","product_resource_type":"instance_server","status":"detaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-05-22T15:31:05.133624Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "445"
+ - "633"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:56 GMT
+ - Thu, 22 May 2025 15:31:50 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -2683,10 +2683,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2f9e8840-8504-480b-9d4b-30aeeaff4592
+ - a4b1b479-aa82-46ff-9b02-69ce481f2039
status: 200 OK
code: 200
- duration: 75.476875ms
+ duration: 66.060695ms
- id: 54
request:
proto: HTTP/1.1
@@ -2702,8 +2702,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ae16abdb-d1dd-46bf-8b5d-dd281cf374ff
+ - scaleway-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/891b58c3-d2ec-4983-b28a-8cb483205477
method: GET
response:
proto: HTTP/2.0
@@ -2711,20 +2711,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 445
+ content_length: 633
uncompressed: false
- body: '{"created_at":"2025-01-27T13:49:09.632002Z","id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","last_detached_at":"2025-01-27T13:49:56.563437Z","name":"tf-volume-sad-herschel","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-01-27T13:49:56.563437Z","zone":"fr-par-1"}'
+ body: '{"created_at":"2025-05-22T15:30:58.677558Z","id":"891b58c3-d2ec-4983-b28a-8cb483205477","last_detached_at":null,"name":"tf-volume-funny-curie","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-22T15:31:05.133624Z","id":"fcf1fdd4-1689-4168-99cd-190be233b839","product_resource_id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","product_resource_type":"instance_server","status":"detaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-05-22T15:31:05.133624Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "445"
+ - "633"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:57 GMT
+ - Thu, 22 May 2025 15:31:55 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -2732,10 +2732,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d0e9507c-53f4-407d-8a67-5e6075f746f1
+ - ac573588-c14c-445c-bbb7-83b104cc1c45
status: 200 OK
code: 200
- duration: 82.193ms
+ duration: 64.132436ms
- id: 55
request:
proto: HTTP/1.1
@@ -2751,8 +2751,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df
+ - scaleway-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/891b58c3-d2ec-4983-b28a-8cb483205477
method: GET
response:
proto: HTTP/2.0
@@ -2760,20 +2760,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1829
+ content_length: 633
uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-01-27T13:49:15.595743+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-jolly-wiles","id":"14d55807-c24e-4109-9461-4db25ccb30df","image":{"arch":"x86_64","creation_date":"2024-10-07T11:39:13.069801+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","modification_date":"2024-10-07T11:39:13.069801+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"4eb9437f-8993-444a-b564-f7654add2131","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:90:00:1f","maintenances":[],"modification_date":"2025-01-27T13:49:22.182411+00:00","name":"tf-srv-jolly-wiles","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
+ body: '{"created_at":"2025-05-22T15:30:58.677558Z","id":"891b58c3-d2ec-4983-b28a-8cb483205477","last_detached_at":null,"name":"tf-volume-funny-curie","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-22T15:31:05.133624Z","id":"fcf1fdd4-1689-4168-99cd-190be233b839","product_resource_id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","product_resource_type":"instance_server","status":"detaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-05-22T15:31:05.133624Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "1829"
+ - "633"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:57 GMT
+ - Thu, 22 May 2025 15:32:00 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -2781,10 +2781,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0dc5c6de-14b2-4c83-a428-e179c4b15092
+ - 027e23e8-eff5-4a91-a1fb-73e0760c67d3
status: 200 OK
code: 200
- duration: 186.421042ms
+ duration: 61.200894ms
- id: 56
request:
proto: HTTP/1.1
@@ -2800,8 +2800,155 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3d7e600d-bd4a-4782-9129-1c1401c319cd
+ - scaleway-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/891b58c3-d2ec-4983-b28a-8cb483205477
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 430
+ uncompressed: false
+ body: '{"created_at":"2025-05-22T15:30:58.677558Z","id":"891b58c3-d2ec-4983-b28a-8cb483205477","last_detached_at":"2025-05-22T15:32:03.902845Z","name":"tf-volume-funny-curie","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-05-22T15:32:03.902845Z","zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "430"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 22 May 2025 15:32:05 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-2;edge02)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 64a31cf0-6073-45b1-a6f6-0de15ad40dbd
+ status: 200 OK
+ code: 200
+ duration: 72.315592ms
+ - id: 57
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/891b58c3-d2ec-4983-b28a-8cb483205477
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 430
+ uncompressed: false
+ body: '{"created_at":"2025-05-22T15:30:58.677558Z","id":"891b58c3-d2ec-4983-b28a-8cb483205477","last_detached_at":"2025-05-22T15:32:03.902845Z","name":"tf-volume-funny-curie","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-05-22T15:32:03.902845Z","zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "430"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 22 May 2025 15:32:06 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-2;edge02)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 337708c7-d4fb-4bb5-acea-6eb3e72ec308
+ status: 200 OK
+ code: 200
+ duration: 68.032876ms
+ - id: 58
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/421a1744-d051-4b78-9fd8-2ef5f6c100df
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 1879
+ uncompressed: false
+ body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-05-22T15:31:04.954748+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-elated-euclid","id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"104","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b0:1d:0b","maintenances":[],"modification_date":"2025-05-22T15:31:11.606989+00:00","name":"tf-srv-elated-euclid","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d39f8983-965c-483a-a369-d7cbc01448a1","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "1879"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 22 May 2025 15:32:06 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-2;edge02)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - dae57c69-62b1-4fef-ac2f-85acfac0bc13
+ status: 200 OK
+ code: 200
+ duration: 252.763175ms
+ - id: 59
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d39f8983-965c-483a-a369-d7cbc01448a1
method: GET
response:
proto: HTTP/2.0
@@ -2811,7 +2958,7 @@ interactions:
trailer: {}
content_length: 143
uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d39f8983-965c-483a-a369-d7cbc01448a1","type":"not_found"}'
headers:
Content-Length:
- "143"
@@ -2820,9 +2967,9 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:57 GMT
+ - Thu, 22 May 2025 15:32:07 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -2830,11 +2977,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b2c78805-58b9-4259-8517-d8499888952a
+ - cf8e5687-8c0e-4c3e-b047-fe9f1e22c036
status: 404 Not Found
code: 404
- duration: 39.908125ms
- - id: 57
+ duration: 74.566057ms
+ - id: 60
request:
proto: HTTP/1.1
proto_major: 1
@@ -2849,8 +2996,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3d7e600d-bd4a-4782-9129-1c1401c319cd
+ - scaleway-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/d39f8983-965c-483a-a369-d7cbc01448a1
method: GET
response:
proto: HTTP/2.0
@@ -2858,20 +3005,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 705
+ content_length: 686
uncompressed: false
- body: '{"created_at":"2025-01-27T13:49:15.792688Z","id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"4eb9437f-8993-444a-b564-f7654add2131","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-01-27T13:49:15.792688Z","id":"9cfc1f86-0936-48a9-886b-85392381eaef","product_resource_id":"14d55807-c24e-4109-9461-4db25ccb30df","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-01-27T13:49:15.792688Z","zone":"fr-par-1"}'
+ body: '{"created_at":"2025-05-22T15:31:05.071179Z","id":"d39f8983-965c-483a-a369-d7cbc01448a1","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-22T15:31:05.071179Z","id":"05b3cfa2-3acb-44a8-93b8-00ebf830b4a3","product_resource_id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-05-22T15:31:05.071179Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "705"
+ - "686"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:57 GMT
+ - Thu, 22 May 2025 15:32:07 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -2879,11 +3026,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f4df3c12-c816-4a6a-8fbd-ab50899d7be1
+ - 990a0306-c0d8-4436-9c7d-7c0aecf3ba0e
status: 200 OK
code: 200
- duration: 77.469708ms
- - id: 58
+ duration: 115.777998ms
+ - id: 61
request:
proto: HTTP/1.1
proto_major: 1
@@ -2898,8 +3045,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df/user_data
+ - scaleway-sdk-go/v1.0.0-beta.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/421a1744-d051-4b78-9fd8-2ef5f6c100df/user_data
method: GET
response:
proto: HTTP/2.0
@@ -2918,9 +3065,9 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:57 GMT
+ - Thu, 22 May 2025 15:32:07 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -2928,11 +3075,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 25b28a89-63c9-4833-9152-44d82bf4872c
+ - 07d03eac-ba95-421c-895b-751ebe122bf8
status: 200 OK
code: 200
- duration: 76.247583ms
- - id: 59
+ duration: 111.28243ms
+ - id: 62
request:
proto: HTTP/1.1
proto_major: 1
@@ -2947,8 +3094,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df/private_nics
+ - scaleway-sdk-go/v1.0.0-beta.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/421a1744-d051-4b78-9fd8-2ef5f6c100df/private_nics
method: GET
response:
proto: HTTP/2.0
@@ -2967,11 +3114,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:57 GMT
+ - Thu, 22 May 2025 15:32:07 GMT
Link:
- - ; rel="last"
+ - ; rel="last"
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -2979,13 +3126,13 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - efbd5add-1a6b-4b1e-8a60-6c5fc0a06900
+ - 06a583d4-8005-4d1e-ab9e-17e7fa29ee3a
X-Total-Count:
- "0"
status: 200 OK
code: 200
- duration: 95.93025ms
- - id: 60
+ duration: 104.467513ms
+ - id: 63
request:
proto: HTTP/1.1
proto_major: 1
@@ -3000,8 +3147,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df
+ - scaleway-sdk-go/v1.0.0-beta.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/421a1744-d051-4b78-9fd8-2ef5f6c100df
method: GET
response:
proto: HTTP/2.0
@@ -3009,20 +3156,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1829
+ content_length: 1879
uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-01-27T13:49:15.595743+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-jolly-wiles","id":"14d55807-c24e-4109-9461-4db25ccb30df","image":{"arch":"x86_64","creation_date":"2024-10-07T11:39:13.069801+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","modification_date":"2024-10-07T11:39:13.069801+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"4eb9437f-8993-444a-b564-f7654add2131","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:90:00:1f","maintenances":[],"modification_date":"2025-01-27T13:49:22.182411+00:00","name":"tf-srv-jolly-wiles","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
+ body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-05-22T15:31:04.954748+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-elated-euclid","id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"104","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b0:1d:0b","maintenances":[],"modification_date":"2025-05-22T15:31:11.606989+00:00","name":"tf-srv-elated-euclid","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d39f8983-965c-483a-a369-d7cbc01448a1","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "1829"
+ - "1879"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:57 GMT
+ - Thu, 22 May 2025 15:32:08 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3030,11 +3177,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d4cbdece-6930-4fd9-8321-ed6efec0c790
+ - 9455757e-5ff0-43c8-99fa-6660d98460f4
status: 200 OK
code: 200
- duration: 148.962375ms
- - id: 61
+ duration: 182.7487ms
+ - id: 64
request:
proto: HTTP/1.1
proto_major: 1
@@ -3049,8 +3196,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ae16abdb-d1dd-46bf-8b5d-dd281cf374ff
+ - scaleway-sdk-go/v1.0.0-beta.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/891b58c3-d2ec-4983-b28a-8cb483205477
method: GET
response:
proto: HTTP/2.0
@@ -3060,7 +3207,7 @@ interactions:
trailer: {}
content_length: 143
uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"891b58c3-d2ec-4983-b28a-8cb483205477","type":"not_found"}'
headers:
Content-Length:
- "143"
@@ -3069,9 +3216,9 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:58 GMT
+ - Thu, 22 May 2025 15:32:08 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3079,11 +3226,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - afd6bbf3-a241-4140-98f1-9c322de8c489
+ - 82c4b6ec-f928-4e9b-8c1c-0ae523f29814
status: 404 Not Found
code: 404
- duration: 47.263208ms
- - id: 62
+ duration: 63.497765ms
+ - id: 65
request:
proto: HTTP/1.1
proto_major: 1
@@ -3098,8 +3245,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ae16abdb-d1dd-46bf-8b5d-dd281cf374ff
+ - scaleway-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/891b58c3-d2ec-4983-b28a-8cb483205477
method: GET
response:
proto: HTTP/2.0
@@ -3107,20 +3254,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 445
+ content_length: 430
uncompressed: false
- body: '{"created_at":"2025-01-27T13:49:09.632002Z","id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","last_detached_at":"2025-01-27T13:49:56.563437Z","name":"tf-volume-sad-herschel","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-01-27T13:49:56.563437Z","zone":"fr-par-1"}'
+ body: '{"created_at":"2025-05-22T15:30:58.677558Z","id":"891b58c3-d2ec-4983-b28a-8cb483205477","last_detached_at":"2025-05-22T15:32:03.902845Z","name":"tf-volume-funny-curie","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-05-22T15:32:03.902845Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "445"
+ - "430"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:58 GMT
+ - Thu, 22 May 2025 15:32:08 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3128,29 +3275,29 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c7e14cce-f044-4da5-96e3-058d54a0cce2
+ - ca669979-36f5-4639-9b15-dfbb1c992fae
status: 200 OK
code: 200
- duration: 77.790834ms
- - id: 63
+ duration: 63.941768ms
+ - id: 66
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 186
+ content_length: 183
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: '{"volumes":{"0":{"id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","boot":false,"name":"tf-vol-charming-ganguly"},"1":{"id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","volume_type":"sbs_volume"}}}'
+ body: '{"volumes":{"0":{"id":"d39f8983-965c-483a-a369-d7cbc01448a1","boot":false,"name":"tf-vol-jolly-kapitsa"},"1":{"id":"891b58c3-d2ec-4983-b28a-8cb483205477","volume_type":"sbs_volume"}}}'
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df
+ - scaleway-sdk-go/v1.0.0-beta.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/421a1744-d051-4b78-9fd8-2ef5f6c100df
method: PATCH
response:
proto: HTTP/2.0
@@ -3158,20 +3305,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1886
+ content_length: 1936
uncompressed: false
- body: '{"server":{"allowed_actions":[],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-01-27T13:49:15.595743+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-jolly-wiles","id":"14d55807-c24e-4109-9461-4db25ccb30df","image":{"arch":"x86_64","creation_date":"2024-10-07T11:39:13.069801+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","modification_date":"2024-10-07T11:39:13.069801+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"4eb9437f-8993-444a-b564-f7654add2131","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:90:00:1f","maintenances":[],"modification_date":"2025-01-27T13:49:22.182411+00:00","name":"tf-srv-jolly-wiles","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
+ body: '{"server":{"allowed_actions":[],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-05-22T15:31:04.954748+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-elated-euclid","id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"104","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b0:1d:0b","maintenances":[],"modification_date":"2025-05-22T15:31:11.606989+00:00","name":"tf-srv-elated-euclid","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d39f8983-965c-483a-a369-d7cbc01448a1","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"891b58c3-d2ec-4983-b28a-8cb483205477","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "1886"
+ - "1936"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:58 GMT
+ - Thu, 22 May 2025 15:32:09 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3179,11 +3326,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c4fa259e-d071-4c1f-9f74-993e8508c09e
+ - 13fca365-7ca8-4a91-b8e5-1a6f87731efe
status: 200 OK
code: 200
- duration: 496.781792ms
- - id: 64
+ duration: 645.745117ms
+ - id: 67
request:
proto: HTTP/1.1
proto_major: 1
@@ -3198,8 +3345,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df
+ - scaleway-sdk-go/v1.0.0-beta.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/421a1744-d051-4b78-9fd8-2ef5f6c100df
method: GET
response:
proto: HTTP/2.0
@@ -3207,20 +3354,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1886
+ content_length: 1936
uncompressed: false
- body: '{"server":{"allowed_actions":[],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-01-27T13:49:15.595743+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-jolly-wiles","id":"14d55807-c24e-4109-9461-4db25ccb30df","image":{"arch":"x86_64","creation_date":"2024-10-07T11:39:13.069801+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","modification_date":"2024-10-07T11:39:13.069801+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"4eb9437f-8993-444a-b564-f7654add2131","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:90:00:1f","maintenances":[],"modification_date":"2025-01-27T13:49:22.182411+00:00","name":"tf-srv-jolly-wiles","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
+ body: '{"server":{"allowed_actions":[],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-05-22T15:31:04.954748+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-elated-euclid","id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"104","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b0:1d:0b","maintenances":[],"modification_date":"2025-05-22T15:31:11.606989+00:00","name":"tf-srv-elated-euclid","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d39f8983-965c-483a-a369-d7cbc01448a1","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"891b58c3-d2ec-4983-b28a-8cb483205477","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "1886"
+ - "1936"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:58 GMT
+ - Thu, 22 May 2025 15:32:09 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3228,11 +3375,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c22974d3-a315-426b-bb8b-07382175431a
+ - 0cd08b7a-5061-4c40-9e6e-53ee7d4c1084
status: 200 OK
code: 200
- duration: 209.3605ms
- - id: 65
+ duration: 213.594518ms
+ - id: 68
request:
proto: HTTP/1.1
proto_major: 1
@@ -3247,8 +3394,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df
+ - scaleway-sdk-go/v1.0.0-beta.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/421a1744-d051-4b78-9fd8-2ef5f6c100df
method: GET
response:
proto: HTTP/2.0
@@ -3256,20 +3403,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1886
+ content_length: 1996
uncompressed: false
- body: '{"server":{"allowed_actions":[],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-01-27T13:49:15.595743+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-jolly-wiles","id":"14d55807-c24e-4109-9461-4db25ccb30df","image":{"arch":"x86_64","creation_date":"2024-10-07T11:39:13.069801+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","modification_date":"2024-10-07T11:39:13.069801+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"4eb9437f-8993-444a-b564-f7654add2131","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:90:00:1f","maintenances":[],"modification_date":"2025-01-27T13:49:22.182411+00:00","name":"tf-srv-jolly-wiles","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
+ body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-05-22T15:31:04.954748+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-elated-euclid","id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"104","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b0:1d:0b","maintenances":[],"modification_date":"2025-05-22T15:31:11.606989+00:00","name":"tf-srv-elated-euclid","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d39f8983-965c-483a-a369-d7cbc01448a1","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"891b58c3-d2ec-4983-b28a-8cb483205477","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "1886"
+ - "1996"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:59 GMT
+ - Thu, 22 May 2025 15:32:10 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3277,11 +3424,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d94ce73e-665e-4d4b-94f2-9bfff2a4df79
+ - b8667121-e19d-4931-8b2c-83ff487806bc
status: 200 OK
code: 200
- duration: 186.935208ms
- - id: 66
+ duration: 865.876802ms
+ - id: 69
request:
proto: HTTP/1.1
proto_major: 1
@@ -3296,8 +3443,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3d7e600d-bd4a-4782-9129-1c1401c319cd
+ - scaleway-sdk-go/v1.0.0-beta.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/d39f8983-965c-483a-a369-d7cbc01448a1
method: GET
response:
proto: HTTP/2.0
@@ -3307,7 +3454,7 @@ interactions:
trailer: {}
content_length: 143
uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d39f8983-965c-483a-a369-d7cbc01448a1","type":"not_found"}'
headers:
Content-Length:
- "143"
@@ -3316,9 +3463,9 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:58 GMT
+ - Thu, 22 May 2025 15:32:10 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3326,11 +3473,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 55e751d6-f53f-4e3e-bce7-293bf99b6bbf
+ - f3e34dc1-51cf-44cb-a781-c2539951f245
status: 404 Not Found
code: 404
- duration: 26.11025ms
- - id: 67
+ duration: 78.928765ms
+ - id: 70
request:
proto: HTTP/1.1
proto_major: 1
@@ -3345,8 +3492,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3d7e600d-bd4a-4782-9129-1c1401c319cd
+ - scaleway-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/d39f8983-965c-483a-a369-d7cbc01448a1
method: GET
response:
proto: HTTP/2.0
@@ -3354,20 +3501,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 705
+ content_length: 686
uncompressed: false
- body: '{"created_at":"2025-01-27T13:49:15.792688Z","id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"4eb9437f-8993-444a-b564-f7654add2131","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-01-27T13:49:15.792688Z","id":"9cfc1f86-0936-48a9-886b-85392381eaef","product_resource_id":"14d55807-c24e-4109-9461-4db25ccb30df","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-01-27T13:49:15.792688Z","zone":"fr-par-1"}'
+ body: '{"created_at":"2025-05-22T15:31:05.071179Z","id":"d39f8983-965c-483a-a369-d7cbc01448a1","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-22T15:31:05.071179Z","id":"05b3cfa2-3acb-44a8-93b8-00ebf830b4a3","product_resource_id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-05-22T15:31:05.071179Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "705"
+ - "686"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:59 GMT
+ - Thu, 22 May 2025 15:32:10 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3375,11 +3522,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 586c6a97-a38c-41bc-b2a1-18d411d49aeb
+ - 0ff18f1e-9bf3-4d17-a787-80b155b08e2a
status: 200 OK
code: 200
- duration: 79.408375ms
- - id: 68
+ duration: 71.433057ms
+ - id: 71
request:
proto: HTTP/1.1
proto_major: 1
@@ -3394,8 +3541,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df/user_data
+ - scaleway-sdk-go/v1.0.0-beta.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/421a1744-d051-4b78-9fd8-2ef5f6c100df/user_data
method: GET
response:
proto: HTTP/2.0
@@ -3414,9 +3561,9 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:59 GMT
+ - Thu, 22 May 2025 15:32:10 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3424,11 +3571,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - fbe73249-f0fa-41eb-8363-5f8163ef7e5f
+ - 1753c1b5-480a-43ac-a3be-fb186401419f
status: 200 OK
code: 200
- duration: 100.0415ms
- - id: 69
+ duration: 115.519713ms
+ - id: 72
request:
proto: HTTP/1.1
proto_major: 1
@@ -3443,8 +3590,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df/private_nics
+ - scaleway-sdk-go/v1.0.0-beta.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/421a1744-d051-4b78-9fd8-2ef5f6c100df/private_nics
method: GET
response:
proto: HTTP/2.0
@@ -3463,11 +3610,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:59 GMT
+ - Thu, 22 May 2025 15:32:10 GMT
Link:
- - ; rel="last"
+ - ; rel="last"
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3475,13 +3622,13 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a5df386c-9fb5-482e-bb85-e7ffb15459c6
+ - a0134702-27fd-465c-969b-3fa04b66099d
X-Total-Count:
- "0"
status: 200 OK
code: 200
- duration: 81.052584ms
- - id: 70
+ duration: 136.053089ms
+ - id: 73
request:
proto: HTTP/1.1
proto_major: 1
@@ -3496,8 +3643,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ae16abdb-d1dd-46bf-8b5d-dd281cf374ff
+ - scaleway-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/891b58c3-d2ec-4983-b28a-8cb483205477
method: GET
response:
proto: HTTP/2.0
@@ -3505,20 +3652,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 677
+ content_length: 657
uncompressed: false
- body: '{"created_at":"2025-01-27T13:49:09.632002Z","id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","last_detached_at":"2025-01-27T13:49:56.563437Z","name":"tf-volume-sad-herschel","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-01-27T13:49:58.448978Z","id":"7d14e917-34ec-46f5-bf7a-efb63f9da9c7","product_resource_id":"14d55807-c24e-4109-9461-4db25ccb30df","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-01-27T13:49:58.448978Z","zone":"fr-par-1"}'
+ body: '{"created_at":"2025-05-22T15:30:58.677558Z","id":"891b58c3-d2ec-4983-b28a-8cb483205477","last_detached_at":"2025-05-22T15:32:03.902845Z","name":"tf-volume-funny-curie","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-22T15:32:08.752171Z","id":"b6fa236a-889b-4eac-9e7e-bf92dfbf9079","product_resource_id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-05-22T15:32:08.752171Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "677"
+ - "657"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:59 GMT
+ - Thu, 22 May 2025 15:32:11 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3526,11 +3673,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a1a775f7-9ea7-4103-bb94-de4063cfa597
+ - c9fc7703-9550-47cb-af8c-fbceeba39333
status: 200 OK
code: 200
- duration: 76.969375ms
- - id: 71
+ duration: 66.120909ms
+ - id: 74
request:
proto: HTTP/1.1
proto_major: 1
@@ -3545,8 +3692,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df
+ - scaleway-sdk-go/v1.0.0-beta.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/421a1744-d051-4b78-9fd8-2ef5f6c100df
method: GET
response:
proto: HTTP/2.0
@@ -3554,20 +3701,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1946
+ content_length: 1996
uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-01-27T13:49:15.595743+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-jolly-wiles","id":"14d55807-c24e-4109-9461-4db25ccb30df","image":{"arch":"x86_64","creation_date":"2024-10-07T11:39:13.069801+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","modification_date":"2024-10-07T11:39:13.069801+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"4eb9437f-8993-444a-b564-f7654add2131","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:90:00:1f","maintenances":[],"modification_date":"2025-01-27T13:49:22.182411+00:00","name":"tf-srv-jolly-wiles","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
+ body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-05-22T15:31:04.954748+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-elated-euclid","id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"104","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b0:1d:0b","maintenances":[],"modification_date":"2025-05-22T15:31:11.606989+00:00","name":"tf-srv-elated-euclid","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d39f8983-965c-483a-a369-d7cbc01448a1","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"891b58c3-d2ec-4983-b28a-8cb483205477","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "1946"
+ - "1996"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:59 GMT
+ - Thu, 22 May 2025 15:32:11 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3575,11 +3722,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4e5310a7-271f-45db-ba3f-1d48fb7c48fe
+ - b0a86f69-2243-4d02-84de-45015e212e6b
status: 200 OK
code: 200
- duration: 218.591ms
- - id: 72
+ duration: 183.379694ms
+ - id: 75
request:
proto: HTTP/1.1
proto_major: 1
@@ -3594,8 +3741,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3d7e600d-bd4a-4782-9129-1c1401c319cd
+ - scaleway-sdk-go/v1.0.0-beta.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/d39f8983-965c-483a-a369-d7cbc01448a1
method: GET
response:
proto: HTTP/2.0
@@ -3605,7 +3752,7 @@ interactions:
trailer: {}
content_length: 143
uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d39f8983-965c-483a-a369-d7cbc01448a1","type":"not_found"}'
headers:
Content-Length:
- "143"
@@ -3614,9 +3761,9 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:49:59 GMT
+ - Thu, 22 May 2025 15:32:11 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3624,11 +3771,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 46305909-1d07-4f3f-bead-7585dc149ffc
+ - 3efbb3d0-85a4-4e93-b89f-1d0571094150
status: 404 Not Found
code: 404
- duration: 30.5385ms
- - id: 73
+ duration: 86.696511ms
+ - id: 76
request:
proto: HTTP/1.1
proto_major: 1
@@ -3643,8 +3790,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3d7e600d-bd4a-4782-9129-1c1401c319cd
+ - scaleway-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/d39f8983-965c-483a-a369-d7cbc01448a1
method: GET
response:
proto: HTTP/2.0
@@ -3652,20 +3799,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 705
+ content_length: 686
uncompressed: false
- body: '{"created_at":"2025-01-27T13:49:15.792688Z","id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"4eb9437f-8993-444a-b564-f7654add2131","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-01-27T13:49:15.792688Z","id":"9cfc1f86-0936-48a9-886b-85392381eaef","product_resource_id":"14d55807-c24e-4109-9461-4db25ccb30df","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-01-27T13:49:15.792688Z","zone":"fr-par-1"}'
+ body: '{"created_at":"2025-05-22T15:31:05.071179Z","id":"d39f8983-965c-483a-a369-d7cbc01448a1","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-22T15:31:05.071179Z","id":"05b3cfa2-3acb-44a8-93b8-00ebf830b4a3","product_resource_id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-05-22T15:31:05.071179Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "705"
+ - "686"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:50:00 GMT
+ - Thu, 22 May 2025 15:32:11 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3673,11 +3820,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 07fa230d-c943-40e7-82d7-7b78d49915d8
+ - 60ba1d70-97e0-4815-9572-c681a770a5cd
status: 200 OK
code: 200
- duration: 79.758875ms
- - id: 74
+ duration: 64.473636ms
+ - id: 77
request:
proto: HTTP/1.1
proto_major: 1
@@ -3692,8 +3839,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df/user_data
+ - scaleway-sdk-go/v1.0.0-beta.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/421a1744-d051-4b78-9fd8-2ef5f6c100df/user_data
method: GET
response:
proto: HTTP/2.0
@@ -3712,9 +3859,9 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:50:00 GMT
+ - Thu, 22 May 2025 15:32:12 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3722,11 +3869,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 63b91aac-546d-43b4-b5e2-baf968df5c80
+ - 5d04604d-7524-4e22-aad3-34026dee1f75
status: 200 OK
code: 200
- duration: 97.630125ms
- - id: 75
+ duration: 138.507704ms
+ - id: 78
request:
proto: HTTP/1.1
proto_major: 1
@@ -3741,8 +3888,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df/private_nics
+ - scaleway-sdk-go/v1.0.0-beta.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/421a1744-d051-4b78-9fd8-2ef5f6c100df/private_nics
method: GET
response:
proto: HTTP/2.0
@@ -3761,11 +3908,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:50:00 GMT
+ - Thu, 22 May 2025 15:32:12 GMT
Link:
- - ; rel="last"
+ - ; rel="last"
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3773,13 +3920,13 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 870b3fad-0512-49ca-9667-55b5a0ce3ddb
+ - 621c6b78-4093-460e-8012-330d15e998b0
X-Total-Count:
- "0"
status: 200 OK
code: 200
- duration: 73.61325ms
- - id: 76
+ duration: 98.86074ms
+ - id: 79
request:
proto: HTTP/1.1
proto_major: 1
@@ -3794,8 +3941,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ae16abdb-d1dd-46bf-8b5d-dd281cf374ff
+ - scaleway-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/891b58c3-d2ec-4983-b28a-8cb483205477
method: GET
response:
proto: HTTP/2.0
@@ -3803,20 +3950,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 677
+ content_length: 657
uncompressed: false
- body: '{"created_at":"2025-01-27T13:49:09.632002Z","id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","last_detached_at":"2025-01-27T13:49:56.563437Z","name":"tf-volume-sad-herschel","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-01-27T13:49:58.448978Z","id":"7d14e917-34ec-46f5-bf7a-efb63f9da9c7","product_resource_id":"14d55807-c24e-4109-9461-4db25ccb30df","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-01-27T13:49:58.448978Z","zone":"fr-par-1"}'
+ body: '{"created_at":"2025-05-22T15:30:58.677558Z","id":"891b58c3-d2ec-4983-b28a-8cb483205477","last_detached_at":"2025-05-22T15:32:03.902845Z","name":"tf-volume-funny-curie","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-22T15:32:08.752171Z","id":"b6fa236a-889b-4eac-9e7e-bf92dfbf9079","product_resource_id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-05-22T15:32:08.752171Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "677"
+ - "657"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:50:00 GMT
+ - Thu, 22 May 2025 15:32:12 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3824,11 +3971,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 57f4b776-34fe-4d42-8f26-d457389b34ba
+ - d8f58881-0a4e-42cc-844d-940ec1090f75
status: 200 OK
code: 200
- duration: 69.521625ms
- - id: 77
+ duration: 71.037967ms
+ - id: 80
request:
proto: HTTP/1.1
proto_major: 1
@@ -3843,8 +3990,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df
+ - scaleway-sdk-go/v1.0.0-beta.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/421a1744-d051-4b78-9fd8-2ef5f6c100df
method: GET
response:
proto: HTTP/2.0
@@ -3852,20 +3999,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1946
+ content_length: 1996
uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-01-27T13:49:15.595743+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-jolly-wiles","id":"14d55807-c24e-4109-9461-4db25ccb30df","image":{"arch":"x86_64","creation_date":"2024-10-07T11:39:13.069801+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","modification_date":"2024-10-07T11:39:13.069801+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"4eb9437f-8993-444a-b564-f7654add2131","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:90:00:1f","maintenances":[],"modification_date":"2025-01-27T13:49:22.182411+00:00","name":"tf-srv-jolly-wiles","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
+ body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-05-22T15:31:04.954748+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-elated-euclid","id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"104","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b0:1d:0b","maintenances":[],"modification_date":"2025-05-22T15:31:11.606989+00:00","name":"tf-srv-elated-euclid","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d39f8983-965c-483a-a369-d7cbc01448a1","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"891b58c3-d2ec-4983-b28a-8cb483205477","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "1946"
+ - "1996"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:50:00 GMT
+ - Thu, 22 May 2025 15:32:13 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3873,11 +4020,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 70262758-89f7-4216-b84a-0c2a7b028fe0
+ - 9d8c6118-95c3-4100-938d-ab567958f66d
status: 200 OK
code: 200
- duration: 212.913708ms
- - id: 78
+ duration: 252.862421ms
+ - id: 81
request:
proto: HTTP/1.1
proto_major: 1
@@ -3892,8 +4039,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3d7e600d-bd4a-4782-9129-1c1401c319cd
+ - scaleway-sdk-go/v1.0.0-beta.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/d39f8983-965c-483a-a369-d7cbc01448a1
method: GET
response:
proto: HTTP/2.0
@@ -3903,7 +4050,7 @@ interactions:
trailer: {}
content_length: 143
uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d39f8983-965c-483a-a369-d7cbc01448a1","type":"not_found"}'
headers:
Content-Length:
- "143"
@@ -3912,9 +4059,9 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:50:00 GMT
+ - Thu, 22 May 2025 15:32:13 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3922,11 +4069,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4a5a4a49-b10f-4463-ad67-c4906110b87f
+ - 7278e30f-a5fb-41af-8a87-b568231d2971
status: 404 Not Found
code: 404
- duration: 29.410625ms
- - id: 79
+ duration: 52.117287ms
+ - id: 82
request:
proto: HTTP/1.1
proto_major: 1
@@ -3941,8 +4088,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3d7e600d-bd4a-4782-9129-1c1401c319cd
+ - scaleway-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/d39f8983-965c-483a-a369-d7cbc01448a1
method: GET
response:
proto: HTTP/2.0
@@ -3950,20 +4097,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 705
+ content_length: 686
uncompressed: false
- body: '{"created_at":"2025-01-27T13:49:15.792688Z","id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"4eb9437f-8993-444a-b564-f7654add2131","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-01-27T13:49:15.792688Z","id":"9cfc1f86-0936-48a9-886b-85392381eaef","product_resource_id":"14d55807-c24e-4109-9461-4db25ccb30df","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-01-27T13:49:15.792688Z","zone":"fr-par-1"}'
+ body: '{"created_at":"2025-05-22T15:31:05.071179Z","id":"d39f8983-965c-483a-a369-d7cbc01448a1","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-22T15:31:05.071179Z","id":"05b3cfa2-3acb-44a8-93b8-00ebf830b4a3","product_resource_id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-05-22T15:31:05.071179Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "705"
+ - "686"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:50:00 GMT
+ - Thu, 22 May 2025 15:32:13 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3971,11 +4118,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c76210cc-a0d7-46b6-9732-71fe554aa88b
+ - 695a6c8a-0cb7-47d2-8eef-35318775fd87
status: 200 OK
code: 200
- duration: 81.02975ms
- - id: 80
+ duration: 76.136915ms
+ - id: 83
request:
proto: HTTP/1.1
proto_major: 1
@@ -3990,8 +4137,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df/user_data
+ - scaleway-sdk-go/v1.0.0-beta.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/421a1744-d051-4b78-9fd8-2ef5f6c100df/user_data
method: GET
response:
proto: HTTP/2.0
@@ -4010,9 +4157,9 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:50:00 GMT
+ - Thu, 22 May 2025 15:32:13 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -4020,11 +4167,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3adcdfba-3857-4a33-b81f-21e5d07e80f8
+ - 25b678f6-a81f-4432-abde-58b1d6079a44
status: 200 OK
code: 200
- duration: 74.409959ms
- - id: 81
+ duration: 105.371028ms
+ - id: 84
request:
proto: HTTP/1.1
proto_major: 1
@@ -4039,8 +4186,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df/private_nics
+ - scaleway-sdk-go/v1.0.0-beta.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/421a1744-d051-4b78-9fd8-2ef5f6c100df/private_nics
method: GET
response:
proto: HTTP/2.0
@@ -4059,11 +4206,11 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:50:00 GMT
+ - Thu, 22 May 2025 15:32:13 GMT
Link:
- - ; rel="last"
+ - ; rel="last"
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -4071,31 +4218,31 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a39ae90a-ea95-4c29-a62a-d65d2e971c10
+ - a7eef55c-c5ad-4cd3-b850-9183b90b475e
X-Total-Count:
- "0"
status: 200 OK
code: 200
- duration: 168.700041ms
- - id: 82
+ duration: 108.705997ms
+ - id: 85
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 126
+ content_length: 150
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: '{"name":"tf-vol-dazzling-blackburn","project":"105bdce1-64c0-48ab-899d-868455867ecf","volume_type":"b_ssd","size":10000000000}'
+ body: '{"name":"tf-volume-eloquent-darwin","perf_iops":15000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","from_empty":{"size":15000000000},"tags":[]}'
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes
+ - scaleway-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
method: POST
response:
proto: HTTP/2.0
@@ -4103,22 +4250,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 447
+ content_length: 410
uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:50:01.596530+00:00","export_uri":null,"id":"98a430f8-7b42-4577-86df-32e83bfa7ba1","modification_date":"2025-01-27T13:50:01.596530+00:00","name":"tf-vol-dazzling-blackburn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
+ body: '{"created_at":"2025-05-22T15:32:14.477883Z","id":"668982ef-3240-4972-a1ca-6a6d1fae9271","last_detached_at":null,"name":"tf-volume-eloquent-darwin","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":15000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"creating","tags":[],"type":"sbs_15k","updated_at":"2025-05-22T15:32:14.477883Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "447"
+ - "410"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:50:01 GMT
- Location:
- - https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/98a430f8-7b42-4577-86df-32e83bfa7ba1
+ - Thu, 22 May 2025 15:32:14 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -4126,11 +4271,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5ecf2f84-c942-4386-a33d-7feedcf9bc63
- status: 201 Created
- code: 201
- duration: 223.454375ms
- - id: 83
+ - dd1bb457-2cb4-4bc4-a2b7-262d23e6cc90
+ status: 200 OK
+ code: 200
+ duration: 143.189692ms
+ - id: 86
request:
proto: HTTP/1.1
proto_major: 1
@@ -4145,8 +4290,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/98a430f8-7b42-4577-86df-32e83bfa7ba1
+ - scaleway-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/668982ef-3240-4972-a1ca-6a6d1fae9271
method: GET
response:
proto: HTTP/2.0
@@ -4154,20 +4299,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 447
+ content_length: 410
uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:50:01.596530+00:00","export_uri":null,"id":"98a430f8-7b42-4577-86df-32e83bfa7ba1","modification_date":"2025-01-27T13:50:01.596530+00:00","name":"tf-vol-dazzling-blackburn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
+ body: '{"created_at":"2025-05-22T15:32:14.477883Z","id":"668982ef-3240-4972-a1ca-6a6d1fae9271","last_detached_at":null,"name":"tf-volume-eloquent-darwin","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":15000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"creating","tags":[],"type":"sbs_15k","updated_at":"2025-05-22T15:32:14.477883Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "447"
+ - "410"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:50:01 GMT
+ - Thu, 22 May 2025 15:32:14 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -4175,11 +4320,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1d411103-3fab-4602-9855-02d8ca4d52ea
+ - 805793a8-c7c4-472d-b831-5667b7a76794
status: 200 OK
code: 200
- duration: 83.463291ms
- - id: 84
+ duration: 64.184123ms
+ - id: 87
request:
proto: HTTP/1.1
proto_major: 1
@@ -4194,8 +4339,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/98a430f8-7b42-4577-86df-32e83bfa7ba1
+ - scaleway-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/668982ef-3240-4972-a1ca-6a6d1fae9271
method: GET
response:
proto: HTTP/2.0
@@ -4203,20 +4348,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 447
+ content_length: 411
uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:50:01.596530+00:00","export_uri":null,"id":"98a430f8-7b42-4577-86df-32e83bfa7ba1","modification_date":"2025-01-27T13:50:01.596530+00:00","name":"tf-vol-dazzling-blackburn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
+ body: '{"created_at":"2025-05-22T15:32:14.477883Z","id":"668982ef-3240-4972-a1ca-6a6d1fae9271","last_detached_at":null,"name":"tf-volume-eloquent-darwin","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":15000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-05-22T15:32:14.477883Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "447"
+ - "411"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:50:01 GMT
+ - Thu, 22 May 2025 15:32:19 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -4224,11 +4369,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9c90571e-259e-4dde-b807-a219af1b9c2e
+ - 501b41d6-1f74-4dd1-839c-b528a6abd6ef
status: 200 OK
code: 200
- duration: 70.025333ms
- - id: 85
+ duration: 63.326103ms
+ - id: 88
request:
proto: HTTP/1.1
proto_major: 1
@@ -4243,8 +4388,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df
+ - scaleway-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/668982ef-3240-4972-a1ca-6a6d1fae9271
method: GET
response:
proto: HTTP/2.0
@@ -4252,20 +4397,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1946
+ content_length: 411
uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-01-27T13:49:15.595743+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-jolly-wiles","id":"14d55807-c24e-4109-9461-4db25ccb30df","image":{"arch":"x86_64","creation_date":"2024-10-07T11:39:13.069801+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","modification_date":"2024-10-07T11:39:13.069801+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"4eb9437f-8993-444a-b564-f7654add2131","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:90:00:1f","maintenances":[],"modification_date":"2025-01-27T13:49:22.182411+00:00","name":"tf-srv-jolly-wiles","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
+ body: '{"created_at":"2025-05-22T15:32:14.477883Z","id":"668982ef-3240-4972-a1ca-6a6d1fae9271","last_detached_at":null,"name":"tf-volume-eloquent-darwin","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":15000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-05-22T15:32:14.477883Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "1946"
+ - "411"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:50:02 GMT
+ - Thu, 22 May 2025 15:32:19 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -4273,11 +4418,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d8f81af2-72a9-4a1e-a774-f4566c02d01e
+ - 943a6f4a-628b-4493-80fc-82b99be66e7d
status: 200 OK
code: 200
- duration: 219.818834ms
- - id: 86
+ duration: 124.559328ms
+ - id: 89
request:
proto: HTTP/1.1
proto_major: 1
@@ -4292,8 +4437,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ae16abdb-d1dd-46bf-8b5d-dd281cf374ff
+ - scaleway-sdk-go/v1.0.0-beta.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/421a1744-d051-4b78-9fd8-2ef5f6c100df
method: GET
response:
proto: HTTP/2.0
@@ -4301,20 +4446,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 143
+ content_length: 1996
uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","type":"not_found"}'
+ body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-05-22T15:31:04.954748+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-elated-euclid","id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"104","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b0:1d:0b","maintenances":[],"modification_date":"2025-05-22T15:31:11.606989+00:00","name":"tf-srv-elated-euclid","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d39f8983-965c-483a-a369-d7cbc01448a1","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"891b58c3-d2ec-4983-b28a-8cb483205477","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "143"
+ - "1996"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:50:01 GMT
+ - Thu, 22 May 2025 15:32:19 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -4322,11 +4467,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 69192fd4-864f-4853-a692-2fd2cf3b9e3b
- status: 404 Not Found
- code: 404
- duration: 30.911875ms
- - id: 87
+ - 9d785761-c5f4-45bc-8120-14f7c90ddf78
+ status: 200 OK
+ code: 200
+ duration: 178.559949ms
+ - id: 90
request:
proto: HTTP/1.1
proto_major: 1
@@ -4341,8 +4486,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ae16abdb-d1dd-46bf-8b5d-dd281cf374ff
+ - scaleway-sdk-go/v1.0.0-beta.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/891b58c3-d2ec-4983-b28a-8cb483205477
method: GET
response:
proto: HTTP/2.0
@@ -4350,20 +4495,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 677
+ content_length: 143
uncompressed: false
- body: '{"created_at":"2025-01-27T13:49:09.632002Z","id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","last_detached_at":"2025-01-27T13:49:56.563437Z","name":"tf-volume-sad-herschel","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-01-27T13:49:58.448978Z","id":"7d14e917-34ec-46f5-bf7a-efb63f9da9c7","product_resource_id":"14d55807-c24e-4109-9461-4db25ccb30df","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-01-27T13:49:58.448978Z","zone":"fr-par-1"}'
+ body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"891b58c3-d2ec-4983-b28a-8cb483205477","type":"not_found"}'
headers:
Content-Length:
- - "677"
+ - "143"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:50:02 GMT
+ - Thu, 22 May 2025 15:32:20 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -4371,11 +4516,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7e1669d1-bf0d-4a37-8cad-9a314d5948a2
- status: 200 OK
- code: 200
- duration: 91.545042ms
- - id: 88
+ - 489505ad-300c-4dbd-90ab-b1ceaae475c9
+ status: 404 Not Found
+ code: 404
+ duration: 186.479111ms
+ - id: 91
request:
proto: HTTP/1.1
proto_major: 1
@@ -4390,8 +4535,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/98a430f8-7b42-4577-86df-32e83bfa7ba1
+ - scaleway-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/891b58c3-d2ec-4983-b28a-8cb483205477
method: GET
response:
proto: HTTP/2.0
@@ -4399,20 +4544,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 447
+ content_length: 657
uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:50:01.596530+00:00","export_uri":null,"id":"98a430f8-7b42-4577-86df-32e83bfa7ba1","modification_date":"2025-01-27T13:50:01.596530+00:00","name":"tf-vol-dazzling-blackburn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
+ body: '{"created_at":"2025-05-22T15:30:58.677558Z","id":"891b58c3-d2ec-4983-b28a-8cb483205477","last_detached_at":"2025-05-22T15:32:03.902845Z","name":"tf-volume-funny-curie","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-22T15:32:08.752171Z","id":"b6fa236a-889b-4eac-9e7e-bf92dfbf9079","product_resource_id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-05-22T15:32:08.752171Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "447"
+ - "657"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:50:02 GMT
+ - Thu, 22 May 2025 15:32:20 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -4420,50 +4565,48 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - fd1804b9-2363-4499-a240-fc57e47ecfae
+ - 15a18c26-b8ba-4c9d-b2a9-d9bf5139ffc9
status: 200 OK
code: 200
- duration: 74.552458ms
- - id: 89
+ duration: 67.277789ms
+ - id: 92
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 270
+ content_length: 0
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: '{"volumes":{"0":{"id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","boot":false,"name":"tf-vol-gallant-wescoff"},"1":{"id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","volume_type":"sbs_volume"},"2":{"id":"98a430f8-7b42-4577-86df-32e83bfa7ba1","name":"tf-vol-dazzling-blackburn"}}}'
+ body: ""
form: {}
headers:
- Content-Type:
- - application/json
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df
- method: PATCH
+ - scaleway-sdk-go/v1.0.0-beta.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/668982ef-3240-4972-a1ca-6a6d1fae9271
+ method: GET
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 2416
+ content_length: 143
uncompressed: false
- body: '{"server":{"allowed_actions":[],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-01-27T13:49:15.595743+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-jolly-wiles","id":"14d55807-c24e-4109-9461-4db25ccb30df","image":{"arch":"x86_64","creation_date":"2024-10-07T11:39:13.069801+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","modification_date":"2024-10-07T11:39:13.069801+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"4eb9437f-8993-444a-b564-f7654add2131","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:90:00:1f","maintenances":[],"modification_date":"2025-01-27T13:49:22.182411+00:00","name":"tf-srv-jolly-wiles","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","volume_type":"sbs_volume","zone":"fr-par-1"},"2":{"boot":false,"creation_date":"2025-01-27T13:50:01.596530+00:00","export_uri":null,"id":"98a430f8-7b42-4577-86df-32e83bfa7ba1","modification_date":"2025-01-27T13:50:02.475871+00:00","name":"tf-vol-dazzling-blackburn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"14d55807-c24e-4109-9461-4db25ccb30df","name":"tf-srv-jolly-wiles"},"size":10000000000,"state":"hotsyncing","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
+ body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"668982ef-3240-4972-a1ca-6a6d1fae9271","type":"not_found"}'
headers:
Content-Length:
- - "2416"
+ - "143"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:50:02 GMT
+ - Thu, 22 May 2025 15:32:20 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -4471,11 +4614,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 07ca3a4a-4a69-482f-8bcb-d916569bee87
- status: 200 OK
- code: 200
- duration: 724.959541ms
- - id: 90
+ - 7a5ca180-8762-4bd5-80f7-afd25e7dd12d
+ status: 404 Not Found
+ code: 404
+ duration: 113.703225ms
+ - id: 93
request:
proto: HTTP/1.1
proto_major: 1
@@ -4490,8 +4633,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df
+ - scaleway-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/668982ef-3240-4972-a1ca-6a6d1fae9271
method: GET
response:
proto: HTTP/2.0
@@ -4499,20 +4642,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 2416
+ content_length: 411
uncompressed: false
- body: '{"server":{"allowed_actions":[],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-01-27T13:49:15.595743+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-jolly-wiles","id":"14d55807-c24e-4109-9461-4db25ccb30df","image":{"arch":"x86_64","creation_date":"2024-10-07T11:39:13.069801+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","modification_date":"2024-10-07T11:39:13.069801+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"4eb9437f-8993-444a-b564-f7654add2131","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:90:00:1f","maintenances":[],"modification_date":"2025-01-27T13:49:22.182411+00:00","name":"tf-srv-jolly-wiles","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","volume_type":"sbs_volume","zone":"fr-par-1"},"2":{"boot":false,"creation_date":"2025-01-27T13:50:01.596530+00:00","export_uri":null,"id":"98a430f8-7b42-4577-86df-32e83bfa7ba1","modification_date":"2025-01-27T13:50:02.475871+00:00","name":"tf-vol-dazzling-blackburn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"14d55807-c24e-4109-9461-4db25ccb30df","name":"tf-srv-jolly-wiles"},"size":10000000000,"state":"hotsyncing","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
+ body: '{"created_at":"2025-05-22T15:32:14.477883Z","id":"668982ef-3240-4972-a1ca-6a6d1fae9271","last_detached_at":null,"name":"tf-volume-eloquent-darwin","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":15000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-05-22T15:32:14.477883Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "2416"
+ - "411"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:50:03 GMT
+ - Thu, 22 May 2025 15:32:20 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -4520,48 +4663,50 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6f179f30-e32d-4337-800b-c9d649e75daa
+ - afbbe22d-1794-4485-b691-8330f9944a8c
status: 200 OK
code: 200
- duration: 495.127917ms
- - id: 91
+ duration: 66.972445ms
+ - id: 94
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 0
+ content_length: 258
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: ""
+ body: '{"volumes":{"0":{"id":"d39f8983-965c-483a-a369-d7cbc01448a1","boot":false,"name":"tf-vol-great-elion"},"1":{"id":"891b58c3-d2ec-4983-b28a-8cb483205477","volume_type":"sbs_volume"},"2":{"id":"668982ef-3240-4972-a1ca-6a6d1fae9271","volume_type":"sbs_volume"}}}'
form: {}
headers:
+ Content-Type:
+ - application/json
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df
- method: GET
+ - scaleway-sdk-go/v1.0.0-beta.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/421a1744-d051-4b78-9fd8-2ef5f6c100df
+ method: PATCH
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 2416
+ content_length: 2053
uncompressed: false
- body: '{"server":{"allowed_actions":[],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-01-27T13:49:15.595743+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-jolly-wiles","id":"14d55807-c24e-4109-9461-4db25ccb30df","image":{"arch":"x86_64","creation_date":"2024-10-07T11:39:13.069801+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","modification_date":"2024-10-07T11:39:13.069801+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"4eb9437f-8993-444a-b564-f7654add2131","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:90:00:1f","maintenances":[],"modification_date":"2025-01-27T13:49:22.182411+00:00","name":"tf-srv-jolly-wiles","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","volume_type":"sbs_volume","zone":"fr-par-1"},"2":{"boot":false,"creation_date":"2025-01-27T13:50:01.596530+00:00","export_uri":null,"id":"98a430f8-7b42-4577-86df-32e83bfa7ba1","modification_date":"2025-01-27T13:50:02.475871+00:00","name":"tf-vol-dazzling-blackburn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"14d55807-c24e-4109-9461-4db25ccb30df","name":"tf-srv-jolly-wiles"},"size":10000000000,"state":"hotsyncing","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
+ body: '{"server":{"allowed_actions":[],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-05-22T15:31:04.954748+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-elated-euclid","id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"104","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b0:1d:0b","maintenances":[],"modification_date":"2025-05-22T15:31:11.606989+00:00","name":"tf-srv-elated-euclid","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d39f8983-965c-483a-a369-d7cbc01448a1","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"891b58c3-d2ec-4983-b28a-8cb483205477","volume_type":"sbs_volume","zone":"fr-par-1"},"2":{"boot":false,"id":"668982ef-3240-4972-a1ca-6a6d1fae9271","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "2416"
+ - "2053"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:50:03 GMT
+ - Thu, 22 May 2025 15:32:21 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -4569,11 +4714,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e3328eaf-2c76-4176-940b-b438dfce6b1d
+ - 920024ab-847e-4fae-9335-5afc10f5212e
status: 200 OK
code: 200
- duration: 191.204416ms
- - id: 92
+ duration: 821.686671ms
+ - id: 95
request:
proto: HTTP/1.1
proto_major: 1
@@ -4588,8 +4733,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3d7e600d-bd4a-4782-9129-1c1401c319cd
+ - scaleway-sdk-go/v1.0.0-beta.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/421a1744-d051-4b78-9fd8-2ef5f6c100df
method: GET
response:
proto: HTTP/2.0
@@ -4597,20 +4742,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 143
+ content_length: 2053
uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","type":"not_found"}'
+ body: '{"server":{"allowed_actions":[],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-05-22T15:31:04.954748+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-elated-euclid","id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"104","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b0:1d:0b","maintenances":[],"modification_date":"2025-05-22T15:31:11.606989+00:00","name":"tf-srv-elated-euclid","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d39f8983-965c-483a-a369-d7cbc01448a1","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"891b58c3-d2ec-4983-b28a-8cb483205477","volume_type":"sbs_volume","zone":"fr-par-1"},"2":{"boot":false,"id":"668982ef-3240-4972-a1ca-6a6d1fae9271","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "143"
+ - "2053"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:50:03 GMT
+ - Thu, 22 May 2025 15:32:21 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -4618,11 +4763,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 29102887-21f8-45ba-9379-134d5260d1d4
- status: 404 Not Found
- code: 404
- duration: 69.333791ms
- - id: 93
+ - 08a2937c-f985-4045-bd65-6a7a99f526c2
+ status: 200 OK
+ code: 200
+ duration: 206.666397ms
+ - id: 96
request:
proto: HTTP/1.1
proto_major: 1
@@ -4637,8 +4782,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3d7e600d-bd4a-4782-9129-1c1401c319cd
+ - scaleway-sdk-go/v1.0.0-beta.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/421a1744-d051-4b78-9fd8-2ef5f6c100df
method: GET
response:
proto: HTTP/2.0
@@ -4646,20 +4791,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 705
+ content_length: 2053
uncompressed: false
- body: '{"created_at":"2025-01-27T13:49:15.792688Z","id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"4eb9437f-8993-444a-b564-f7654add2131","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-01-27T13:49:15.792688Z","id":"9cfc1f86-0936-48a9-886b-85392381eaef","product_resource_id":"14d55807-c24e-4109-9461-4db25ccb30df","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-01-27T13:49:15.792688Z","zone":"fr-par-1"}'
+ body: '{"server":{"allowed_actions":[],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-05-22T15:31:04.954748+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-elated-euclid","id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"104","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b0:1d:0b","maintenances":[],"modification_date":"2025-05-22T15:31:11.606989+00:00","name":"tf-srv-elated-euclid","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d39f8983-965c-483a-a369-d7cbc01448a1","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"891b58c3-d2ec-4983-b28a-8cb483205477","volume_type":"sbs_volume","zone":"fr-par-1"},"2":{"boot":false,"id":"668982ef-3240-4972-a1ca-6a6d1fae9271","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "705"
+ - "2053"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:50:03 GMT
+ - Thu, 22 May 2025 15:32:21 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -4667,11 +4812,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d815dfc9-b3ab-4ceb-af74-822f9605d63e
+ - f82546af-0662-4c97-a0f2-92e8a1496a14
status: 200 OK
code: 200
- duration: 64.057833ms
- - id: 94
+ duration: 216.651245ms
+ - id: 97
request:
proto: HTTP/1.1
proto_major: 1
@@ -4686,8 +4831,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df/user_data
+ - scaleway-sdk-go/v1.0.0-beta.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/d39f8983-965c-483a-a369-d7cbc01448a1
method: GET
response:
proto: HTTP/2.0
@@ -4695,20 +4840,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 17
+ content_length: 143
uncompressed: false
- body: '{"user_data":[]}'
+ body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d39f8983-965c-483a-a369-d7cbc01448a1","type":"not_found"}'
headers:
Content-Length:
- - "17"
+ - "143"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:50:03 GMT
+ - Thu, 22 May 2025 15:32:21 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -4716,11 +4861,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 56d2e8e7-24de-4f14-96ab-1be6534634f8
- status: 200 OK
- code: 200
- duration: 78.52225ms
- - id: 95
+ - 87405a69-18ac-44c0-adf5-cb950c70b5d3
+ status: 404 Not Found
+ code: 404
+ duration: 77.827978ms
+ - id: 98
request:
proto: HTTP/1.1
proto_major: 1
@@ -4735,8 +4880,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df/private_nics
+ - scaleway-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/d39f8983-965c-483a-a369-d7cbc01448a1
method: GET
response:
proto: HTTP/2.0
@@ -4744,22 +4889,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 20
+ content_length: 686
uncompressed: false
- body: '{"private_nics":[]}'
+ body: '{"created_at":"2025-05-22T15:31:05.071179Z","id":"d39f8983-965c-483a-a369-d7cbc01448a1","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-22T15:31:05.071179Z","id":"05b3cfa2-3acb-44a8-93b8-00ebf830b4a3","product_resource_id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-05-22T15:31:05.071179Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "20"
+ - "686"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:50:03 GMT
- Link:
- - ; rel="last"
+ - Thu, 22 May 2025 15:32:21 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -4767,13 +4910,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 94a8d7c7-1e02-454f-b469-21ecc316fa05
- X-Total-Count:
- - "0"
+ - 359d9e4b-0e56-4315-ac12-ddb381095bec
status: 200 OK
code: 200
- duration: 105.365291ms
- - id: 96
+ duration: 67.228036ms
+ - id: 99
request:
proto: HTTP/1.1
proto_major: 1
@@ -4788,8 +4929,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ae16abdb-d1dd-46bf-8b5d-dd281cf374ff
+ - scaleway-sdk-go/v1.0.0-beta.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/421a1744-d051-4b78-9fd8-2ef5f6c100df/user_data
method: GET
response:
proto: HTTP/2.0
@@ -4797,20 +4938,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 677
+ content_length: 17
uncompressed: false
- body: '{"created_at":"2025-01-27T13:49:09.632002Z","id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","last_detached_at":"2025-01-27T13:49:56.563437Z","name":"tf-volume-sad-herschel","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-01-27T13:49:58.448978Z","id":"7d14e917-34ec-46f5-bf7a-efb63f9da9c7","product_resource_id":"14d55807-c24e-4109-9461-4db25ccb30df","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-01-27T13:49:58.448978Z","zone":"fr-par-1"}'
+ body: '{"user_data":[]}'
headers:
Content-Length:
- - "677"
+ - "17"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:50:04 GMT
+ - Thu, 22 May 2025 15:32:21 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -4818,11 +4959,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 04efdc64-6f82-4b61-abf5-5db374725327
+ - 3d591486-da58-411f-aadf-cbfa6fa8eb1c
status: 200 OK
code: 200
- duration: 81.488875ms
- - id: 97
+ duration: 108.777571ms
+ - id: 100
request:
proto: HTTP/1.1
proto_major: 1
@@ -4837,8 +4978,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/98a430f8-7b42-4577-86df-32e83bfa7ba1
+ - scaleway-sdk-go/v1.0.0-beta.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/421a1744-d051-4b78-9fd8-2ef5f6c100df/private_nics
method: GET
response:
proto: HTTP/2.0
@@ -4846,20 +4987,22 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 519
+ content_length: 20
uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:50:01.596530+00:00","export_uri":null,"id":"98a430f8-7b42-4577-86df-32e83bfa7ba1","modification_date":"2025-01-27T13:50:04.013433+00:00","name":"tf-vol-dazzling-blackburn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"14d55807-c24e-4109-9461-4db25ccb30df","name":"tf-srv-jolly-wiles"},"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
+ body: '{"private_nics":[]}'
headers:
Content-Length:
- - "519"
+ - "20"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:50:04 GMT
+ - Thu, 22 May 2025 15:32:22 GMT
+ Link:
+ - ; rel="last"
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -4867,11 +5010,13 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1e18bd57-f922-4bd6-b68e-b463aba017c9
+ - 631b4fce-954f-459f-8ce0-1e43d80cdb2a
+ X-Total-Count:
+ - "0"
status: 200 OK
code: 200
- duration: 82.443833ms
- - id: 98
+ duration: 107.679059ms
+ - id: 101
request:
proto: HTTP/1.1
proto_major: 1
@@ -4886,8 +5031,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df
+ - scaleway-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/891b58c3-d2ec-4983-b28a-8cb483205477
method: GET
response:
proto: HTTP/2.0
@@ -4895,20 +5040,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 2475
+ content_length: 657
uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-01-27T13:49:15.595743+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-jolly-wiles","id":"14d55807-c24e-4109-9461-4db25ccb30df","image":{"arch":"x86_64","creation_date":"2024-10-07T11:39:13.069801+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","modification_date":"2024-10-07T11:39:13.069801+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"4eb9437f-8993-444a-b564-f7654add2131","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:90:00:1f","maintenances":[],"modification_date":"2025-01-27T13:49:22.182411+00:00","name":"tf-srv-jolly-wiles","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","volume_type":"sbs_volume","zone":"fr-par-1"},"2":{"boot":false,"creation_date":"2025-01-27T13:50:01.596530+00:00","export_uri":null,"id":"98a430f8-7b42-4577-86df-32e83bfa7ba1","modification_date":"2025-01-27T13:50:04.013433+00:00","name":"tf-vol-dazzling-blackburn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"14d55807-c24e-4109-9461-4db25ccb30df","name":"tf-srv-jolly-wiles"},"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
+ body: '{"created_at":"2025-05-22T15:30:58.677558Z","id":"891b58c3-d2ec-4983-b28a-8cb483205477","last_detached_at":"2025-05-22T15:32:03.902845Z","name":"tf-volume-funny-curie","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-22T15:32:08.752171Z","id":"b6fa236a-889b-4eac-9e7e-bf92dfbf9079","product_resource_id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-05-22T15:32:08.752171Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "2475"
+ - "657"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:50:04 GMT
+ - Thu, 22 May 2025 15:32:22 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -4916,11 +5061,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6a967bca-6872-4c59-a95c-fa86488ea084
+ - 8b542d1d-f339-44ea-9a5f-019b6b2405e8
status: 200 OK
code: 200
- duration: 286.544875ms
- - id: 99
+ duration: 66.223891ms
+ - id: 102
request:
proto: HTTP/1.1
proto_major: 1
@@ -4935,8 +5080,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3d7e600d-bd4a-4782-9129-1c1401c319cd
+ - scaleway-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/668982ef-3240-4972-a1ca-6a6d1fae9271
method: GET
response:
proto: HTTP/2.0
@@ -4944,20 +5089,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 143
+ content_length: 638
uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","type":"not_found"}'
+ body: '{"created_at":"2025-05-22T15:32:14.477883Z","id":"668982ef-3240-4972-a1ca-6a6d1fae9271","last_detached_at":null,"name":"tf-volume-eloquent-darwin","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-22T15:32:20.866354Z","id":"8df9335f-779a-4976-8c77-07d42211eb1f","product_resource_id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":15000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"in_use","tags":[],"type":"sbs_15k","updated_at":"2025-05-22T15:32:20.866354Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "143"
+ - "638"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:50:04 GMT
+ - Thu, 22 May 2025 15:32:23 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -4965,11 +5110,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e67146e6-de23-4ba5-a4c3-91842430e54a
- status: 404 Not Found
- code: 404
- duration: 44.582875ms
- - id: 100
+ - f29092e6-88d5-4590-96d7-3a330c9e2491
+ status: 200 OK
+ code: 200
+ duration: 129.108996ms
+ - id: 103
request:
proto: HTTP/1.1
proto_major: 1
@@ -4984,8 +5129,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3d7e600d-bd4a-4782-9129-1c1401c319cd
+ - scaleway-sdk-go/v1.0.0-beta.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/421a1744-d051-4b78-9fd8-2ef5f6c100df
method: GET
response:
proto: HTTP/2.0
@@ -4993,20 +5138,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 705
+ content_length: 2113
uncompressed: false
- body: '{"created_at":"2025-01-27T13:49:15.792688Z","id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"4eb9437f-8993-444a-b564-f7654add2131","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-01-27T13:49:15.792688Z","id":"9cfc1f86-0936-48a9-886b-85392381eaef","product_resource_id":"14d55807-c24e-4109-9461-4db25ccb30df","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-01-27T13:49:15.792688Z","zone":"fr-par-1"}'
+ body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-05-22T15:31:04.954748+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-elated-euclid","id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"104","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b0:1d:0b","maintenances":[],"modification_date":"2025-05-22T15:31:11.606989+00:00","name":"tf-srv-elated-euclid","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d39f8983-965c-483a-a369-d7cbc01448a1","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"891b58c3-d2ec-4983-b28a-8cb483205477","volume_type":"sbs_volume","zone":"fr-par-1"},"2":{"boot":false,"id":"668982ef-3240-4972-a1ca-6a6d1fae9271","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "705"
+ - "2113"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:50:04 GMT
+ - Thu, 22 May 2025 15:32:23 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -5014,11 +5159,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2f83f801-39b3-42cc-a619-62cc998c0e97
+ - 7042a536-d06f-4ddb-8634-773a26169488
status: 200 OK
code: 200
- duration: 84.838334ms
- - id: 101
+ duration: 254.638615ms
+ - id: 104
request:
proto: HTTP/1.1
proto_major: 1
@@ -5033,8 +5178,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df/user_data
+ - scaleway-sdk-go/v1.0.0-beta.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/d39f8983-965c-483a-a369-d7cbc01448a1
method: GET
response:
proto: HTTP/2.0
@@ -5042,20 +5187,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 17
+ content_length: 143
uncompressed: false
- body: '{"user_data":[]}'
+ body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d39f8983-965c-483a-a369-d7cbc01448a1","type":"not_found"}'
headers:
Content-Length:
- - "17"
+ - "143"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:50:04 GMT
+ - Thu, 22 May 2025 15:32:23 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -5063,11 +5208,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2671114e-4076-43cf-9395-272b8488ff60
- status: 200 OK
- code: 200
- duration: 84.5055ms
- - id: 102
+ - 0d531951-f8f4-4f40-b591-ac48d2dbc41f
+ status: 404 Not Found
+ code: 404
+ duration: 79.191868ms
+ - id: 105
request:
proto: HTTP/1.1
proto_major: 1
@@ -5082,8 +5227,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df/private_nics
+ - scaleway-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/d39f8983-965c-483a-a369-d7cbc01448a1
method: GET
response:
proto: HTTP/2.0
@@ -5091,22 +5236,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 20
+ content_length: 686
uncompressed: false
- body: '{"private_nics":[]}'
+ body: '{"created_at":"2025-05-22T15:31:05.071179Z","id":"d39f8983-965c-483a-a369-d7cbc01448a1","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-22T15:31:05.071179Z","id":"05b3cfa2-3acb-44a8-93b8-00ebf830b4a3","product_resource_id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-05-22T15:31:05.071179Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "20"
+ - "686"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:50:04 GMT
- Link:
- - ; rel="last"
+ - Thu, 22 May 2025 15:32:23 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -5114,13 +5257,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a7c34009-3e24-427d-ba0f-2df75daa286b
- X-Total-Count:
- - "0"
+ - c0a4884a-b193-4934-ab2c-6e2c58320a79
status: 200 OK
code: 200
- duration: 101.70225ms
- - id: 103
+ duration: 58.249976ms
+ - id: 106
request:
proto: HTTP/1.1
proto_major: 1
@@ -5135,8 +5276,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df
+ - scaleway-sdk-go/v1.0.0-beta.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/421a1744-d051-4b78-9fd8-2ef5f6c100df/user_data
method: GET
response:
proto: HTTP/2.0
@@ -5144,20 +5285,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 2475
+ content_length: 17
uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-01-27T13:49:15.595743+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-jolly-wiles","id":"14d55807-c24e-4109-9461-4db25ccb30df","image":{"arch":"x86_64","creation_date":"2024-10-07T11:39:13.069801+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","modification_date":"2024-10-07T11:39:13.069801+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"4eb9437f-8993-444a-b564-f7654add2131","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:90:00:1f","maintenances":[],"modification_date":"2025-01-27T13:49:22.182411+00:00","name":"tf-srv-jolly-wiles","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","volume_type":"sbs_volume","zone":"fr-par-1"},"2":{"boot":false,"creation_date":"2025-01-27T13:50:01.596530+00:00","export_uri":null,"id":"98a430f8-7b42-4577-86df-32e83bfa7ba1","modification_date":"2025-01-27T13:50:04.013433+00:00","name":"tf-vol-dazzling-blackburn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"14d55807-c24e-4109-9461-4db25ccb30df","name":"tf-srv-jolly-wiles"},"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
+ body: '{"user_data":[]}'
headers:
Content-Length:
- - "2475"
+ - "17"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:50:05 GMT
+ - Thu, 22 May 2025 15:32:23 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -5165,11 +5306,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c1f116ec-1ad7-4a07-b6db-467cababd143
+ - efc8523f-05ec-4d7f-95c8-e3dd39012a49
status: 200 OK
code: 200
- duration: 329.186625ms
- - id: 104
+ duration: 83.437245ms
+ - id: 107
request:
proto: HTTP/1.1
proto_major: 1
@@ -5184,8 +5325,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ae16abdb-d1dd-46bf-8b5d-dd281cf374ff
+ - scaleway-sdk-go/v1.0.0-beta.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/421a1744-d051-4b78-9fd8-2ef5f6c100df/private_nics
method: GET
response:
proto: HTTP/2.0
@@ -5193,20 +5334,22 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 677
+ content_length: 20
uncompressed: false
- body: '{"created_at":"2025-01-27T13:49:09.632002Z","id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","last_detached_at":"2025-01-27T13:49:56.563437Z","name":"tf-volume-sad-herschel","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-01-27T13:49:58.448978Z","id":"7d14e917-34ec-46f5-bf7a-efb63f9da9c7","product_resource_id":"14d55807-c24e-4109-9461-4db25ccb30df","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-01-27T13:49:58.448978Z","zone":"fr-par-1"}'
+ body: '{"private_nics":[]}'
headers:
Content-Length:
- - "677"
+ - "20"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:50:05 GMT
+ - Thu, 22 May 2025 15:32:23 GMT
+ Link:
+ - ; rel="last"
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -5214,11 +5357,13 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c8e3b99b-91c2-4f24-9e9b-4d90957492b8
+ - ff064939-ef52-4e0a-8b9c-ac185d1ab35f
+ X-Total-Count:
+ - "0"
status: 200 OK
code: 200
- duration: 70.824458ms
- - id: 105
+ duration: 103.396893ms
+ - id: 108
request:
proto: HTTP/1.1
proto_major: 1
@@ -5233,8 +5378,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3d7e600d-bd4a-4782-9129-1c1401c319cd
+ - scaleway-sdk-go/v1.0.0-beta.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/421a1744-d051-4b78-9fd8-2ef5f6c100df
method: GET
response:
proto: HTTP/2.0
@@ -5242,20 +5387,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 705
+ content_length: 2113
uncompressed: false
- body: '{"created_at":"2025-01-27T13:49:15.792688Z","id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"4eb9437f-8993-444a-b564-f7654add2131","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-01-27T13:49:15.792688Z","id":"9cfc1f86-0936-48a9-886b-85392381eaef","product_resource_id":"14d55807-c24e-4109-9461-4db25ccb30df","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-01-27T13:49:15.792688Z","zone":"fr-par-1"}'
+ body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-05-22T15:31:04.954748+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-elated-euclid","id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"104","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b0:1d:0b","maintenances":[],"modification_date":"2025-05-22T15:31:11.606989+00:00","name":"tf-srv-elated-euclid","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d39f8983-965c-483a-a369-d7cbc01448a1","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"891b58c3-d2ec-4983-b28a-8cb483205477","volume_type":"sbs_volume","zone":"fr-par-1"},"2":{"boot":false,"id":"668982ef-3240-4972-a1ca-6a6d1fae9271","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "705"
+ - "2113"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:50:05 GMT
+ - Thu, 22 May 2025 15:32:24 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -5263,52 +5408,48 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5cd0cc7b-7c77-491e-9913-f805d76f0a1b
+ - f5ead0cb-9089-4f3a-a782-fa176a2edf45
status: 200 OK
code: 200
- duration: 71.356208ms
- - id: 106
+ duration: 183.71319ms
+ - id: 109
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.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df/action
- method: POST
+ - scaleway-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/d39f8983-965c-483a-a369-d7cbc01448a1
+ method: GET
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 352
+ content_length: 686
uncompressed: false
- body: '{"task":{"description":"server_poweroff","href_from":"/servers/14d55807-c24e-4109-9461-4db25ccb30df/action","href_result":"/servers/14d55807-c24e-4109-9461-4db25ccb30df","id":"ca017672-3773-42e0-ac0e-5bb86ad3b62a","progress":0,"started_at":"2025-01-27T13:50:05.907971+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}'
+ body: '{"created_at":"2025-05-22T15:31:05.071179Z","id":"d39f8983-965c-483a-a369-d7cbc01448a1","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-22T15:31:05.071179Z","id":"05b3cfa2-3acb-44a8-93b8-00ebf830b4a3","product_resource_id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-05-22T15:31:05.071179Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "352"
+ - "686"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:50:05 GMT
- Location:
- - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/ca017672-3773-42e0-ac0e-5bb86ad3b62a
+ - Thu, 22 May 2025 15:32:24 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -5316,11 +5457,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3131b70c-7407-46f4-bfaa-ac9c524afa3c
- status: 202 Accepted
- code: 202
- duration: 270.555916ms
- - id: 107
+ - 377028de-3944-4069-9959-41caf821b6ad
+ status: 200 OK
+ code: 200
+ duration: 93.514517ms
+ - id: 110
request:
proto: HTTP/1.1
proto_major: 1
@@ -5335,8 +5476,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df
+ - scaleway-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/891b58c3-d2ec-4983-b28a-8cb483205477
method: GET
response:
proto: HTTP/2.0
@@ -5344,20 +5485,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 2435
+ content_length: 657
uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-01-27T13:49:15.595743+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-jolly-wiles","id":"14d55807-c24e-4109-9461-4db25ccb30df","image":{"arch":"x86_64","creation_date":"2024-10-07T11:39:13.069801+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","modification_date":"2024-10-07T11:39:13.069801+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"4eb9437f-8993-444a-b564-f7654add2131","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:90:00:1f","maintenances":[],"modification_date":"2025-01-27T13:50:05.707430+00:00","name":"tf-srv-jolly-wiles","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","volume_type":"sbs_volume","zone":"fr-par-1"},"2":{"boot":false,"creation_date":"2025-01-27T13:50:01.596530+00:00","export_uri":null,"id":"98a430f8-7b42-4577-86df-32e83bfa7ba1","modification_date":"2025-01-27T13:50:04.013433+00:00","name":"tf-vol-dazzling-blackburn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"14d55807-c24e-4109-9461-4db25ccb30df","name":"tf-srv-jolly-wiles"},"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
+ body: '{"created_at":"2025-05-22T15:30:58.677558Z","id":"891b58c3-d2ec-4983-b28a-8cb483205477","last_detached_at":"2025-05-22T15:32:03.902845Z","name":"tf-volume-funny-curie","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-22T15:32:08.752171Z","id":"b6fa236a-889b-4eac-9e7e-bf92dfbf9079","product_resource_id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-05-22T15:32:08.752171Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "2435"
+ - "657"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:50:06 GMT
+ - Thu, 22 May 2025 15:32:24 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -5365,11 +5506,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - bac04efa-f5b2-4bbf-8367-4cc98e2c76b9
+ - fec1b74c-4990-4484-ac6e-f96cdfa8b04f
status: 200 OK
code: 200
- duration: 440.639459ms
- - id: 108
+ duration: 69.041569ms
+ - id: 111
request:
proto: HTTP/1.1
proto_major: 1
@@ -5384,8 +5525,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df
+ - scaleway-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/668982ef-3240-4972-a1ca-6a6d1fae9271
method: GET
response:
proto: HTTP/2.0
@@ -5393,20 +5534,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 2435
+ content_length: 638
uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-01-27T13:49:15.595743+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-jolly-wiles","id":"14d55807-c24e-4109-9461-4db25ccb30df","image":{"arch":"x86_64","creation_date":"2024-10-07T11:39:13.069801+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","modification_date":"2024-10-07T11:39:13.069801+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"4eb9437f-8993-444a-b564-f7654add2131","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:90:00:1f","maintenances":[],"modification_date":"2025-01-27T13:50:05.707430+00:00","name":"tf-srv-jolly-wiles","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","volume_type":"sbs_volume","zone":"fr-par-1"},"2":{"boot":false,"creation_date":"2025-01-27T13:50:01.596530+00:00","export_uri":null,"id":"98a430f8-7b42-4577-86df-32e83bfa7ba1","modification_date":"2025-01-27T13:50:04.013433+00:00","name":"tf-vol-dazzling-blackburn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"14d55807-c24e-4109-9461-4db25ccb30df","name":"tf-srv-jolly-wiles"},"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
+ body: '{"created_at":"2025-05-22T15:32:14.477883Z","id":"668982ef-3240-4972-a1ca-6a6d1fae9271","last_detached_at":null,"name":"tf-volume-eloquent-darwin","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-22T15:32:20.866354Z","id":"8df9335f-779a-4976-8c77-07d42211eb1f","product_resource_id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":15000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"in_use","tags":[],"type":"sbs_15k","updated_at":"2025-05-22T15:32:20.866354Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "2435"
+ - "638"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:50:11 GMT
+ - Thu, 22 May 2025 15:32:24 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -5414,48 +5555,52 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ba413274-c466-4fba-aed5-0d1fd98a3ac0
+ - 6a295858-676b-4c72-96e6-f4b2c0321741
status: 200 OK
code: 200
- duration: 357.805959ms
- - id: 109
+ duration: 57.105238ms
+ - id: 112
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.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df
- method: GET
+ - scaleway-sdk-go/v1.0.0-beta.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/421a1744-d051-4b78-9fd8-2ef5f6c100df/action
+ method: POST
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 2435
+ content_length: 352
uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-01-27T13:49:15.595743+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-jolly-wiles","id":"14d55807-c24e-4109-9461-4db25ccb30df","image":{"arch":"x86_64","creation_date":"2024-10-07T11:39:13.069801+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","modification_date":"2024-10-07T11:39:13.069801+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"4eb9437f-8993-444a-b564-f7654add2131","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:90:00:1f","maintenances":[],"modification_date":"2025-01-27T13:50:05.707430+00:00","name":"tf-srv-jolly-wiles","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","volume_type":"sbs_volume","zone":"fr-par-1"},"2":{"boot":false,"creation_date":"2025-01-27T13:50:01.596530+00:00","export_uri":null,"id":"98a430f8-7b42-4577-86df-32e83bfa7ba1","modification_date":"2025-01-27T13:50:04.013433+00:00","name":"tf-vol-dazzling-blackburn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"14d55807-c24e-4109-9461-4db25ccb30df","name":"tf-srv-jolly-wiles"},"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
+ body: '{"task":{"description":"server_poweroff","href_from":"/servers/421a1744-d051-4b78-9fd8-2ef5f6c100df/action","href_result":"/servers/421a1744-d051-4b78-9fd8-2ef5f6c100df","id":"22f25fec-93fa-4845-b8df-518994489a70","progress":0,"started_at":"2025-05-22T15:32:24.913939+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "2435"
+ - "352"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:50:16 GMT
+ - Thu, 22 May 2025 15:32:24 GMT
+ Location:
+ - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/22f25fec-93fa-4845-b8df-518994489a70
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -5463,11 +5608,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f483aa43-1822-4b44-8a81-33696b2160b0
- status: 200 OK
- code: 200
- duration: 205.604458ms
- - id: 110
+ - 975cc0b9-9a7e-4ad9-8f13-99be49a701da
+ status: 202 Accepted
+ code: 202
+ duration: 210.380497ms
+ - id: 113
request:
proto: HTTP/1.1
proto_major: 1
@@ -5482,8 +5627,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df
+ - scaleway-sdk-go/v1.0.0-beta.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/421a1744-d051-4b78-9fd8-2ef5f6c100df
method: GET
response:
proto: HTTP/2.0
@@ -5491,20 +5636,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 2435
+ content_length: 2073
uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-01-27T13:49:15.595743+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-jolly-wiles","id":"14d55807-c24e-4109-9461-4db25ccb30df","image":{"arch":"x86_64","creation_date":"2024-10-07T11:39:13.069801+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","modification_date":"2024-10-07T11:39:13.069801+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"4eb9437f-8993-444a-b564-f7654add2131","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:90:00:1f","maintenances":[],"modification_date":"2025-01-27T13:50:05.707430+00:00","name":"tf-srv-jolly-wiles","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","volume_type":"sbs_volume","zone":"fr-par-1"},"2":{"boot":false,"creation_date":"2025-01-27T13:50:01.596530+00:00","export_uri":null,"id":"98a430f8-7b42-4577-86df-32e83bfa7ba1","modification_date":"2025-01-27T13:50:04.013433+00:00","name":"tf-vol-dazzling-blackburn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"14d55807-c24e-4109-9461-4db25ccb30df","name":"tf-srv-jolly-wiles"},"size":10000000000,"state":"available","tags":[],"volume_type":"b_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":"PLAY2-PICO","creation_date":"2025-05-22T15:31:04.954748+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-elated-euclid","id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"104","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b0:1d:0b","maintenances":[],"modification_date":"2025-05-22T15:32:24.766941+00:00","name":"tf-srv-elated-euclid","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d39f8983-965c-483a-a369-d7cbc01448a1","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"891b58c3-d2ec-4983-b28a-8cb483205477","volume_type":"sbs_volume","zone":"fr-par-1"},"2":{"boot":false,"id":"668982ef-3240-4972-a1ca-6a6d1fae9271","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "2435"
+ - "2073"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:50:21 GMT
+ - Thu, 22 May 2025 15:32:25 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -5512,11 +5657,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 12b8cfbe-1d65-4882-b6b4-abe15511595c
+ - c6be9805-f027-4aff-9b6b-8cb246284082
status: 200 OK
code: 200
- duration: 178.480958ms
- - id: 111
+ duration: 197.460749ms
+ - id: 114
request:
proto: HTTP/1.1
proto_major: 1
@@ -5531,8 +5676,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df
+ - scaleway-sdk-go/v1.0.0-beta.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/421a1744-d051-4b78-9fd8-2ef5f6c100df
method: GET
response:
proto: HTTP/2.0
@@ -5540,20 +5685,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 2435
+ content_length: 2073
uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-01-27T13:49:15.595743+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-jolly-wiles","id":"14d55807-c24e-4109-9461-4db25ccb30df","image":{"arch":"x86_64","creation_date":"2024-10-07T11:39:13.069801+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","modification_date":"2024-10-07T11:39:13.069801+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"4eb9437f-8993-444a-b564-f7654add2131","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:90:00:1f","maintenances":[],"modification_date":"2025-01-27T13:50:05.707430+00:00","name":"tf-srv-jolly-wiles","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","volume_type":"sbs_volume","zone":"fr-par-1"},"2":{"boot":false,"creation_date":"2025-01-27T13:50:01.596530+00:00","export_uri":null,"id":"98a430f8-7b42-4577-86df-32e83bfa7ba1","modification_date":"2025-01-27T13:50:04.013433+00:00","name":"tf-vol-dazzling-blackburn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"14d55807-c24e-4109-9461-4db25ccb30df","name":"tf-srv-jolly-wiles"},"size":10000000000,"state":"available","tags":[],"volume_type":"b_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":"PLAY2-PICO","creation_date":"2025-05-22T15:31:04.954748+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-elated-euclid","id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"104","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b0:1d:0b","maintenances":[],"modification_date":"2025-05-22T15:32:24.766941+00:00","name":"tf-srv-elated-euclid","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d39f8983-965c-483a-a369-d7cbc01448a1","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"891b58c3-d2ec-4983-b28a-8cb483205477","volume_type":"sbs_volume","zone":"fr-par-1"},"2":{"boot":false,"id":"668982ef-3240-4972-a1ca-6a6d1fae9271","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "2435"
+ - "2073"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:50:27 GMT
+ - Thu, 22 May 2025 15:32:30 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -5561,11 +5706,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4e5bca02-0606-4927-ba2b-54040ed8571f
+ - cb87eab7-a8b6-430f-a5ee-6a65721a080e
status: 200 OK
code: 200
- duration: 203.273792ms
- - id: 112
+ duration: 197.304779ms
+ - id: 115
request:
proto: HTTP/1.1
proto_major: 1
@@ -5580,8 +5725,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df
+ - scaleway-sdk-go/v1.0.0-beta.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/421a1744-d051-4b78-9fd8-2ef5f6c100df
method: GET
response:
proto: HTTP/2.0
@@ -5589,20 +5734,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 2435
+ content_length: 2073
uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-01-27T13:49:15.595743+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-jolly-wiles","id":"14d55807-c24e-4109-9461-4db25ccb30df","image":{"arch":"x86_64","creation_date":"2024-10-07T11:39:13.069801+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","modification_date":"2024-10-07T11:39:13.069801+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"4eb9437f-8993-444a-b564-f7654add2131","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:90:00:1f","maintenances":[],"modification_date":"2025-01-27T13:50:05.707430+00:00","name":"tf-srv-jolly-wiles","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","volume_type":"sbs_volume","zone":"fr-par-1"},"2":{"boot":false,"creation_date":"2025-01-27T13:50:01.596530+00:00","export_uri":null,"id":"98a430f8-7b42-4577-86df-32e83bfa7ba1","modification_date":"2025-01-27T13:50:04.013433+00:00","name":"tf-vol-dazzling-blackburn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"14d55807-c24e-4109-9461-4db25ccb30df","name":"tf-srv-jolly-wiles"},"size":10000000000,"state":"available","tags":[],"volume_type":"b_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":"PLAY2-PICO","creation_date":"2025-05-22T15:31:04.954748+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-elated-euclid","id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"104","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b0:1d:0b","maintenances":[],"modification_date":"2025-05-22T15:32:24.766941+00:00","name":"tf-srv-elated-euclid","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d39f8983-965c-483a-a369-d7cbc01448a1","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"891b58c3-d2ec-4983-b28a-8cb483205477","volume_type":"sbs_volume","zone":"fr-par-1"},"2":{"boot":false,"id":"668982ef-3240-4972-a1ca-6a6d1fae9271","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "2435"
+ - "2073"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:50:32 GMT
+ - Thu, 22 May 2025 15:32:35 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -5610,11 +5755,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5e39ec18-01a8-4aaa-a334-5407a1e5e37d
+ - 953eacfe-a138-4dfd-8ebc-a6f92c5d61bd
status: 200 OK
code: 200
- duration: 286.921542ms
- - id: 113
+ duration: 250.26688ms
+ - id: 116
request:
proto: HTTP/1.1
proto_major: 1
@@ -5629,8 +5774,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df
+ - scaleway-sdk-go/v1.0.0-beta.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/421a1744-d051-4b78-9fd8-2ef5f6c100df
method: GET
response:
proto: HTTP/2.0
@@ -5638,20 +5783,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 2320
+ content_length: 1956
uncompressed: false
- body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-01-27T13:49:15.595743+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-jolly-wiles","id":"14d55807-c24e-4109-9461-4db25ccb30df","image":{"arch":"x86_64","creation_date":"2024-10-07T11:39:13.069801+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","modification_date":"2024-10-07T11:39:13.069801+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"4eb9437f-8993-444a-b564-f7654add2131","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:90:00:1f","maintenances":[],"modification_date":"2025-01-27T13:50:34.958922+00:00","name":"tf-srv-jolly-wiles","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","volume_type":"sbs_volume","zone":"fr-par-1"},"2":{"boot":false,"creation_date":"2025-01-27T13:50:01.596530+00:00","export_uri":null,"id":"98a430f8-7b42-4577-86df-32e83bfa7ba1","modification_date":"2025-01-27T13:50:04.013433+00:00","name":"tf-vol-dazzling-blackburn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"14d55807-c24e-4109-9461-4db25ccb30df","name":"tf-srv-jolly-wiles"},"size":10000000000,"state":"available","tags":[],"volume_type":"b_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":"PLAY2-PICO","creation_date":"2025-05-22T15:31:04.954748+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-elated-euclid","id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b0:1d:0b","maintenances":[],"modification_date":"2025-05-22T15:32:40.351722+00:00","name":"tf-srv-elated-euclid","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"d39f8983-965c-483a-a369-d7cbc01448a1","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"891b58c3-d2ec-4983-b28a-8cb483205477","volume_type":"sbs_volume","zone":"fr-par-1"},"2":{"boot":false,"id":"668982ef-3240-4972-a1ca-6a6d1fae9271","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "2320"
+ - "1956"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:50:37 GMT
+ - Thu, 22 May 2025 15:32:40 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -5659,11 +5804,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9fdcfa67-31b6-4257-b66d-c519c23ca096
+ - da8cf638-8f36-4b5c-bd9a-8686cc5621a8
status: 200 OK
code: 200
- duration: 168.168584ms
- - id: 114
+ duration: 241.24028ms
+ - id: 117
request:
proto: HTTP/1.1
proto_major: 1
@@ -5678,8 +5823,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df
+ - scaleway-sdk-go/v1.0.0-beta.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/421a1744-d051-4b78-9fd8-2ef5f6c100df
method: GET
response:
proto: HTTP/2.0
@@ -5687,20 +5832,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 2320
+ content_length: 1956
uncompressed: false
- body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-01-27T13:49:15.595743+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-jolly-wiles","id":"14d55807-c24e-4109-9461-4db25ccb30df","image":{"arch":"x86_64","creation_date":"2024-10-07T11:39:13.069801+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","modification_date":"2024-10-07T11:39:13.069801+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"4eb9437f-8993-444a-b564-f7654add2131","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:90:00:1f","maintenances":[],"modification_date":"2025-01-27T13:50:34.958922+00:00","name":"tf-srv-jolly-wiles","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","volume_type":"sbs_volume","zone":"fr-par-1"},"2":{"boot":false,"creation_date":"2025-01-27T13:50:01.596530+00:00","export_uri":null,"id":"98a430f8-7b42-4577-86df-32e83bfa7ba1","modification_date":"2025-01-27T13:50:04.013433+00:00","name":"tf-vol-dazzling-blackburn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"14d55807-c24e-4109-9461-4db25ccb30df","name":"tf-srv-jolly-wiles"},"size":10000000000,"state":"available","tags":[],"volume_type":"b_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":"PLAY2-PICO","creation_date":"2025-05-22T15:31:04.954748+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-elated-euclid","id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b0:1d:0b","maintenances":[],"modification_date":"2025-05-22T15:32:40.351722+00:00","name":"tf-srv-elated-euclid","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"d39f8983-965c-483a-a369-d7cbc01448a1","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"891b58c3-d2ec-4983-b28a-8cb483205477","volume_type":"sbs_volume","zone":"fr-par-1"},"2":{"boot":false,"id":"668982ef-3240-4972-a1ca-6a6d1fae9271","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
headers:
Content-Length:
- - "2320"
+ - "1956"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:50:37 GMT
+ - Thu, 22 May 2025 15:32:41 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -5708,11 +5853,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e8aaabb3-d9fe-439f-bc33-5b491de37a66
+ - e0adec12-f3b8-466d-a3b8-254e67de2484
status: 200 OK
code: 200
- duration: 181.12225ms
- - id: 115
+ duration: 176.017779ms
+ - id: 118
request:
proto: HTTP/1.1
proto_major: 1
@@ -5727,8 +5872,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df
+ - scaleway-sdk-go/v1.0.0-beta.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/421a1744-d051-4b78-9fd8-2ef5f6c100df
method: DELETE
response:
proto: HTTP/2.0
@@ -5745,9 +5890,9 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:50:38 GMT
+ - Thu, 22 May 2025 15:32:41 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -5755,11 +5900,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 97a074d4-26fb-4327-9914-e34e48a779cd
+ - 77206336-f18b-4c68-a95e-a1d8723eca16
status: 204 No Content
code: 204
- duration: 351.508833ms
- - id: 116
+ duration: 578.955542ms
+ - id: 119
request:
proto: HTTP/1.1
proto_major: 1
@@ -5774,8 +5919,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df
+ - scaleway-sdk-go/v1.0.0-beta.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/421a1744-d051-4b78-9fd8-2ef5f6c100df
method: GET
response:
proto: HTTP/2.0
@@ -5785,7 +5930,7 @@ interactions:
trailer: {}
content_length: 143
uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_server","resource_id":"14d55807-c24e-4109-9461-4db25ccb30df","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"instance_server","resource_id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","type":"not_found"}'
headers:
Content-Length:
- "143"
@@ -5794,9 +5939,9 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:50:38 GMT
+ - Thu, 22 May 2025 15:32:41 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -5804,11 +5949,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9153b992-70ed-48c4-8a9c-15f648ae11e7
+ - 9d9636e2-1633-4338-8edd-523b0299272d
status: 404 Not Found
code: 404
- duration: 91.963417ms
- - id: 117
+ duration: 284.10873ms
+ - id: 120
request:
proto: HTTP/1.1
proto_major: 1
@@ -5823,8 +5968,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3d7e600d-bd4a-4782-9129-1c1401c319cd
+ - scaleway-sdk-go/v1.0.0-beta.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/d39f8983-965c-483a-a369-d7cbc01448a1
method: GET
response:
proto: HTTP/2.0
@@ -5834,7 +5979,7 @@ interactions:
trailer: {}
content_length: 143
uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d39f8983-965c-483a-a369-d7cbc01448a1","type":"not_found"}'
headers:
Content-Length:
- "143"
@@ -5843,9 +5988,9 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:50:38 GMT
+ - Thu, 22 May 2025 15:32:41 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -5853,11 +5998,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e1c11cb5-7a79-4ee0-bca5-e52192e19248
+ - e87e8ec7-d687-4706-b5db-76e4e6ddc600
status: 404 Not Found
code: 404
- duration: 39.858584ms
- - id: 118
+ duration: 123.874502ms
+ - id: 121
request:
proto: HTTP/1.1
proto_major: 1
@@ -5872,8 +6017,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3d7e600d-bd4a-4782-9129-1c1401c319cd
+ - scaleway-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/d39f8983-965c-483a-a369-d7cbc01448a1
method: GET
response:
proto: HTTP/2.0
@@ -5881,20 +6026,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 498
+ content_length: 484
uncompressed: false
- body: '{"created_at":"2025-01-27T13:49:15.792688Z","id":"3d7e600d-bd4a-4782-9129-1c1401c319cd","last_detached_at":"2025-01-27T13:50:38.346581Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"4eb9437f-8993-444a-b564-f7654add2131","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-01-27T13:50:38.346581Z","zone":"fr-par-1"}'
+ body: '{"created_at":"2025-05-22T15:31:05.071179Z","id":"d39f8983-965c-483a-a369-d7cbc01448a1","last_detached_at":"2025-05-22T15:32:41.394170Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-05-22T15:32:41.394170Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "498"
+ - "484"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:50:38 GMT
+ - Thu, 22 May 2025 15:32:42 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -5902,11 +6047,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6b017571-30f7-4e0b-b077-9314b86dc4b1
+ - e23536d8-e1ac-446e-9404-a00f42fac1dd
status: 200 OK
code: 200
- duration: 79.181542ms
- - id: 119
+ duration: 285.978519ms
+ - id: 122
request:
proto: HTTP/1.1
proto_major: 1
@@ -5921,8 +6066,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3d7e600d-bd4a-4782-9129-1c1401c319cd
+ - scaleway-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/d39f8983-965c-483a-a369-d7cbc01448a1
method: DELETE
response:
proto: HTTP/2.0
@@ -5939,9 +6084,9 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:50:38 GMT
+ - Thu, 22 May 2025 15:32:42 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -5949,11 +6094,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6f5418f1-f73f-4e3f-b81c-16a2d6a89d35
+ - 54869ca3-988b-40be-8447-2dc704820140
status: 204 No Content
code: 204
- duration: 135.669458ms
- - id: 120
+ duration: 121.974637ms
+ - id: 123
request:
proto: HTTP/1.1
proto_major: 1
@@ -5968,8 +6113,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ae16abdb-d1dd-46bf-8b5d-dd281cf374ff
+ - scaleway-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/668982ef-3240-4972-a1ca-6a6d1fae9271
method: GET
response:
proto: HTTP/2.0
@@ -5977,20 +6122,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 445
+ content_length: 436
uncompressed: false
- body: '{"created_at":"2025-01-27T13:49:09.632002Z","id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","last_detached_at":"2025-01-27T13:50:38.409248Z","name":"tf-volume-sad-herschel","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-01-27T13:50:38.409248Z","zone":"fr-par-1"}'
+ body: '{"created_at":"2025-05-22T15:32:14.477883Z","id":"668982ef-3240-4972-a1ca-6a6d1fae9271","last_detached_at":"2025-05-22T15:32:41.595792Z","name":"tf-volume-eloquent-darwin","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":15000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-05-22T15:32:41.595792Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "445"
+ - "436"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:50:38 GMT
+ - Thu, 22 May 2025 15:32:42 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -5998,11 +6143,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 97c7201d-54d7-4993-ad10-e5cc5ceb7912
+ - deec23e4-af4f-4418-a794-a7d163a39332
status: 200 OK
code: 200
- duration: 88.084792ms
- - id: 121
+ duration: 59.589731ms
+ - id: 124
request:
proto: HTTP/1.1
proto_major: 1
@@ -6017,8 +6162,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/98a430f8-7b42-4577-86df-32e83bfa7ba1
+ - scaleway-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/891b58c3-d2ec-4983-b28a-8cb483205477
method: GET
response:
proto: HTTP/2.0
@@ -6026,20 +6171,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 447
+ content_length: 430
uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:50:01.596530+00:00","export_uri":null,"id":"98a430f8-7b42-4577-86df-32e83bfa7ba1","modification_date":"2025-01-27T13:50:38.035015+00:00","name":"tf-vol-dazzling-blackburn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
+ body: '{"created_at":"2025-05-22T15:30:58.677558Z","id":"891b58c3-d2ec-4983-b28a-8cb483205477","last_detached_at":"2025-05-22T15:32:41.470060Z","name":"tf-volume-funny-curie","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-05-22T15:32:41.470060Z","zone":"fr-par-1"}'
headers:
Content-Length:
- - "447"
+ - "430"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:50:38 GMT
+ - Thu, 22 May 2025 15:32:42 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -6047,11 +6192,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 06158ba5-cc09-4bd2-80d4-f9c906fc5e6a
+ - 9eb2c14b-4a15-4992-b77c-c04c6cbd52bb
status: 200 OK
code: 200
- duration: 90.2025ms
- - id: 122
+ duration: 121.068826ms
+ - id: 125
request:
proto: HTTP/1.1
proto_major: 1
@@ -6066,8 +6211,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ae16abdb-d1dd-46bf-8b5d-dd281cf374ff
+ - scaleway-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/668982ef-3240-4972-a1ca-6a6d1fae9271
method: DELETE
response:
proto: HTTP/2.0
@@ -6084,9 +6229,9 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:50:38 GMT
+ - Thu, 22 May 2025 15:32:42 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -6094,11 +6239,60 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0fa83955-1441-4ce1-a58f-6b57fb4c1f68
+ - a7e49b5f-389d-4d1e-a86e-36cd7788d87e
status: 204 No Content
code: 204
- duration: 110.742875ms
- - id: 123
+ duration: 159.015531ms
+ - 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.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/668982ef-3240-4972-a1ca-6a6d1fae9271
+ 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":"668982ef-3240-4972-a1ca-6a6d1fae9271","type":"not_found"}'
+ headers:
+ Content-Length:
+ - "127"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 22 May 2025 15:32:42 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-2;edge02)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 9b51e2ed-5cc4-45e5-b2b1-4d4f6be0fae5
+ status: 404 Not Found
+ code: 404
+ duration: 62.038556ms
+ - id: 127
request:
proto: HTTP/1.1
proto_major: 1
@@ -6113,8 +6307,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/98a430f8-7b42-4577-86df-32e83bfa7ba1
+ - scaleway-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/891b58c3-d2ec-4983-b28a-8cb483205477
method: DELETE
response:
proto: HTTP/2.0
@@ -6131,9 +6325,9 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:50:38 GMT
+ - Thu, 22 May 2025 15:32:42 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -6141,11 +6335,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6dacd637-7625-4958-9e1a-062a32b6b668
+ - bf19833a-6c18-4b84-85be-c8705ccdcb17
status: 204 No Content
code: 204
- duration: 162.28825ms
- - id: 124
+ duration: 200.712643ms
+ - id: 128
request:
proto: HTTP/1.1
proto_major: 1
@@ -6160,8 +6354,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ae16abdb-d1dd-46bf-8b5d-dd281cf374ff
+ - scaleway-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/891b58c3-d2ec-4983-b28a-8cb483205477
method: GET
response:
proto: HTTP/2.0
@@ -6171,7 +6365,7 @@ interactions:
trailer: {}
content_length: 127
uncompressed: false
- body: '{"message":"resource is not found","resource":"volume","resource_id":"ae16abdb-d1dd-46bf-8b5d-dd281cf374ff","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"volume","resource_id":"891b58c3-d2ec-4983-b28a-8cb483205477","type":"not_found"}'
headers:
Content-Length:
- "127"
@@ -6180,9 +6374,9 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:50:38 GMT
+ - Thu, 22 May 2025 15:32:42 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -6190,11 +6384,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4cd01a98-3fb5-488f-a876-14536fac2f5f
+ - 707f63ec-9a72-471f-82bb-b61a47b57663
status: 404 Not Found
code: 404
- duration: 59.198833ms
- - id: 125
+ duration: 93.269537ms
+ - id: 129
request:
proto: HTTP/1.1
proto_major: 1
@@ -6209,8 +6403,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14d55807-c24e-4109-9461-4db25ccb30df
+ - scaleway-sdk-go/v1.0.0-beta.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/421a1744-d051-4b78-9fd8-2ef5f6c100df
method: GET
response:
proto: HTTP/2.0
@@ -6220,7 +6414,7 @@ interactions:
trailer: {}
content_length: 143
uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_server","resource_id":"14d55807-c24e-4109-9461-4db25ccb30df","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"instance_server","resource_id":"421a1744-d051-4b78-9fd8-2ef5f6c100df","type":"not_found"}'
headers:
Content-Length:
- "143"
@@ -6229,9 +6423,9 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 27 Jan 2025 13:50:38 GMT
+ - Thu, 22 May 2025 15:32:42 GMT
Server:
- - Scaleway API Gateway (fr-par-3;edge02)
+ - Scaleway API Gateway (fr-par-2;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -6239,7 +6433,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a0bec8ee-f6c5-45cc-88d6-45928bfdc47f
+ - 60c31635-7d30-49dc-a6b3-213efe721b15
status: 404 Not Found
code: 404
- duration: 94.386875ms
+ duration: 94.649887ms
diff --git a/internal/services/instance/testdata/server-root-volume-id.cassette.yaml b/internal/services/instance/testdata/server-root-volume-id.cassette.yaml
deleted file mode 100644
index 836fcc6a8e..0000000000
--- a/internal/services/instance/testdata/server-root-volume-id.cassette.yaml
+++ /dev/null
@@ -1,1248 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 120
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"name":"tf_tests_rootvolume","project":"105bdce1-64c0-48ab-899d-868455867ecf","volume_type":"b_ssd","size":10000000000}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 441
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:52:17.381567+00:00","export_uri":null,"id":"d10b5b08-ce48-4fa8-bd9d-14b47104aa92","modification_date":"2025-01-27T13:52:17.381567+00:00","name":"tf_tests_rootvolume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "441"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:52:17 GMT
- Location:
- - https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d10b5b08-ce48-4fa8-bd9d-14b47104aa92
- 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:
- - 372e8214-dd3c-4e2b-9f83-5d821a7ec430
- status: 201 Created
- code: 201
- duration: 198.365125ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d10b5b08-ce48-4fa8-bd9d-14b47104aa92
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 441
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:52:17.381567+00:00","export_uri":null,"id":"d10b5b08-ce48-4fa8-bd9d-14b47104aa92","modification_date":"2025-01-27T13:52:17.381567+00:00","name":"tf_tests_rootvolume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "441"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:52:17 GMT
- Server:
- - Scaleway API Gateway (fr-par-3;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 34acfbf4-d44d-4024-ab31-cfa0f6acd2ed
- status: 200 OK
- code: 200
- duration: 101.51675ms
- - id: 2
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d10b5b08-ce48-4fa8-bd9d-14b47104aa92
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 441
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:52:17.381567+00:00","export_uri":null,"id":"d10b5b08-ce48-4fa8-bd9d-14b47104aa92","modification_date":"2025-01-27T13:52:17.381567+00:00","name":"tf_tests_rootvolume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "441"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:52:17 GMT
- Server:
- - Scaleway API Gateway (fr-par-3;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 398075aa-17c4-437d-85f0-dea912a47fba
- status: 200 OK
- code: 200
- duration: 89.707875ms
- - id: 3
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 38539
- uncompressed: false
- body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":6710886400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":13421772800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":6710886400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":6710886400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":13421772800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":6710886400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":13421772800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":6710886400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":13421772800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}'
- headers:
- Content-Length:
- - "38539"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:52:17 GMT
- Link:
- - ; rel="next",; 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:
- - 2d364106-8a47-4973-84fb-caf1eeb796df
- X-Total-Count:
- - "68"
- status: 200 OK
- code: 200
- duration: 46.772667ms
- - id: 4
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 14208
- uncompressed: false
- body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":1,"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":200000000000}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":100000000000}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":50000000000}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":25000000000}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":200000000000}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":100000000000}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":50000000000}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":1000000000000,"min_size":500000000000}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":200000000000}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":300000000000}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":400000000000}}}}'
- headers:
- Content-Length:
- - "14208"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:52:17 GMT
- Link:
- - ; rel="first",; rel="previous",; 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:
- - 10af46e0-d848-4370-8f04-767e6f7fabcd
- X-Total-Count:
- - "68"
- status: 200 OK
- code: 200
- duration: 51.886334ms
- - id: 5
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 329
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"name":"tf-srv-keen-williamson","dynamic_ip_required":false,"commercial_type":"DEV1-S","volumes":{"0":{"id":"d10b5b08-ce48-4fa8-bd9d-14b47104aa92","boot":true,"name":"tf-vol-relaxed-clarke"}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["terraform-test","scaleway_instance_server","root_volume"]}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 1574
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-01-27T13:52:18.222282+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-keen-williamson","id":"2abed4fe-d8ca-4dc4-9958-f74a5b634b47","image":null,"ipv6":null,"location":null,"mac_address":"de:00:00:90:01:03","maintenances":[],"modification_date":"2025-01-27T13:52:18.222282+00:00","name":"tf-srv-keen-williamson","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":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":true,"creation_date":"2025-01-27T13:52:17.381567+00:00","export_uri":null,"id":"d10b5b08-ce48-4fa8-bd9d-14b47104aa92","modification_date":"2025-01-27T13:52:18.222282+00:00","name":"tf_tests_rootvolume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"2abed4fe-d8ca-4dc4-9958-f74a5b634b47","name":"tf-srv-keen-williamson"},"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "1574"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:52:18 GMT
- Location:
- - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2abed4fe-d8ca-4dc4-9958-f74a5b634b47
- 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:
- - 6747227f-31d0-43b2-8408-b19ef7c7cd4c
- status: 201 Created
- code: 201
- duration: 701.31075ms
- - id: 6
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2abed4fe-d8ca-4dc4-9958-f74a5b634b47
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 1574
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-01-27T13:52:18.222282+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-keen-williamson","id":"2abed4fe-d8ca-4dc4-9958-f74a5b634b47","image":null,"ipv6":null,"location":null,"mac_address":"de:00:00:90:01:03","maintenances":[],"modification_date":"2025-01-27T13:52:18.222282+00:00","name":"tf-srv-keen-williamson","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":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":true,"creation_date":"2025-01-27T13:52:17.381567+00:00","export_uri":null,"id":"d10b5b08-ce48-4fa8-bd9d-14b47104aa92","modification_date":"2025-01-27T13:52:18.222282+00:00","name":"tf_tests_rootvolume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"2abed4fe-d8ca-4dc4-9958-f74a5b634b47","name":"tf-srv-keen-williamson"},"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "1574"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:52:18 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:
- - 964693b0-ece4-4977-b682-e43de797ffb4
- status: 200 OK
- code: 200
- duration: 133.459708ms
- - id: 7
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2abed4fe-d8ca-4dc4-9958-f74a5b634b47
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 1574
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-01-27T13:52:18.222282+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-keen-williamson","id":"2abed4fe-d8ca-4dc4-9958-f74a5b634b47","image":null,"ipv6":null,"location":null,"mac_address":"de:00:00:90:01:03","maintenances":[],"modification_date":"2025-01-27T13:52:18.222282+00:00","name":"tf-srv-keen-williamson","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":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":true,"creation_date":"2025-01-27T13:52:17.381567+00:00","export_uri":null,"id":"d10b5b08-ce48-4fa8-bd9d-14b47104aa92","modification_date":"2025-01-27T13:52:18.222282+00:00","name":"tf_tests_rootvolume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"2abed4fe-d8ca-4dc4-9958-f74a5b634b47","name":"tf-srv-keen-williamson"},"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "1574"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:52:18 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:
- - 1926b880-bd3b-4e01-9237-0662b50e9a18
- status: 200 OK
- code: 200
- duration: 196.704667ms
- - id: 8
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2abed4fe-d8ca-4dc4-9958-f74a5b634b47
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 1574
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-01-27T13:52:18.222282+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-keen-williamson","id":"2abed4fe-d8ca-4dc4-9958-f74a5b634b47","image":null,"ipv6":null,"location":null,"mac_address":"de:00:00:90:01:03","maintenances":[],"modification_date":"2025-01-27T13:52:18.222282+00:00","name":"tf-srv-keen-williamson","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":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":true,"creation_date":"2025-01-27T13:52:17.381567+00:00","export_uri":null,"id":"d10b5b08-ce48-4fa8-bd9d-14b47104aa92","modification_date":"2025-01-27T13:52:18.222282+00:00","name":"tf_tests_rootvolume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"2abed4fe-d8ca-4dc4-9958-f74a5b634b47","name":"tf-srv-keen-williamson"},"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "1574"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:52:18 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:
- - 9ca9d2aa-26b0-4a9f-b580-1dca0696e008
- status: 200 OK
- code: 200
- duration: 193.796583ms
- - id: 9
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d10b5b08-ce48-4fa8-bd9d-14b47104aa92
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 517
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:52:17.381567+00:00","export_uri":null,"id":"d10b5b08-ce48-4fa8-bd9d-14b47104aa92","modification_date":"2025-01-27T13:52:18.222282+00:00","name":"tf_tests_rootvolume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"2abed4fe-d8ca-4dc4-9958-f74a5b634b47","name":"tf-srv-keen-williamson"},"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "517"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:52:18 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:
- - b500c7a1-db30-467f-ad3a-0898b565fa76
- status: 200 OK
- code: 200
- duration: 99.09325ms
- - id: 10
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2abed4fe-d8ca-4dc4-9958-f74a5b634b47/user_data
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 17
- uncompressed: false
- body: '{"user_data":[]}'
- headers:
- Content-Length:
- - "17"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:52: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:
- - 01f3ee6b-7e24-4153-bd67-5ea0723aebed
- status: 200 OK
- code: 200
- duration: 108.894792ms
- - id: 11
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2abed4fe-d8ca-4dc4-9958-f74a5b634b47/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:
- - Mon, 27 Jan 2025 13:52:19 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:
- - 58fa5866-fc30-4a51-a464-b138471b7f55
- X-Total-Count:
- - "0"
- status: 200 OK
- code: 200
- duration: 84.067875ms
- - id: 12
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2abed4fe-d8ca-4dc4-9958-f74a5b634b47
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 1574
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-01-27T13:52:18.222282+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-keen-williamson","id":"2abed4fe-d8ca-4dc4-9958-f74a5b634b47","image":null,"ipv6":null,"location":null,"mac_address":"de:00:00:90:01:03","maintenances":[],"modification_date":"2025-01-27T13:52:18.222282+00:00","name":"tf-srv-keen-williamson","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":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":true,"creation_date":"2025-01-27T13:52:17.381567+00:00","export_uri":null,"id":"d10b5b08-ce48-4fa8-bd9d-14b47104aa92","modification_date":"2025-01-27T13:52:18.222282+00:00","name":"tf_tests_rootvolume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"2abed4fe-d8ca-4dc4-9958-f74a5b634b47","name":"tf-srv-keen-williamson"},"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "1574"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:52: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:
- - 21443f59-0627-4dba-b911-8a8be424133d
- status: 200 OK
- code: 200
- duration: 140.59075ms
- - id: 13
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d10b5b08-ce48-4fa8-bd9d-14b47104aa92
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 517
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:52:17.381567+00:00","export_uri":null,"id":"d10b5b08-ce48-4fa8-bd9d-14b47104aa92","modification_date":"2025-01-27T13:52:18.222282+00:00","name":"tf_tests_rootvolume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"2abed4fe-d8ca-4dc4-9958-f74a5b634b47","name":"tf-srv-keen-williamson"},"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "517"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:52: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:
- - 50cec43e-8b52-41b4-ab42-a2464652d767
- status: 200 OK
- code: 200
- duration: 81.960333ms
- - id: 14
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2abed4fe-d8ca-4dc4-9958-f74a5b634b47
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 1574
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-01-27T13:52:18.222282+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-keen-williamson","id":"2abed4fe-d8ca-4dc4-9958-f74a5b634b47","image":null,"ipv6":null,"location":null,"mac_address":"de:00:00:90:01:03","maintenances":[],"modification_date":"2025-01-27T13:52:18.222282+00:00","name":"tf-srv-keen-williamson","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":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":true,"creation_date":"2025-01-27T13:52:17.381567+00:00","export_uri":null,"id":"d10b5b08-ce48-4fa8-bd9d-14b47104aa92","modification_date":"2025-01-27T13:52:18.222282+00:00","name":"tf_tests_rootvolume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"2abed4fe-d8ca-4dc4-9958-f74a5b634b47","name":"tf-srv-keen-williamson"},"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "1574"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:52: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:
- - 192c0031-3e54-4df4-a2c2-db3da283df5d
- status: 200 OK
- code: 200
- duration: 135.152208ms
- - id: 15
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d10b5b08-ce48-4fa8-bd9d-14b47104aa92
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 517
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:52:17.381567+00:00","export_uri":null,"id":"d10b5b08-ce48-4fa8-bd9d-14b47104aa92","modification_date":"2025-01-27T13:52:18.222282+00:00","name":"tf_tests_rootvolume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"2abed4fe-d8ca-4dc4-9958-f74a5b634b47","name":"tf-srv-keen-williamson"},"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "517"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:52: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:
- - 7c0ce59b-52e8-457f-bbfb-72d93fa83b0c
- status: 200 OK
- code: 200
- duration: 80.914208ms
- - id: 16
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2abed4fe-d8ca-4dc4-9958-f74a5b634b47/user_data
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 17
- uncompressed: false
- body: '{"user_data":[]}'
- headers:
- Content-Length:
- - "17"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:52: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:
- - db618893-f262-47a2-a8e8-6fbe079e87dd
- status: 200 OK
- code: 200
- duration: 79.165292ms
- - id: 17
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2abed4fe-d8ca-4dc4-9958-f74a5b634b47/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:
- - Mon, 27 Jan 2025 13:52:20 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:
- - b9191f56-c275-4e83-aae4-9d47b75a914a
- X-Total-Count:
- - "0"
- status: 200 OK
- code: 200
- duration: 116.5435ms
- - id: 18
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2abed4fe-d8ca-4dc4-9958-f74a5b634b47
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 1574
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-01-27T13:52:18.222282+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-keen-williamson","id":"2abed4fe-d8ca-4dc4-9958-f74a5b634b47","image":null,"ipv6":null,"location":null,"mac_address":"de:00:00:90:01:03","maintenances":[],"modification_date":"2025-01-27T13:52:18.222282+00:00","name":"tf-srv-keen-williamson","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":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":true,"creation_date":"2025-01-27T13:52:17.381567+00:00","export_uri":null,"id":"d10b5b08-ce48-4fa8-bd9d-14b47104aa92","modification_date":"2025-01-27T13:52:18.222282+00:00","name":"tf_tests_rootvolume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"2abed4fe-d8ca-4dc4-9958-f74a5b634b47","name":"tf-srv-keen-williamson"},"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "1574"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:52: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:
- - 238712d7-6812-4e60-98b2-f2e4a2f66676
- status: 200 OK
- code: 200
- duration: 149.710583ms
- - id: 19
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2abed4fe-d8ca-4dc4-9958-f74a5b634b47
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 1574
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-01-27T13:52:18.222282+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-keen-williamson","id":"2abed4fe-d8ca-4dc4-9958-f74a5b634b47","image":null,"ipv6":null,"location":null,"mac_address":"de:00:00:90:01:03","maintenances":[],"modification_date":"2025-01-27T13:52:18.222282+00:00","name":"tf-srv-keen-williamson","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":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":true,"creation_date":"2025-01-27T13:52:17.381567+00:00","export_uri":null,"id":"d10b5b08-ce48-4fa8-bd9d-14b47104aa92","modification_date":"2025-01-27T13:52:18.222282+00:00","name":"tf_tests_rootvolume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"2abed4fe-d8ca-4dc4-9958-f74a5b634b47","name":"tf-srv-keen-williamson"},"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "1574"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:52: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:
- - 4a0b6e18-d0dd-4d89-bd6c-18ac7a25d11c
- status: 200 OK
- code: 200
- duration: 165.827584ms
- - id: 20
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2abed4fe-d8ca-4dc4-9958-f74a5b634b47
- method: DELETE
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 0
- uncompressed: false
- body: ""
- headers:
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:52: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:
- - 15183ea9-42ed-4f97-a4a1-4db49bc8c8fa
- status: 204 No Content
- code: 204
- duration: 202.175791ms
- - id: 21
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2abed4fe-d8ca-4dc4-9958-f74a5b634b47
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 143
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_server","resource_id":"2abed4fe-d8ca-4dc4-9958-f74a5b634b47","type":"not_found"}'
- headers:
- Content-Length:
- - "143"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:52: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:
- - 388e41b3-a49c-4866-b825-3b4a074c5fd3
- status: 404 Not Found
- code: 404
- duration: 96.537291ms
- - id: 22
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d10b5b08-ce48-4fa8-bd9d-14b47104aa92
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 441
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:52:17.381567+00:00","export_uri":null,"id":"d10b5b08-ce48-4fa8-bd9d-14b47104aa92","modification_date":"2025-01-27T13:52:20.799772+00:00","name":"tf_tests_rootvolume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "441"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:52: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:
- - ba9f2361-942b-4a66-8cf7-0b1cd7a9b97a
- status: 200 OK
- code: 200
- duration: 108.960458ms
- - id: 23
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d10b5b08-ce48-4fa8-bd9d-14b47104aa92
- method: DELETE
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 0
- uncompressed: false
- body: ""
- headers:
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:52: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:
- - 5c1f04da-c3e3-4c6a-9c09-2da15627e774
- status: 204 No Content
- code: 204
- duration: 165.746084ms
- - id: 24
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2abed4fe-d8ca-4dc4-9958-f74a5b634b47
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 143
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_server","resource_id":"2abed4fe-d8ca-4dc4-9958-f74a5b634b47","type":"not_found"}'
- headers:
- Content-Length:
- - "143"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:52: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:
- - 63c1ccf3-4728-4188-b40f-a3a6729acd2e
- status: 404 Not Found
- code: 404
- duration: 135.090208ms
diff --git a/internal/services/instance/testdata/server-server-with-block-non-default-zone.cassette.yaml b/internal/services/instance/testdata/server-server-with-block-non-default-zone.cassette.yaml
deleted file mode 100644
index 7944cb622a..0000000000
--- a/internal/services/instance/testdata/server-server-with-block-non-default-zone.cassette.yaml
+++ /dev/null
@@ -1,2283 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 104
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"name":"main","project":"105bdce1-64c0-48ab-899d-868455867ecf","volume_type":"b_ssd","size":1000000000}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/volumes
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 425
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T14:22:36.236981+00:00","export_uri":null,"id":"43d46d3d-d5e5-48c8-879f-d0af9a680db7","modification_date":"2025-02-11T14:22:36.236981+00:00","name":"main","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":1000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "425"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:35 GMT
- Location:
- - https://api.scaleway.com/instance/v1/zones/nl-ams-1/volumes/43d46d3d-d5e5-48c8-879f-d0af9a680db7
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - e964110f-ea11-4eb2-943c-eca22ad6dead
- status: 201 Created
- code: 201
- duration: 623.383041ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/volumes/43d46d3d-d5e5-48c8-879f-d0af9a680db7
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 425
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T14:22:36.236981+00:00","export_uri":null,"id":"43d46d3d-d5e5-48c8-879f-d0af9a680db7","modification_date":"2025-02-11T14:22:36.236981+00:00","name":"main","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":1000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "425"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:36 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 4b1b72e9-7a44-41bc-b88e-3109bdccf3b1
- status: 200 OK
- code: 200
- duration: 109.188083ms
- - id: 2
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/volumes/43d46d3d-d5e5-48c8-879f-d0af9a680db7
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 425
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T14:22:36.236981+00:00","export_uri":null,"id":"43d46d3d-d5e5-48c8-879f-d0af9a680db7","modification_date":"2025-02-11T14:22:36.236981+00:00","name":"main","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":1000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "425"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:36 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - a588181e-0e43-42ac-9d91-b370a5bfd208
- status: 200 OK
- code: 200
- duration: 121.08175ms
- - id: 3
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/products/servers?page=1
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 35578
- uncompressed: false
- body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":6710886400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":13421772800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":6710886400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":13421772800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":6710886400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":13421772800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":6710886400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":13421772800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}'
- headers:
- Content-Length:
- - "35578"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:36 GMT
- Link:
- - ; rel="next",; rel="last"
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - cf19ca48-7c0f-4a37-89fe-53443697deb9
- X-Total-Count:
- - "62"
- status: 200 OK
- code: 200
- duration: 59.93225ms
- - id: 4
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/products/servers?page=2
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 8921
- uncompressed: false
- body: '{"servers":{"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":200000000000}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":100000000000}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":50000000000}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":25000000000}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":200000000000}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":100000000000}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":50000000000}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":1000000000000,"min_size":500000000000}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":200000000000}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":300000000000}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":400000000000}}}}'
- headers:
- Content-Length:
- - "8921"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:36 GMT
- Link:
- - ; rel="first",; rel="previous",; rel="last"
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - b0b5c300-8922-4c00-a68f-7af737e64ca7
- X-Total-Count:
- - "62"
- status: 200 OK
- code: 200
- duration: 55.765416ms
- - id: 5
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/volumes/43d46d3d-d5e5-48c8-879f-d0af9a680db7
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 425
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T14:22:36.236981+00:00","export_uri":null,"id":"43d46d3d-d5e5-48c8-879f-d0af9a680db7","modification_date":"2025-02-11T14:22:36.236981+00:00","name":"main","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":1000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "425"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:36 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - b78ee945-75eb-43e5-b205-4394f14c11ff
- status: 200 OK
- code: 200
- duration: 107.554917ms
- - id: 6
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=nl-ams-1
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 1296
- uncompressed: false
- body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["AMP2-C1","AMP2-C2","AMP2-C4","AMP2-C8","AMP2-C12","AMP2-C24","AMP2-C48","AMP2-C60","COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"26cfb16a-ceae-420b-95e4-03dbfe6d5291","label":"ubuntu_focal","type":"instance_sbs","zone":"nl-ams-1"},{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"71fbae84-e539-43e3-b005-10d1fb69ea99","label":"ubuntu_focal","type":"instance_sbs","zone":"nl-ams-1"}],"total_count":2}'
- headers:
- Content-Length:
- - "1296"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:36 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - c5d19d2e-fbaf-42ca-a3a1-164a3142b050
- status: 200 OK
- code: 200
- duration: 93.843709ms
- - id: 7
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 313
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"name":"tf-srv-bold-hertz","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"71fbae84-e539-43e3-b005-10d1fb69ea99","volumes":{"0":{"boot":false,"size":20000000000},"1":{"id":"43d46d3d-d5e5-48c8-879f-d0af9a680db7","name":"main"}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/servers
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2170
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.347282+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-bold-hertz","id":"3ded52fe-89a1-44b2-a06e-3152cc12605c","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:22.717411+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"71fbae84-e539-43e3-b005-10d1fb69ea99","modification_date":"2024-10-14T09:05:22.717411+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":"f7bbdae8-5ab4-4536-bcdc-cd613f449c86","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"nl-ams-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:42:a0:05","maintenances":[],"modification_date":"2025-02-11T14:22:37.347282+00:00","name":"tf-srv-bold-hertz","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":"d19f1a5a-7605-4ed3-8cf0-0e93a7889d7b","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"89136d0f-11b8-4f5f-8db2-c0778ee5fed8","volume_type":"sbs_volume","zone":"nl-ams-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.236981+00:00","export_uri":null,"id":"43d46d3d-d5e5-48c8-879f-d0af9a680db7","modification_date":"2025-02-11T14:22:37.347282+00:00","name":"main","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3ded52fe-89a1-44b2-a06e-3152cc12605c","name":"tf-srv-bold-hertz"},"size":1000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"nl-ams-1"}},"zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "2170"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:37 GMT
- Location:
- - https://api.scaleway.com/instance/v1/zones/nl-ams-1/servers/3ded52fe-89a1-44b2-a06e-3152cc12605c
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 39b0e814-0d20-4934-bd44-4c78ef357167
- status: 201 Created
- code: 201
- duration: 1.207823834s
- - id: 8
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/servers/3ded52fe-89a1-44b2-a06e-3152cc12605c
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2170
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.347282+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-bold-hertz","id":"3ded52fe-89a1-44b2-a06e-3152cc12605c","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:22.717411+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"71fbae84-e539-43e3-b005-10d1fb69ea99","modification_date":"2024-10-14T09:05:22.717411+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":"f7bbdae8-5ab4-4536-bcdc-cd613f449c86","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"nl-ams-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:42:a0:05","maintenances":[],"modification_date":"2025-02-11T14:22:37.347282+00:00","name":"tf-srv-bold-hertz","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":"d19f1a5a-7605-4ed3-8cf0-0e93a7889d7b","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"89136d0f-11b8-4f5f-8db2-c0778ee5fed8","volume_type":"sbs_volume","zone":"nl-ams-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.236981+00:00","export_uri":null,"id":"43d46d3d-d5e5-48c8-879f-d0af9a680db7","modification_date":"2025-02-11T14:22:37.347282+00:00","name":"main","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3ded52fe-89a1-44b2-a06e-3152cc12605c","name":"tf-srv-bold-hertz"},"size":1000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"nl-ams-1"}},"zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "2170"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:38 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 9b6785b6-1c3f-4cf2-823a-9e72828dfda7
- status: 200 OK
- code: 200
- duration: 209.752417ms
- - id: 9
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/servers/3ded52fe-89a1-44b2-a06e-3152cc12605c
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2170
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.347282+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-bold-hertz","id":"3ded52fe-89a1-44b2-a06e-3152cc12605c","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:22.717411+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"71fbae84-e539-43e3-b005-10d1fb69ea99","modification_date":"2024-10-14T09:05:22.717411+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":"f7bbdae8-5ab4-4536-bcdc-cd613f449c86","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"nl-ams-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:42:a0:05","maintenances":[],"modification_date":"2025-02-11T14:22:37.347282+00:00","name":"tf-srv-bold-hertz","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":"d19f1a5a-7605-4ed3-8cf0-0e93a7889d7b","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"89136d0f-11b8-4f5f-8db2-c0778ee5fed8","volume_type":"sbs_volume","zone":"nl-ams-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.236981+00:00","export_uri":null,"id":"43d46d3d-d5e5-48c8-879f-d0af9a680db7","modification_date":"2025-02-11T14:22:37.347282+00:00","name":"main","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3ded52fe-89a1-44b2-a06e-3152cc12605c","name":"tf-srv-bold-hertz"},"size":1000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"nl-ams-1"}},"zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "2170"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:38 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 06320b0f-e298-4fdb-836b-a94d9d3cd61f
- status: 200 OK
- code: 200
- duration: 207.77625ms
- - id: 10
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/nl-ams-1/volumes/89136d0f-11b8-4f5f-8db2-c0778ee5fed8
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 701
- uncompressed: false
- body: '{"created_at":"2025-02-11T14:22:37.576522Z","id":"89136d0f-11b8-4f5f-8db2-c0778ee5fed8","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"f7bbdae8-5ab4-4536-bcdc-cd613f449c86","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-02-11T14:22:37.576522Z","id":"0f4a0987-2f4f-4ff0-a6ad-a9b9b03820d7","product_resource_id":"3ded52fe-89a1-44b2-a06e-3152cc12605c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-02-11T14:22:37.576522Z","zone":"nl-ams-1"}'
- headers:
- Content-Length:
- - "701"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:38 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 32d3940a-2163-4613-b2b9-471ba53a4482
- status: 200 OK
- code: 200
- duration: 87.23875ms
- - id: 11
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 20
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"action":"poweron"}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/servers/3ded52fe-89a1-44b2-a06e-3152cc12605c/action
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 357
- uncompressed: false
- body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/3ded52fe-89a1-44b2-a06e-3152cc12605c/action","href_result":"/servers/3ded52fe-89a1-44b2-a06e-3152cc12605c","id":"f2d574b7-8da2-4005-bf67-11d7ff5d7f9f","progress":0,"started_at":"2025-02-11T14:22:38.868812+00:00","status":"pending","terminated_at":null,"zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "357"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:38 GMT
- Location:
- - https://api.scaleway.com/instance/v1/zones/nl-ams-1/tasks/f2d574b7-8da2-4005-bf67-11d7ff5d7f9f
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 6bd985f5-9a59-418d-be10-9ce3cb6e42b1
- status: 202 Accepted
- code: 202
- duration: 306.12475ms
- - id: 12
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/servers/3ded52fe-89a1-44b2-a06e-3152cc12605c
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2192
- uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.347282+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-bold-hertz","id":"3ded52fe-89a1-44b2-a06e-3152cc12605c","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:22.717411+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"71fbae84-e539-43e3-b005-10d1fb69ea99","modification_date":"2024-10-14T09:05:22.717411+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":"f7bbdae8-5ab4-4536-bcdc-cd613f449c86","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"nl-ams-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:42:a0:05","maintenances":[],"modification_date":"2025-02-11T14:22:38.638786+00:00","name":"tf-srv-bold-hertz","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":"d19f1a5a-7605-4ed3-8cf0-0e93a7889d7b","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"89136d0f-11b8-4f5f-8db2-c0778ee5fed8","volume_type":"sbs_volume","zone":"nl-ams-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.236981+00:00","export_uri":null,"id":"43d46d3d-d5e5-48c8-879f-d0af9a680db7","modification_date":"2025-02-11T14:22:37.347282+00:00","name":"main","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3ded52fe-89a1-44b2-a06e-3152cc12605c","name":"tf-srv-bold-hertz"},"size":1000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"nl-ams-1"}},"zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "2192"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:38 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - daa4f838-8b91-4422-b5ac-3969d5c10dde
- status: 200 OK
- code: 200
- duration: 202.927ms
- - id: 13
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/servers/3ded52fe-89a1-44b2-a06e-3152cc12605c
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2327
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.347282+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-bold-hertz","id":"3ded52fe-89a1-44b2-a06e-3152cc12605c","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:22.717411+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"71fbae84-e539-43e3-b005-10d1fb69ea99","modification_date":"2024-10-14T09:05:22.717411+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":"f7bbdae8-5ab4-4536-bcdc-cd613f449c86","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"nl-ams-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1401","node_id":"15","platform_id":"23","zone_id":"nl-ams-1"},"mac_address":"de:00:00:42:a0:05","maintenances":[],"modification_date":"2025-02-11T14:22:43.913581+00:00","name":"tf-srv-bold-hertz","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":"d19f1a5a-7605-4ed3-8cf0-0e93a7889d7b","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"89136d0f-11b8-4f5f-8db2-c0778ee5fed8","volume_type":"sbs_volume","zone":"nl-ams-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.236981+00:00","export_uri":null,"id":"43d46d3d-d5e5-48c8-879f-d0af9a680db7","modification_date":"2025-02-11T14:22:37.347282+00:00","name":"main","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3ded52fe-89a1-44b2-a06e-3152cc12605c","name":"tf-srv-bold-hertz"},"size":1000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"nl-ams-1"}},"zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "2327"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:44 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - b9af2b08-4edc-4f28-b21f-0e4ce9749927
- status: 200 OK
- code: 200
- duration: 219.496ms
- - id: 14
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/servers/3ded52fe-89a1-44b2-a06e-3152cc12605c
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2327
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.347282+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-bold-hertz","id":"3ded52fe-89a1-44b2-a06e-3152cc12605c","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:22.717411+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"71fbae84-e539-43e3-b005-10d1fb69ea99","modification_date":"2024-10-14T09:05:22.717411+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":"f7bbdae8-5ab4-4536-bcdc-cd613f449c86","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"nl-ams-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1401","node_id":"15","platform_id":"23","zone_id":"nl-ams-1"},"mac_address":"de:00:00:42:a0:05","maintenances":[],"modification_date":"2025-02-11T14:22:43.913581+00:00","name":"tf-srv-bold-hertz","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":"d19f1a5a-7605-4ed3-8cf0-0e93a7889d7b","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"89136d0f-11b8-4f5f-8db2-c0778ee5fed8","volume_type":"sbs_volume","zone":"nl-ams-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.236981+00:00","export_uri":null,"id":"43d46d3d-d5e5-48c8-879f-d0af9a680db7","modification_date":"2025-02-11T14:22:37.347282+00:00","name":"main","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3ded52fe-89a1-44b2-a06e-3152cc12605c","name":"tf-srv-bold-hertz"},"size":1000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"nl-ams-1"}},"zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "2327"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:44 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 2e675630-cd8b-4e5f-ad73-e2b4ccf181d3
- status: 200 OK
- code: 200
- duration: 205.802583ms
- - id: 15
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/volumes/89136d0f-11b8-4f5f-8db2-c0778ee5fed8
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 143
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"89136d0f-11b8-4f5f-8db2-c0778ee5fed8","type":"not_found"}'
- headers:
- Content-Length:
- - "143"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:44 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 196ed188-cd7a-4421-8281-da7261ad15de
- status: 404 Not Found
- code: 404
- duration: 61.532208ms
- - id: 16
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/nl-ams-1/volumes/89136d0f-11b8-4f5f-8db2-c0778ee5fed8
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 701
- uncompressed: false
- body: '{"created_at":"2025-02-11T14:22:37.576522Z","id":"89136d0f-11b8-4f5f-8db2-c0778ee5fed8","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"f7bbdae8-5ab4-4536-bcdc-cd613f449c86","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-02-11T14:22:37.576522Z","id":"0f4a0987-2f4f-4ff0-a6ad-a9b9b03820d7","product_resource_id":"3ded52fe-89a1-44b2-a06e-3152cc12605c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-02-11T14:22:37.576522Z","zone":"nl-ams-1"}'
- headers:
- Content-Length:
- - "701"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:44 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - c34f8e68-5612-44b0-bc5a-6390f508b88d
- status: 200 OK
- code: 200
- duration: 91.449625ms
- - id: 17
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/servers/3ded52fe-89a1-44b2-a06e-3152cc12605c/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:
- - Tue, 11 Feb 2025 14:22:44 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 0576ef58-1eb2-4c1d-92d7-6c4e0e2e383a
- status: 200 OK
- code: 200
- duration: 123.145833ms
- - id: 18
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/servers/3ded52fe-89a1-44b2-a06e-3152cc12605c/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:
- - Tue, 11 Feb 2025 14:22:44 GMT
- Link:
- - ; rel="last"
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 5de42c90-f1c6-4da2-9ac9-4f2a7c0bbf2a
- X-Total-Count:
- - "0"
- status: 200 OK
- code: 200
- duration: 123.15625ms
- - id: 19
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/servers/3ded52fe-89a1-44b2-a06e-3152cc12605c
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2327
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.347282+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-bold-hertz","id":"3ded52fe-89a1-44b2-a06e-3152cc12605c","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:22.717411+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"71fbae84-e539-43e3-b005-10d1fb69ea99","modification_date":"2024-10-14T09:05:22.717411+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":"f7bbdae8-5ab4-4536-bcdc-cd613f449c86","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"nl-ams-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1401","node_id":"15","platform_id":"23","zone_id":"nl-ams-1"},"mac_address":"de:00:00:42:a0:05","maintenances":[],"modification_date":"2025-02-11T14:22:43.913581+00:00","name":"tf-srv-bold-hertz","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":"d19f1a5a-7605-4ed3-8cf0-0e93a7889d7b","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"89136d0f-11b8-4f5f-8db2-c0778ee5fed8","volume_type":"sbs_volume","zone":"nl-ams-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.236981+00:00","export_uri":null,"id":"43d46d3d-d5e5-48c8-879f-d0af9a680db7","modification_date":"2025-02-11T14:22:37.347282+00:00","name":"main","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3ded52fe-89a1-44b2-a06e-3152cc12605c","name":"tf-srv-bold-hertz"},"size":1000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"nl-ams-1"}},"zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "2327"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:45 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 001db143-d47f-4899-aaea-edc415208e93
- status: 200 OK
- code: 200
- duration: 176.142625ms
- - id: 20
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/volumes/43d46d3d-d5e5-48c8-879f-d0af9a680db7
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 496
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T14:22:36.236981+00:00","export_uri":null,"id":"43d46d3d-d5e5-48c8-879f-d0af9a680db7","modification_date":"2025-02-11T14:22:37.347282+00:00","name":"main","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3ded52fe-89a1-44b2-a06e-3152cc12605c","name":"tf-srv-bold-hertz"},"size":1000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "496"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:45 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 8e262b95-4f6f-474d-b73b-93929fceec10
- status: 200 OK
- code: 200
- duration: 107.39375ms
- - id: 21
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/servers/3ded52fe-89a1-44b2-a06e-3152cc12605c
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2327
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.347282+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-bold-hertz","id":"3ded52fe-89a1-44b2-a06e-3152cc12605c","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:22.717411+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"71fbae84-e539-43e3-b005-10d1fb69ea99","modification_date":"2024-10-14T09:05:22.717411+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":"f7bbdae8-5ab4-4536-bcdc-cd613f449c86","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"nl-ams-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1401","node_id":"15","platform_id":"23","zone_id":"nl-ams-1"},"mac_address":"de:00:00:42:a0:05","maintenances":[],"modification_date":"2025-02-11T14:22:43.913581+00:00","name":"tf-srv-bold-hertz","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":"d19f1a5a-7605-4ed3-8cf0-0e93a7889d7b","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"89136d0f-11b8-4f5f-8db2-c0778ee5fed8","volume_type":"sbs_volume","zone":"nl-ams-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.236981+00:00","export_uri":null,"id":"43d46d3d-d5e5-48c8-879f-d0af9a680db7","modification_date":"2025-02-11T14:22:37.347282+00:00","name":"main","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3ded52fe-89a1-44b2-a06e-3152cc12605c","name":"tf-srv-bold-hertz"},"size":1000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"nl-ams-1"}},"zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "2327"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:45 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - c7b604f2-11ae-4b4c-8311-d5ee97b883c6
- status: 200 OK
- code: 200
- duration: 171.43775ms
- - id: 22
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/volumes/89136d0f-11b8-4f5f-8db2-c0778ee5fed8
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 143
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"89136d0f-11b8-4f5f-8db2-c0778ee5fed8","type":"not_found"}'
- headers:
- Content-Length:
- - "143"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:45 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 50cc9de4-0f44-4540-b0d8-3c2ca4a169a6
- status: 404 Not Found
- code: 404
- duration: 58.847208ms
- - id: 23
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/nl-ams-1/volumes/89136d0f-11b8-4f5f-8db2-c0778ee5fed8
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 701
- uncompressed: false
- body: '{"created_at":"2025-02-11T14:22:37.576522Z","id":"89136d0f-11b8-4f5f-8db2-c0778ee5fed8","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"f7bbdae8-5ab4-4536-bcdc-cd613f449c86","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-02-11T14:22:37.576522Z","id":"0f4a0987-2f4f-4ff0-a6ad-a9b9b03820d7","product_resource_id":"3ded52fe-89a1-44b2-a06e-3152cc12605c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-02-11T14:22:37.576522Z","zone":"nl-ams-1"}'
- headers:
- Content-Length:
- - "701"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:45 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 8dd9ffe9-9eed-4cf8-9cd7-eb9e25147ad6
- status: 200 OK
- code: 200
- duration: 90.776708ms
- - id: 24
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/servers/3ded52fe-89a1-44b2-a06e-3152cc12605c/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:
- - Tue, 11 Feb 2025 14:22:45 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 50c1cbaa-f125-4f1a-b382-c329cc6dd702
- status: 200 OK
- code: 200
- duration: 114.274208ms
- - id: 25
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/servers/3ded52fe-89a1-44b2-a06e-3152cc12605c/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:
- - Tue, 11 Feb 2025 14:22:45 GMT
- Link:
- - ; rel="last"
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - b48413cb-8e8e-41bd-9bf3-4a58e35e0bbe
- X-Total-Count:
- - "0"
- status: 200 OK
- code: 200
- duration: 122.309792ms
- - id: 26
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/servers/3ded52fe-89a1-44b2-a06e-3152cc12605c
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2327
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.347282+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-bold-hertz","id":"3ded52fe-89a1-44b2-a06e-3152cc12605c","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:22.717411+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"71fbae84-e539-43e3-b005-10d1fb69ea99","modification_date":"2024-10-14T09:05:22.717411+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":"f7bbdae8-5ab4-4536-bcdc-cd613f449c86","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"nl-ams-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1401","node_id":"15","platform_id":"23","zone_id":"nl-ams-1"},"mac_address":"de:00:00:42:a0:05","maintenances":[],"modification_date":"2025-02-11T14:22:43.913581+00:00","name":"tf-srv-bold-hertz","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":"d19f1a5a-7605-4ed3-8cf0-0e93a7889d7b","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"89136d0f-11b8-4f5f-8db2-c0778ee5fed8","volume_type":"sbs_volume","zone":"nl-ams-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.236981+00:00","export_uri":null,"id":"43d46d3d-d5e5-48c8-879f-d0af9a680db7","modification_date":"2025-02-11T14:22:37.347282+00:00","name":"main","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3ded52fe-89a1-44b2-a06e-3152cc12605c","name":"tf-srv-bold-hertz"},"size":1000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"nl-ams-1"}},"zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "2327"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:46 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - e6dfc497-f766-4024-86bd-02cc243ff5af
- status: 200 OK
- code: 200
- duration: 258.262625ms
- - id: 27
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/nl-ams-1/volumes/89136d0f-11b8-4f5f-8db2-c0778ee5fed8
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 701
- uncompressed: false
- body: '{"created_at":"2025-02-11T14:22:37.576522Z","id":"89136d0f-11b8-4f5f-8db2-c0778ee5fed8","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"f7bbdae8-5ab4-4536-bcdc-cd613f449c86","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-02-11T14:22:37.576522Z","id":"0f4a0987-2f4f-4ff0-a6ad-a9b9b03820d7","product_resource_id":"3ded52fe-89a1-44b2-a06e-3152cc12605c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-02-11T14:22:37.576522Z","zone":"nl-ams-1"}'
- headers:
- Content-Length:
- - "701"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:46 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 8e88905f-65fd-4ffc-8897-721bdc1f0678
- status: 200 OK
- code: 200
- duration: 89.796917ms
- - id: 28
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 21
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"action":"poweroff"}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/servers/3ded52fe-89a1-44b2-a06e-3152cc12605c/action
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 352
- uncompressed: false
- body: '{"task":{"description":"server_poweroff","href_from":"/servers/3ded52fe-89a1-44b2-a06e-3152cc12605c/action","href_result":"/servers/3ded52fe-89a1-44b2-a06e-3152cc12605c","id":"1c6f2d33-f844-4577-8bc9-94a9221f2292","progress":0,"started_at":"2025-02-11T14:22:47.161886+00:00","status":"pending","terminated_at":null,"zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "352"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:47 GMT
- Location:
- - https://api.scaleway.com/instance/v1/zones/nl-ams-1/tasks/1c6f2d33-f844-4577-8bc9-94a9221f2292
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 490de444-8d6f-4ad5-b9b7-3713e0414b4a
- status: 202 Accepted
- code: 202
- duration: 513.368208ms
- - id: 29
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/servers/3ded52fe-89a1-44b2-a06e-3152cc12605c
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2287
- uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.347282+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-bold-hertz","id":"3ded52fe-89a1-44b2-a06e-3152cc12605c","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:22.717411+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"71fbae84-e539-43e3-b005-10d1fb69ea99","modification_date":"2024-10-14T09:05:22.717411+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":"f7bbdae8-5ab4-4536-bcdc-cd613f449c86","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"nl-ams-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1401","node_id":"15","platform_id":"23","zone_id":"nl-ams-1"},"mac_address":"de:00:00:42:a0:05","maintenances":[],"modification_date":"2025-02-11T14:22:46.732791+00:00","name":"tf-srv-bold-hertz","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":"d19f1a5a-7605-4ed3-8cf0-0e93a7889d7b","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"89136d0f-11b8-4f5f-8db2-c0778ee5fed8","volume_type":"sbs_volume","zone":"nl-ams-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.236981+00:00","export_uri":null,"id":"43d46d3d-d5e5-48c8-879f-d0af9a680db7","modification_date":"2025-02-11T14:22:37.347282+00:00","name":"main","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3ded52fe-89a1-44b2-a06e-3152cc12605c","name":"tf-srv-bold-hertz"},"size":1000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"nl-ams-1"}},"zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "2287"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:47 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 2773d0b0-b595-4857-9596-bd52e400487e
- status: 200 OK
- code: 200
- duration: 191.481083ms
- - id: 30
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/servers/3ded52fe-89a1-44b2-a06e-3152cc12605c
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2287
- uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.347282+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-bold-hertz","id":"3ded52fe-89a1-44b2-a06e-3152cc12605c","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:22.717411+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"71fbae84-e539-43e3-b005-10d1fb69ea99","modification_date":"2024-10-14T09:05:22.717411+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":"f7bbdae8-5ab4-4536-bcdc-cd613f449c86","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"nl-ams-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1401","node_id":"15","platform_id":"23","zone_id":"nl-ams-1"},"mac_address":"de:00:00:42:a0:05","maintenances":[],"modification_date":"2025-02-11T14:22:46.732791+00:00","name":"tf-srv-bold-hertz","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":"d19f1a5a-7605-4ed3-8cf0-0e93a7889d7b","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"89136d0f-11b8-4f5f-8db2-c0778ee5fed8","volume_type":"sbs_volume","zone":"nl-ams-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.236981+00:00","export_uri":null,"id":"43d46d3d-d5e5-48c8-879f-d0af9a680db7","modification_date":"2025-02-11T14:22:37.347282+00:00","name":"main","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3ded52fe-89a1-44b2-a06e-3152cc12605c","name":"tf-srv-bold-hertz"},"size":1000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"nl-ams-1"}},"zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "2287"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:52 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 0b6ded48-99e6-4cd7-9a03-ca4433536477
- status: 200 OK
- code: 200
- duration: 219.662833ms
- - id: 31
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/servers/3ded52fe-89a1-44b2-a06e-3152cc12605c
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2287
- uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.347282+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-bold-hertz","id":"3ded52fe-89a1-44b2-a06e-3152cc12605c","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:22.717411+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"71fbae84-e539-43e3-b005-10d1fb69ea99","modification_date":"2024-10-14T09:05:22.717411+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":"f7bbdae8-5ab4-4536-bcdc-cd613f449c86","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"nl-ams-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1401","node_id":"15","platform_id":"23","zone_id":"nl-ams-1"},"mac_address":"de:00:00:42:a0:05","maintenances":[],"modification_date":"2025-02-11T14:22:46.732791+00:00","name":"tf-srv-bold-hertz","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":"d19f1a5a-7605-4ed3-8cf0-0e93a7889d7b","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"89136d0f-11b8-4f5f-8db2-c0778ee5fed8","volume_type":"sbs_volume","zone":"nl-ams-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.236981+00:00","export_uri":null,"id":"43d46d3d-d5e5-48c8-879f-d0af9a680db7","modification_date":"2025-02-11T14:22:37.347282+00:00","name":"main","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3ded52fe-89a1-44b2-a06e-3152cc12605c","name":"tf-srv-bold-hertz"},"size":1000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"nl-ams-1"}},"zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "2287"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:57 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 372014cd-ceae-4a90-95cb-7885930414b4
- status: 200 OK
- code: 200
- duration: 214.656834ms
- - id: 32
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/servers/3ded52fe-89a1-44b2-a06e-3152cc12605c
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2287
- uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.347282+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-bold-hertz","id":"3ded52fe-89a1-44b2-a06e-3152cc12605c","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:22.717411+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"71fbae84-e539-43e3-b005-10d1fb69ea99","modification_date":"2024-10-14T09:05:22.717411+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":"f7bbdae8-5ab4-4536-bcdc-cd613f449c86","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"nl-ams-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1401","node_id":"15","platform_id":"23","zone_id":"nl-ams-1"},"mac_address":"de:00:00:42:a0:05","maintenances":[],"modification_date":"2025-02-11T14:22:46.732791+00:00","name":"tf-srv-bold-hertz","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":"d19f1a5a-7605-4ed3-8cf0-0e93a7889d7b","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"89136d0f-11b8-4f5f-8db2-c0778ee5fed8","volume_type":"sbs_volume","zone":"nl-ams-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.236981+00:00","export_uri":null,"id":"43d46d3d-d5e5-48c8-879f-d0af9a680db7","modification_date":"2025-02-11T14:22:37.347282+00:00","name":"main","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3ded52fe-89a1-44b2-a06e-3152cc12605c","name":"tf-srv-bold-hertz"},"size":1000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"nl-ams-1"}},"zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "2287"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:23:02 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 3d83e794-c270-4fe6-8535-0187b393c514
- status: 200 OK
- code: 200
- duration: 196.069333ms
- - id: 33
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/servers/3ded52fe-89a1-44b2-a06e-3152cc12605c
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2287
- uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.347282+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-bold-hertz","id":"3ded52fe-89a1-44b2-a06e-3152cc12605c","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:22.717411+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"71fbae84-e539-43e3-b005-10d1fb69ea99","modification_date":"2024-10-14T09:05:22.717411+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":"f7bbdae8-5ab4-4536-bcdc-cd613f449c86","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"nl-ams-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1401","node_id":"15","platform_id":"23","zone_id":"nl-ams-1"},"mac_address":"de:00:00:42:a0:05","maintenances":[],"modification_date":"2025-02-11T14:22:46.732791+00:00","name":"tf-srv-bold-hertz","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":"d19f1a5a-7605-4ed3-8cf0-0e93a7889d7b","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"89136d0f-11b8-4f5f-8db2-c0778ee5fed8","volume_type":"sbs_volume","zone":"nl-ams-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.236981+00:00","export_uri":null,"id":"43d46d3d-d5e5-48c8-879f-d0af9a680db7","modification_date":"2025-02-11T14:22:37.347282+00:00","name":"main","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3ded52fe-89a1-44b2-a06e-3152cc12605c","name":"tf-srv-bold-hertz"},"size":1000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"nl-ams-1"}},"zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "2287"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:23:08 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 6419b480-8aa2-4d45-8f4e-dd444887a27c
- status: 200 OK
- code: 200
- duration: 204.390542ms
- - id: 34
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/servers/3ded52fe-89a1-44b2-a06e-3152cc12605c
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2287
- uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.347282+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-bold-hertz","id":"3ded52fe-89a1-44b2-a06e-3152cc12605c","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:22.717411+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"71fbae84-e539-43e3-b005-10d1fb69ea99","modification_date":"2024-10-14T09:05:22.717411+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":"f7bbdae8-5ab4-4536-bcdc-cd613f449c86","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"nl-ams-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1401","node_id":"15","platform_id":"23","zone_id":"nl-ams-1"},"mac_address":"de:00:00:42:a0:05","maintenances":[],"modification_date":"2025-02-11T14:22:46.732791+00:00","name":"tf-srv-bold-hertz","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":"d19f1a5a-7605-4ed3-8cf0-0e93a7889d7b","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"89136d0f-11b8-4f5f-8db2-c0778ee5fed8","volume_type":"sbs_volume","zone":"nl-ams-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.236981+00:00","export_uri":null,"id":"43d46d3d-d5e5-48c8-879f-d0af9a680db7","modification_date":"2025-02-11T14:22:37.347282+00:00","name":"main","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3ded52fe-89a1-44b2-a06e-3152cc12605c","name":"tf-srv-bold-hertz"},"size":1000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"nl-ams-1"}},"zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "2287"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:23:13 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 2b903d21-88b5-46a3-9177-f28a6f71af69
- status: 200 OK
- code: 200
- duration: 205.883625ms
- - id: 35
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/servers/3ded52fe-89a1-44b2-a06e-3152cc12605c
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2287
- uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.347282+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-bold-hertz","id":"3ded52fe-89a1-44b2-a06e-3152cc12605c","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:22.717411+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"71fbae84-e539-43e3-b005-10d1fb69ea99","modification_date":"2024-10-14T09:05:22.717411+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":"f7bbdae8-5ab4-4536-bcdc-cd613f449c86","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"nl-ams-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1401","node_id":"15","platform_id":"23","zone_id":"nl-ams-1"},"mac_address":"de:00:00:42:a0:05","maintenances":[],"modification_date":"2025-02-11T14:22:46.732791+00:00","name":"tf-srv-bold-hertz","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":"d19f1a5a-7605-4ed3-8cf0-0e93a7889d7b","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"89136d0f-11b8-4f5f-8db2-c0778ee5fed8","volume_type":"sbs_volume","zone":"nl-ams-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.236981+00:00","export_uri":null,"id":"43d46d3d-d5e5-48c8-879f-d0af9a680db7","modification_date":"2025-02-11T14:22:37.347282+00:00","name":"main","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3ded52fe-89a1-44b2-a06e-3152cc12605c","name":"tf-srv-bold-hertz"},"size":1000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"nl-ams-1"}},"zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "2287"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:23:18 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 051a065f-a029-4aeb-8d75-2a8ccab19266
- status: 200 OK
- code: 200
- duration: 404.9955ms
- - id: 36
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/servers/3ded52fe-89a1-44b2-a06e-3152cc12605c
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2170
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.347282+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-bold-hertz","id":"3ded52fe-89a1-44b2-a06e-3152cc12605c","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:22.717411+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"71fbae84-e539-43e3-b005-10d1fb69ea99","modification_date":"2024-10-14T09:05:22.717411+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":"f7bbdae8-5ab4-4536-bcdc-cd613f449c86","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"nl-ams-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:42:a0:05","maintenances":[],"modification_date":"2025-02-11T14:23:20.377551+00:00","name":"tf-srv-bold-hertz","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":"d19f1a5a-7605-4ed3-8cf0-0e93a7889d7b","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"89136d0f-11b8-4f5f-8db2-c0778ee5fed8","volume_type":"sbs_volume","zone":"nl-ams-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.236981+00:00","export_uri":null,"id":"43d46d3d-d5e5-48c8-879f-d0af9a680db7","modification_date":"2025-02-11T14:22:37.347282+00:00","name":"main","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3ded52fe-89a1-44b2-a06e-3152cc12605c","name":"tf-srv-bold-hertz"},"size":1000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"nl-ams-1"}},"zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "2170"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:23:23 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - c2c8ac67-1a59-4bfd-8a79-47d4c3166238
- status: 200 OK
- code: 200
- duration: 174.576375ms
- - id: 37
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/servers/3ded52fe-89a1-44b2-a06e-3152cc12605c
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2170
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.347282+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-bold-hertz","id":"3ded52fe-89a1-44b2-a06e-3152cc12605c","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:22.717411+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"71fbae84-e539-43e3-b005-10d1fb69ea99","modification_date":"2024-10-14T09:05:22.717411+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":"f7bbdae8-5ab4-4536-bcdc-cd613f449c86","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"nl-ams-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:42:a0:05","maintenances":[],"modification_date":"2025-02-11T14:23:20.377551+00:00","name":"tf-srv-bold-hertz","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":"d19f1a5a-7605-4ed3-8cf0-0e93a7889d7b","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"89136d0f-11b8-4f5f-8db2-c0778ee5fed8","volume_type":"sbs_volume","zone":"nl-ams-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.236981+00:00","export_uri":null,"id":"43d46d3d-d5e5-48c8-879f-d0af9a680db7","modification_date":"2025-02-11T14:22:37.347282+00:00","name":"main","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3ded52fe-89a1-44b2-a06e-3152cc12605c","name":"tf-srv-bold-hertz"},"size":1000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"nl-ams-1"}},"zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "2170"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:23:23 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - ae66b7bd-6e57-437d-8dd3-f2ee2802ef7c
- status: 200 OK
- code: 200
- duration: 194.891958ms
- - id: 38
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/servers/3ded52fe-89a1-44b2-a06e-3152cc12605c
- 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, 11 Feb 2025 14:23:24 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 476961b1-3da7-47db-bcf8-464b367c885a
- status: 204 No Content
- code: 204
- duration: 501.363791ms
- - id: 39
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/servers/3ded52fe-89a1-44b2-a06e-3152cc12605c
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 143
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_server","resource_id":"3ded52fe-89a1-44b2-a06e-3152cc12605c","type":"not_found"}'
- headers:
- Content-Length:
- - "143"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:23:24 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - c2603872-f8d7-4e78-9424-4dc82994562c
- status: 404 Not Found
- code: 404
- duration: 209.402167ms
- - id: 40
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/volumes/89136d0f-11b8-4f5f-8db2-c0778ee5fed8
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 143
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"89136d0f-11b8-4f5f-8db2-c0778ee5fed8","type":"not_found"}'
- headers:
- Content-Length:
- - "143"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:23:24 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - c94a9166-891c-4a4c-b474-acd6575e214f
- status: 404 Not Found
- code: 404
- duration: 50.068167ms
- - id: 41
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/nl-ams-1/volumes/89136d0f-11b8-4f5f-8db2-c0778ee5fed8
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 494
- uncompressed: false
- body: '{"created_at":"2025-02-11T14:22:37.576522Z","id":"89136d0f-11b8-4f5f-8db2-c0778ee5fed8","last_detached_at":"2025-02-11T14:23:24.775018Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"f7bbdae8-5ab4-4536-bcdc-cd613f449c86","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-02-11T14:23:24.775018Z","zone":"nl-ams-1"}'
- headers:
- Content-Length:
- - "494"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:23:25 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 18729f98-779f-4d7e-8371-2232cb999455
- status: 200 OK
- code: 200
- duration: 81.18325ms
- - id: 42
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/nl-ams-1/volumes/89136d0f-11b8-4f5f-8db2-c0778ee5fed8
- 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, 11 Feb 2025 14:23:25 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - e17b217f-79b0-4fb5-b42b-622a1fbd6c7b
- status: 204 No Content
- code: 204
- duration: 162.453833ms
- - id: 43
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/volumes/43d46d3d-d5e5-48c8-879f-d0af9a680db7
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 425
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T14:22:36.236981+00:00","export_uri":null,"id":"43d46d3d-d5e5-48c8-879f-d0af9a680db7","modification_date":"2025-02-11T14:23:24.269801+00:00","name":"main","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":1000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"nl-ams-1"}}'
- headers:
- Content-Length:
- - "425"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:23:25 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 79498266-3f14-4834-8ec2-050f72cb191f
- status: 200 OK
- code: 200
- duration: 102.717542ms
- - id: 44
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/volumes/43d46d3d-d5e5-48c8-879f-d0af9a680db7
- 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, 11 Feb 2025 14:23:25 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 2e247b56-641f-476d-bd32-927431a59aea
- status: 204 No Content
- code: 204
- duration: 168.746541ms
- - id: 45
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/servers/3ded52fe-89a1-44b2-a06e-3152cc12605c
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 143
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_server","resource_id":"3ded52fe-89a1-44b2-a06e-3152cc12605c","type":"not_found"}'
- headers:
- Content-Length:
- - "143"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:23:25 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - e197bd84-3988-424d-995a-bb9e85ae8354
- status: 404 Not Found
- code: 404
- duration: 158.417291ms
diff --git a/internal/services/instance/testdata/server-with-default-root-volume-and-additional-volume.cassette.yaml b/internal/services/instance/testdata/server-with-default-root-volume-and-additional-volume.cassette.yaml
deleted file mode 100644
index 599ff22e5c..0000000000
--- a/internal/services/instance/testdata/server-with-default-root-volume-and-additional-volume.cassette.yaml
+++ /dev/null
@@ -1,2236 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 132
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"name":"tf-vol-compassionate-chaplygin","project":"105bdce1-64c0-48ab-899d-868455867ecf","volume_type":"b_ssd","size":100000000000}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 453
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T14:24:36.397022+00:00","export_uri":null,"id":"b4098fa0-f77a-4033-a9f8-af5ceb81d136","modification_date":"2025-02-11T14:24:36.397022+00:00","name":"tf-vol-compassionate-chaplygin","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":100000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "453"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:24:36 GMT
- Location:
- - https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b4098fa0-f77a-4033-a9f8-af5ceb81d136
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - fd8daea6-19f3-480b-9925-28a1f55b76b7
- status: 201 Created
- code: 201
- duration: 231.718041ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b4098fa0-f77a-4033-a9f8-af5ceb81d136
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 453
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T14:24:36.397022+00:00","export_uri":null,"id":"b4098fa0-f77a-4033-a9f8-af5ceb81d136","modification_date":"2025-02-11T14:24:36.397022+00:00","name":"tf-vol-compassionate-chaplygin","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":100000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "453"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:24:36 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - cea8a61e-0f5c-4115-ba93-0b2a33e760dc
- status: 200 OK
- code: 200
- duration: 70.491625ms
- - id: 2
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b4098fa0-f77a-4033-a9f8-af5ceb81d136
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 453
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T14:24:36.397022+00:00","export_uri":null,"id":"b4098fa0-f77a-4033-a9f8-af5ceb81d136","modification_date":"2025-02-11T14:24:36.397022+00:00","name":"tf-vol-compassionate-chaplygin","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":100000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "453"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:24:36 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 4ade1784-00a0-4daa-97d9-0d71dc0b48ef
- status: 200 OK
- code: 200
- duration: 83.257583ms
- - id: 3
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 35639
- uncompressed: false
- body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":6710886400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":13421772800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":6710886400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":6710886400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":13421772800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":6710886400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":13421772800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":6710886400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":13421772800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}'
- headers:
- Content-Length:
- - "35639"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:24:36 GMT
- Link:
- - ; rel="next",; rel="last"
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - fbe1b741-c3c7-40a3-b9e4-d137a6e97f8c
- X-Total-Count:
- - "68"
- status: 200 OK
- code: 200
- duration: 61.154417ms
- - id: 4
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 13164
- uncompressed: false
- body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":1,"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":200000000000}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":100000000000}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":50000000000}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":25000000000}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":200000000000}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":100000000000}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":50000000000}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":1000000000000,"min_size":500000000000}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":200000000000}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":300000000000}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":400000000000}}}}'
- headers:
- Content-Length:
- - "13164"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:24:36 GMT
- Link:
- - ; rel="first",; rel="previous",; rel="last"
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 43a3748d-db60-4b94-b74c-30ad77841009
- X-Total-Count:
- - "68"
- status: 200 OK
- code: 200
- duration: 59.385208ms
- - id: 5
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b4098fa0-f77a-4033-a9f8-af5ceb81d136
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 453
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T14:24:36.397022+00:00","export_uri":null,"id":"b4098fa0-f77a-4033-a9f8-af5ceb81d136","modification_date":"2025-02-11T14:24:36.397022+00:00","name":"tf-vol-compassionate-chaplygin","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":100000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "453"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:24:36 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - f8fc5a4c-6bd5-4ee5-85c7-b9cc9561341d
- status: 200 OK
- code: 200
- duration: 95.772125ms
- - id: 6
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_jammy&order_by=type_asc&type=instance_sbs&zone=fr-par-1
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 1296
- uncompressed: false
- body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"},{"arch":"arm64","compatible_commercial_types":["AMP2-C1","AMP2-C2","AMP2-C4","AMP2-C8","AMP2-C12","AMP2-C24","AMP2-C48","AMP2-C60","COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"7044ae1e-a35d-4364-a962-93811c845f2f","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}'
- headers:
- Content-Length:
- - "1296"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:24:36 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 50841903-9176-45e5-8644-97fea3ba4311
- status: 200 OK
- code: 200
- duration: 85.553916ms
- - id: 7
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 326
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"name":"tf-srv-nostalgic-pascal","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","volumes":{"0":{"boot":false},"1":{"id":"b4098fa0-f77a-4033-a9f8-af5ceb81d136","name":"tf-vol-compassionate-chaplygin"}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2220
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:24:37.478858+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-nostalgic-pascal","id":"52518021-cc13-4eb4-9c7b-3a6781aeb404","image":{"arch":"x86_64","creation_date":"2024-10-07T11:39:13.069801+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","modification_date":"2024-10-07T11:39:13.069801+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"4eb9437f-8993-444a-b564-f7654add2131","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:93:6e:11","maintenances":[],"modification_date":"2025-02-11T14:24:37.478858+00:00","name":"tf-srv-nostalgic-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"1d87a592-709c-4d49-bf14-6178781323fa","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:24:36.397022+00:00","export_uri":null,"id":"b4098fa0-f77a-4033-a9f8-af5ceb81d136","modification_date":"2025-02-11T14:24:37.478858+00:00","name":"tf-vol-compassionate-chaplygin","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"52518021-cc13-4eb4-9c7b-3a6781aeb404","name":"tf-srv-nostalgic-pascal"},"size":100000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2220"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:24:37 GMT
- Location:
- - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52518021-cc13-4eb4-9c7b-3a6781aeb404
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 33034b75-f1dd-4648-b7a4-7e0446f29973
- status: 201 Created
- code: 201
- duration: 1.103762292s
- - id: 8
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52518021-cc13-4eb4-9c7b-3a6781aeb404
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2220
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:24:37.478858+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-nostalgic-pascal","id":"52518021-cc13-4eb4-9c7b-3a6781aeb404","image":{"arch":"x86_64","creation_date":"2024-10-07T11:39:13.069801+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","modification_date":"2024-10-07T11:39:13.069801+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"4eb9437f-8993-444a-b564-f7654add2131","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:93:6e:11","maintenances":[],"modification_date":"2025-02-11T14:24:37.478858+00:00","name":"tf-srv-nostalgic-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"1d87a592-709c-4d49-bf14-6178781323fa","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:24:36.397022+00:00","export_uri":null,"id":"b4098fa0-f77a-4033-a9f8-af5ceb81d136","modification_date":"2025-02-11T14:24:37.478858+00:00","name":"tf-vol-compassionate-chaplygin","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"52518021-cc13-4eb4-9c7b-3a6781aeb404","name":"tf-srv-nostalgic-pascal"},"size":100000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2220"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:24:37 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 400e0c4e-95a2-46b0-9be0-240dacbb3b56
- status: 200 OK
- code: 200
- duration: 132.527083ms
- - id: 9
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52518021-cc13-4eb4-9c7b-3a6781aeb404
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2220
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:24:37.478858+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-nostalgic-pascal","id":"52518021-cc13-4eb4-9c7b-3a6781aeb404","image":{"arch":"x86_64","creation_date":"2024-10-07T11:39:13.069801+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","modification_date":"2024-10-07T11:39:13.069801+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"4eb9437f-8993-444a-b564-f7654add2131","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:93:6e:11","maintenances":[],"modification_date":"2025-02-11T14:24:37.478858+00:00","name":"tf-srv-nostalgic-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"1d87a592-709c-4d49-bf14-6178781323fa","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:24:36.397022+00:00","export_uri":null,"id":"b4098fa0-f77a-4033-a9f8-af5ceb81d136","modification_date":"2025-02-11T14:24:37.478858+00:00","name":"tf-vol-compassionate-chaplygin","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"52518021-cc13-4eb4-9c7b-3a6781aeb404","name":"tf-srv-nostalgic-pascal"},"size":100000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2220"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:24:37 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 7b3dadbe-721f-4832-b28b-a2d3f8a48fa9
- status: 200 OK
- code: 200
- duration: 148.10325ms
- - id: 10
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1d87a592-709c-4d49-bf14-6178781323fa
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 705
- uncompressed: false
- body: '{"created_at":"2025-02-11T14:24:37.705303Z","id":"1d87a592-709c-4d49-bf14-6178781323fa","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"4eb9437f-8993-444a-b564-f7654add2131","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-02-11T14:24:37.705303Z","id":"df17331f-7592-40ba-8e5e-3bee3bef6820","product_resource_id":"52518021-cc13-4eb4-9c7b-3a6781aeb404","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-02-11T14:24:37.705303Z","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "705"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:24:38 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 58efe613-00df-411c-b93d-2566fb97cd5b
- status: 200 OK
- code: 200
- duration: 62.754959ms
- - id: 11
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 20
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"action":"poweron"}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52518021-cc13-4eb4-9c7b-3a6781aeb404/action
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 357
- uncompressed: false
- body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/52518021-cc13-4eb4-9c7b-3a6781aeb404/action","href_result":"/servers/52518021-cc13-4eb4-9c7b-3a6781aeb404","id":"6fb69de9-e37b-4957-91ba-d7c20c3f3595","progress":0,"started_at":"2025-02-11T14:24:38.639831+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "357"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:24:38 GMT
- Location:
- - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/6fb69de9-e37b-4957-91ba-d7c20c3f3595
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 653a859c-bfec-40fe-b4f6-165238da94d1
- status: 202 Accepted
- code: 202
- duration: 244.962458ms
- - id: 12
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52518021-cc13-4eb4-9c7b-3a6781aeb404
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2242
- uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:24:37.478858+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-nostalgic-pascal","id":"52518021-cc13-4eb4-9c7b-3a6781aeb404","image":{"arch":"x86_64","creation_date":"2024-10-07T11:39:13.069801+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","modification_date":"2024-10-07T11:39:13.069801+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"4eb9437f-8993-444a-b564-f7654add2131","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:93:6e:11","maintenances":[],"modification_date":"2025-02-11T14:24:38.457213+00:00","name":"tf-srv-nostalgic-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"1d87a592-709c-4d49-bf14-6178781323fa","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:24:36.397022+00:00","export_uri":null,"id":"b4098fa0-f77a-4033-a9f8-af5ceb81d136","modification_date":"2025-02-11T14:24:37.478858+00:00","name":"tf-vol-compassionate-chaplygin","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"52518021-cc13-4eb4-9c7b-3a6781aeb404","name":"tf-srv-nostalgic-pascal"},"size":100000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2242"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:24:38 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 8e40c648-9176-4159-b5bb-c8ece8a58094
- status: 200 OK
- code: 200
- duration: 184.750375ms
- - id: 13
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52518021-cc13-4eb4-9c7b-3a6781aeb404
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2376
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:24:37.478858+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-nostalgic-pascal","id":"52518021-cc13-4eb4-9c7b-3a6781aeb404","image":{"arch":"x86_64","creation_date":"2024-10-07T11:39:13.069801+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","modification_date":"2024-10-07T11:39:13.069801+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"4eb9437f-8993-444a-b564-f7654add2131","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"802","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:6e:11","maintenances":[],"modification_date":"2025-02-11T14:24:43.728945+00:00","name":"tf-srv-nostalgic-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1d87a592-709c-4d49-bf14-6178781323fa","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:24:36.397022+00:00","export_uri":null,"id":"b4098fa0-f77a-4033-a9f8-af5ceb81d136","modification_date":"2025-02-11T14:24:37.478858+00:00","name":"tf-vol-compassionate-chaplygin","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"52518021-cc13-4eb4-9c7b-3a6781aeb404","name":"tf-srv-nostalgic-pascal"},"size":100000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2376"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:24:44 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 29b51b6f-fa59-4797-8705-39a8e7e19956
- status: 200 OK
- code: 200
- duration: 220.98025ms
- - id: 14
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52518021-cc13-4eb4-9c7b-3a6781aeb404
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2376
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:24:37.478858+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-nostalgic-pascal","id":"52518021-cc13-4eb4-9c7b-3a6781aeb404","image":{"arch":"x86_64","creation_date":"2024-10-07T11:39:13.069801+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","modification_date":"2024-10-07T11:39:13.069801+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"4eb9437f-8993-444a-b564-f7654add2131","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"802","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:6e:11","maintenances":[],"modification_date":"2025-02-11T14:24:43.728945+00:00","name":"tf-srv-nostalgic-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1d87a592-709c-4d49-bf14-6178781323fa","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:24:36.397022+00:00","export_uri":null,"id":"b4098fa0-f77a-4033-a9f8-af5ceb81d136","modification_date":"2025-02-11T14:24:37.478858+00:00","name":"tf-vol-compassionate-chaplygin","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"52518021-cc13-4eb4-9c7b-3a6781aeb404","name":"tf-srv-nostalgic-pascal"},"size":100000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2376"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:24:43 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 52c2a8ca-3398-4c06-8cee-c3fcb6451690
- status: 200 OK
- code: 200
- duration: 173.26425ms
- - id: 15
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1d87a592-709c-4d49-bf14-6178781323fa
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 143
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"1d87a592-709c-4d49-bf14-6178781323fa","type":"not_found"}'
- headers:
- Content-Length:
- - "143"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:24:44 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - fcd709e8-0c32-491f-b209-8b966735f51f
- status: 404 Not Found
- code: 404
- duration: 31.732125ms
- - id: 16
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1d87a592-709c-4d49-bf14-6178781323fa
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 705
- uncompressed: false
- body: '{"created_at":"2025-02-11T14:24:37.705303Z","id":"1d87a592-709c-4d49-bf14-6178781323fa","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"4eb9437f-8993-444a-b564-f7654add2131","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-02-11T14:24:37.705303Z","id":"df17331f-7592-40ba-8e5e-3bee3bef6820","product_resource_id":"52518021-cc13-4eb4-9c7b-3a6781aeb404","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-02-11T14:24:37.705303Z","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "705"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:24:44 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 5e98ad20-0cb1-4b19-b4b5-19fd97e1a8bb
- status: 200 OK
- code: 200
- duration: 65.355083ms
- - id: 17
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52518021-cc13-4eb4-9c7b-3a6781aeb404/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:
- - Tue, 11 Feb 2025 14:24:44 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 59581b9b-33b4-4ef7-9a11-39412dc89ddc
- status: 200 OK
- code: 200
- duration: 83.829875ms
- - id: 18
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52518021-cc13-4eb4-9c7b-3a6781aeb404/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:
- - Tue, 11 Feb 2025 14:24:44 GMT
- Link:
- - ; rel="last"
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 86890f20-054e-4d47-a93c-63723a184ca5
- X-Total-Count:
- - "0"
- status: 200 OK
- code: 200
- duration: 89.863291ms
- - id: 19
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52518021-cc13-4eb4-9c7b-3a6781aeb404
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2376
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:24:37.478858+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-nostalgic-pascal","id":"52518021-cc13-4eb4-9c7b-3a6781aeb404","image":{"arch":"x86_64","creation_date":"2024-10-07T11:39:13.069801+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","modification_date":"2024-10-07T11:39:13.069801+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"4eb9437f-8993-444a-b564-f7654add2131","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"802","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:6e:11","maintenances":[],"modification_date":"2025-02-11T14:24:43.728945+00:00","name":"tf-srv-nostalgic-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1d87a592-709c-4d49-bf14-6178781323fa","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:24:36.397022+00:00","export_uri":null,"id":"b4098fa0-f77a-4033-a9f8-af5ceb81d136","modification_date":"2025-02-11T14:24:37.478858+00:00","name":"tf-vol-compassionate-chaplygin","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"52518021-cc13-4eb4-9c7b-3a6781aeb404","name":"tf-srv-nostalgic-pascal"},"size":100000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2376"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:24:44 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - d99761e8-f6a9-424a-b782-61f4a400c813
- status: 200 OK
- code: 200
- duration: 191.312208ms
- - id: 20
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b4098fa0-f77a-4033-a9f8-af5ceb81d136
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 530
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T14:24:36.397022+00:00","export_uri":null,"id":"b4098fa0-f77a-4033-a9f8-af5ceb81d136","modification_date":"2025-02-11T14:24:37.478858+00:00","name":"tf-vol-compassionate-chaplygin","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"52518021-cc13-4eb4-9c7b-3a6781aeb404","name":"tf-srv-nostalgic-pascal"},"size":100000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "530"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:24:44 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - c81b3ddf-cc1a-4b9f-a1ef-973c7ee7b7e9
- status: 200 OK
- code: 200
- duration: 97.153833ms
- - id: 21
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52518021-cc13-4eb4-9c7b-3a6781aeb404
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2376
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:24:37.478858+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-nostalgic-pascal","id":"52518021-cc13-4eb4-9c7b-3a6781aeb404","image":{"arch":"x86_64","creation_date":"2024-10-07T11:39:13.069801+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","modification_date":"2024-10-07T11:39:13.069801+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"4eb9437f-8993-444a-b564-f7654add2131","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"802","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:6e:11","maintenances":[],"modification_date":"2025-02-11T14:24:43.728945+00:00","name":"tf-srv-nostalgic-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1d87a592-709c-4d49-bf14-6178781323fa","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:24:36.397022+00:00","export_uri":null,"id":"b4098fa0-f77a-4033-a9f8-af5ceb81d136","modification_date":"2025-02-11T14:24:37.478858+00:00","name":"tf-vol-compassionate-chaplygin","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"52518021-cc13-4eb4-9c7b-3a6781aeb404","name":"tf-srv-nostalgic-pascal"},"size":100000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2376"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:24:44 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 0a46920f-4d72-4bbb-877f-5d9d04d8cae2
- status: 200 OK
- code: 200
- duration: 166.39125ms
- - id: 22
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1d87a592-709c-4d49-bf14-6178781323fa
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 143
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"1d87a592-709c-4d49-bf14-6178781323fa","type":"not_found"}'
- headers:
- Content-Length:
- - "143"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:24:44 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - af31f299-5334-4437-97b9-532d55fc1a08
- status: 404 Not Found
- code: 404
- duration: 29.081291ms
- - id: 23
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1d87a592-709c-4d49-bf14-6178781323fa
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 705
- uncompressed: false
- body: '{"created_at":"2025-02-11T14:24:37.705303Z","id":"1d87a592-709c-4d49-bf14-6178781323fa","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"4eb9437f-8993-444a-b564-f7654add2131","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-02-11T14:24:37.705303Z","id":"df17331f-7592-40ba-8e5e-3bee3bef6820","product_resource_id":"52518021-cc13-4eb4-9c7b-3a6781aeb404","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-02-11T14:24:37.705303Z","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "705"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:24:45 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 08f1f0ba-596e-44b5-807a-1350aae7ef99
- status: 200 OK
- code: 200
- duration: 66.975083ms
- - id: 24
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52518021-cc13-4eb4-9c7b-3a6781aeb404/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:
- - Tue, 11 Feb 2025 14:24:45 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - d38db301-cbd6-47d4-8944-d7488dcf87c0
- status: 200 OK
- code: 200
- duration: 78.857083ms
- - id: 25
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52518021-cc13-4eb4-9c7b-3a6781aeb404/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:
- - Tue, 11 Feb 2025 14:24:45 GMT
- Link:
- - ; rel="last"
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - f39542f1-4719-429a-83ff-c1bf8fd719d4
- X-Total-Count:
- - "0"
- status: 200 OK
- code: 200
- duration: 74.970625ms
- - id: 26
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52518021-cc13-4eb4-9c7b-3a6781aeb404
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2376
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:24:37.478858+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-nostalgic-pascal","id":"52518021-cc13-4eb4-9c7b-3a6781aeb404","image":{"arch":"x86_64","creation_date":"2024-10-07T11:39:13.069801+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","modification_date":"2024-10-07T11:39:13.069801+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"4eb9437f-8993-444a-b564-f7654add2131","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"802","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:6e:11","maintenances":[],"modification_date":"2025-02-11T14:24:43.728945+00:00","name":"tf-srv-nostalgic-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1d87a592-709c-4d49-bf14-6178781323fa","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:24:36.397022+00:00","export_uri":null,"id":"b4098fa0-f77a-4033-a9f8-af5ceb81d136","modification_date":"2025-02-11T14:24:37.478858+00:00","name":"tf-vol-compassionate-chaplygin","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"52518021-cc13-4eb4-9c7b-3a6781aeb404","name":"tf-srv-nostalgic-pascal"},"size":100000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2376"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:24:45 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 284d5737-eba0-4a6f-b930-622fca91bf9e
- status: 200 OK
- code: 200
- duration: 153.055ms
- - id: 27
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1d87a592-709c-4d49-bf14-6178781323fa
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 705
- uncompressed: false
- body: '{"created_at":"2025-02-11T14:24:37.705303Z","id":"1d87a592-709c-4d49-bf14-6178781323fa","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"4eb9437f-8993-444a-b564-f7654add2131","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-02-11T14:24:37.705303Z","id":"df17331f-7592-40ba-8e5e-3bee3bef6820","product_resource_id":"52518021-cc13-4eb4-9c7b-3a6781aeb404","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-02-11T14:24:37.705303Z","zone":"fr-par-1"}'
- headers:
- Content-Length:
- - "705"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:24:46 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - a9c0d7f9-d2d5-4b04-bfbd-1c7ce2f4dc09
- status: 200 OK
- code: 200
- duration: 77.998375ms
- - id: 28
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 21
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"action":"poweroff"}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52518021-cc13-4eb4-9c7b-3a6781aeb404/action
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 352
- uncompressed: false
- body: '{"task":{"description":"server_poweroff","href_from":"/servers/52518021-cc13-4eb4-9c7b-3a6781aeb404/action","href_result":"/servers/52518021-cc13-4eb4-9c7b-3a6781aeb404","id":"ad3714e5-2301-4b4f-93ea-fb5b486876a0","progress":0,"started_at":"2025-02-11T14:24:46.393799+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "352"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:24:45 GMT
- Location:
- - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/ad3714e5-2301-4b4f-93ea-fb5b486876a0
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - fdf2d123-21b0-4062-89e3-6836435557c0
- status: 202 Accepted
- code: 202
- duration: 486.720417ms
- - id: 29
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52518021-cc13-4eb4-9c7b-3a6781aeb404
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2336
- uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:24:37.478858+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-nostalgic-pascal","id":"52518021-cc13-4eb4-9c7b-3a6781aeb404","image":{"arch":"x86_64","creation_date":"2024-10-07T11:39:13.069801+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","modification_date":"2024-10-07T11:39:13.069801+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"4eb9437f-8993-444a-b564-f7654add2131","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"802","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:6e:11","maintenances":[],"modification_date":"2025-02-11T14:24:46.034995+00:00","name":"tf-srv-nostalgic-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"1d87a592-709c-4d49-bf14-6178781323fa","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:24:36.397022+00:00","export_uri":null,"id":"b4098fa0-f77a-4033-a9f8-af5ceb81d136","modification_date":"2025-02-11T14:24:37.478858+00:00","name":"tf-vol-compassionate-chaplygin","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"52518021-cc13-4eb4-9c7b-3a6781aeb404","name":"tf-srv-nostalgic-pascal"},"size":100000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2336"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:24:46 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - ff1bda82-4a95-4119-bc74-f95f397f2f8b
- status: 200 OK
- code: 200
- duration: 165.656959ms
- - id: 30
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52518021-cc13-4eb4-9c7b-3a6781aeb404
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2336
- uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:24:37.478858+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-nostalgic-pascal","id":"52518021-cc13-4eb4-9c7b-3a6781aeb404","image":{"arch":"x86_64","creation_date":"2024-10-07T11:39:13.069801+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","modification_date":"2024-10-07T11:39:13.069801+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"4eb9437f-8993-444a-b564-f7654add2131","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"802","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:6e:11","maintenances":[],"modification_date":"2025-02-11T14:24:46.034995+00:00","name":"tf-srv-nostalgic-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"1d87a592-709c-4d49-bf14-6178781323fa","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:24:36.397022+00:00","export_uri":null,"id":"b4098fa0-f77a-4033-a9f8-af5ceb81d136","modification_date":"2025-02-11T14:24:37.478858+00:00","name":"tf-vol-compassionate-chaplygin","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"52518021-cc13-4eb4-9c7b-3a6781aeb404","name":"tf-srv-nostalgic-pascal"},"size":100000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2336"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:24:51 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 90851c22-8f59-441c-ab9c-927b558ff6c2
- status: 200 OK
- code: 200
- duration: 216.612209ms
- - id: 31
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52518021-cc13-4eb4-9c7b-3a6781aeb404
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2336
- uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:24:37.478858+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-nostalgic-pascal","id":"52518021-cc13-4eb4-9c7b-3a6781aeb404","image":{"arch":"x86_64","creation_date":"2024-10-07T11:39:13.069801+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","modification_date":"2024-10-07T11:39:13.069801+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"4eb9437f-8993-444a-b564-f7654add2131","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"802","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:6e:11","maintenances":[],"modification_date":"2025-02-11T14:24:46.034995+00:00","name":"tf-srv-nostalgic-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"1d87a592-709c-4d49-bf14-6178781323fa","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:24:36.397022+00:00","export_uri":null,"id":"b4098fa0-f77a-4033-a9f8-af5ceb81d136","modification_date":"2025-02-11T14:24:37.478858+00:00","name":"tf-vol-compassionate-chaplygin","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"52518021-cc13-4eb4-9c7b-3a6781aeb404","name":"tf-srv-nostalgic-pascal"},"size":100000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2336"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:24:57 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 616e2ae5-1fee-48e8-aac9-1b541a3ef6d7
- status: 200 OK
- code: 200
- duration: 482.435417ms
- - id: 32
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52518021-cc13-4eb4-9c7b-3a6781aeb404
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2336
- uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:24:37.478858+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-nostalgic-pascal","id":"52518021-cc13-4eb4-9c7b-3a6781aeb404","image":{"arch":"x86_64","creation_date":"2024-10-07T11:39:13.069801+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","modification_date":"2024-10-07T11:39:13.069801+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"4eb9437f-8993-444a-b564-f7654add2131","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"802","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:6e:11","maintenances":[],"modification_date":"2025-02-11T14:24:46.034995+00:00","name":"tf-srv-nostalgic-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"1d87a592-709c-4d49-bf14-6178781323fa","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:24:36.397022+00:00","export_uri":null,"id":"b4098fa0-f77a-4033-a9f8-af5ceb81d136","modification_date":"2025-02-11T14:24:37.478858+00:00","name":"tf-vol-compassionate-chaplygin","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"52518021-cc13-4eb4-9c7b-3a6781aeb404","name":"tf-srv-nostalgic-pascal"},"size":100000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2336"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:25:02 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 5641b14a-ae4c-49fb-95f9-69d88700b98e
- status: 200 OK
- code: 200
- duration: 232.536833ms
- - id: 33
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52518021-cc13-4eb4-9c7b-3a6781aeb404
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2336
- uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:24:37.478858+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-nostalgic-pascal","id":"52518021-cc13-4eb4-9c7b-3a6781aeb404","image":{"arch":"x86_64","creation_date":"2024-10-07T11:39:13.069801+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","modification_date":"2024-10-07T11:39:13.069801+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"4eb9437f-8993-444a-b564-f7654add2131","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"802","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:6e:11","maintenances":[],"modification_date":"2025-02-11T14:24:46.034995+00:00","name":"tf-srv-nostalgic-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"1d87a592-709c-4d49-bf14-6178781323fa","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:24:36.397022+00:00","export_uri":null,"id":"b4098fa0-f77a-4033-a9f8-af5ceb81d136","modification_date":"2025-02-11T14:24:37.478858+00:00","name":"tf-vol-compassionate-chaplygin","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"52518021-cc13-4eb4-9c7b-3a6781aeb404","name":"tf-srv-nostalgic-pascal"},"size":100000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2336"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:25:07 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 08c17862-c07b-42d8-b29b-72fb9663a471
- status: 200 OK
- code: 200
- duration: 177.025167ms
- - id: 34
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52518021-cc13-4eb4-9c7b-3a6781aeb404
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2336
- uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:24:37.478858+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-nostalgic-pascal","id":"52518021-cc13-4eb4-9c7b-3a6781aeb404","image":{"arch":"x86_64","creation_date":"2024-10-07T11:39:13.069801+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","modification_date":"2024-10-07T11:39:13.069801+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"4eb9437f-8993-444a-b564-f7654add2131","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"802","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:6e:11","maintenances":[],"modification_date":"2025-02-11T14:24:46.034995+00:00","name":"tf-srv-nostalgic-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"1d87a592-709c-4d49-bf14-6178781323fa","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:24:36.397022+00:00","export_uri":null,"id":"b4098fa0-f77a-4033-a9f8-af5ceb81d136","modification_date":"2025-02-11T14:24:37.478858+00:00","name":"tf-vol-compassionate-chaplygin","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"52518021-cc13-4eb4-9c7b-3a6781aeb404","name":"tf-srv-nostalgic-pascal"},"size":100000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2336"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:25:12 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - fe71cd34-b21e-48f4-9277-c419ba4586e4
- status: 200 OK
- code: 200
- duration: 156.478292ms
- - id: 35
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52518021-cc13-4eb4-9c7b-3a6781aeb404
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2336
- uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:24:37.478858+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-nostalgic-pascal","id":"52518021-cc13-4eb4-9c7b-3a6781aeb404","image":{"arch":"x86_64","creation_date":"2024-10-07T11:39:13.069801+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","modification_date":"2024-10-07T11:39:13.069801+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"4eb9437f-8993-444a-b564-f7654add2131","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"802","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:6e:11","maintenances":[],"modification_date":"2025-02-11T14:24:46.034995+00:00","name":"tf-srv-nostalgic-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"1d87a592-709c-4d49-bf14-6178781323fa","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:24:36.397022+00:00","export_uri":null,"id":"b4098fa0-f77a-4033-a9f8-af5ceb81d136","modification_date":"2025-02-11T14:24:37.478858+00:00","name":"tf-vol-compassionate-chaplygin","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"52518021-cc13-4eb4-9c7b-3a6781aeb404","name":"tf-srv-nostalgic-pascal"},"size":100000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2336"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:25:17 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 8e36bc36-d823-4097-9b17-6be81d31286f
- status: 200 OK
- code: 200
- duration: 174.498375ms
- - id: 36
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52518021-cc13-4eb4-9c7b-3a6781aeb404
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2336
- uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:24:37.478858+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-nostalgic-pascal","id":"52518021-cc13-4eb4-9c7b-3a6781aeb404","image":{"arch":"x86_64","creation_date":"2024-10-07T11:39:13.069801+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","modification_date":"2024-10-07T11:39:13.069801+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"4eb9437f-8993-444a-b564-f7654add2131","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"802","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:6e:11","maintenances":[],"modification_date":"2025-02-11T14:24:46.034995+00:00","name":"tf-srv-nostalgic-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"1d87a592-709c-4d49-bf14-6178781323fa","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:24:36.397022+00:00","export_uri":null,"id":"b4098fa0-f77a-4033-a9f8-af5ceb81d136","modification_date":"2025-02-11T14:24:37.478858+00:00","name":"tf-vol-compassionate-chaplygin","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"52518021-cc13-4eb4-9c7b-3a6781aeb404","name":"tf-srv-nostalgic-pascal"},"size":100000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2336"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:25:22 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 2d88dd7f-b22d-4bf8-829d-ff2c68e808da
- status: 200 OK
- code: 200
- duration: 144.702625ms
- - id: 37
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52518021-cc13-4eb4-9c7b-3a6781aeb404
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2336
- uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:24:37.478858+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-nostalgic-pascal","id":"52518021-cc13-4eb4-9c7b-3a6781aeb404","image":{"arch":"x86_64","creation_date":"2024-10-07T11:39:13.069801+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","modification_date":"2024-10-07T11:39:13.069801+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"4eb9437f-8993-444a-b564-f7654add2131","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"802","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:6e:11","maintenances":[],"modification_date":"2025-02-11T14:24:46.034995+00:00","name":"tf-srv-nostalgic-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"1d87a592-709c-4d49-bf14-6178781323fa","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:24:36.397022+00:00","export_uri":null,"id":"b4098fa0-f77a-4033-a9f8-af5ceb81d136","modification_date":"2025-02-11T14:24:37.478858+00:00","name":"tf-vol-compassionate-chaplygin","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"52518021-cc13-4eb4-9c7b-3a6781aeb404","name":"tf-srv-nostalgic-pascal"},"size":100000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2336"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:25:28 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 2bdc19bc-a267-41d6-9226-d5f881189044
- status: 200 OK
- code: 200
- duration: 166.620833ms
- - id: 38
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52518021-cc13-4eb4-9c7b-3a6781aeb404
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2220
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:24:37.478858+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-nostalgic-pascal","id":"52518021-cc13-4eb4-9c7b-3a6781aeb404","image":{"arch":"x86_64","creation_date":"2024-10-07T11:39:13.069801+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","modification_date":"2024-10-07T11:39:13.069801+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"4eb9437f-8993-444a-b564-f7654add2131","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:93:6e:11","maintenances":[],"modification_date":"2025-02-11T14:25:29.061323+00:00","name":"tf-srv-nostalgic-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"1d87a592-709c-4d49-bf14-6178781323fa","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:24:36.397022+00:00","export_uri":null,"id":"b4098fa0-f77a-4033-a9f8-af5ceb81d136","modification_date":"2025-02-11T14:24:37.478858+00:00","name":"tf-vol-compassionate-chaplygin","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"52518021-cc13-4eb4-9c7b-3a6781aeb404","name":"tf-srv-nostalgic-pascal"},"size":100000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2220"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:25:33 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 03b27b4a-1f6c-4fe8-9157-da54cdca1ee1
- status: 200 OK
- code: 200
- duration: 159.848792ms
- - id: 39
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52518021-cc13-4eb4-9c7b-3a6781aeb404
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2220
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:24:37.478858+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-nostalgic-pascal","id":"52518021-cc13-4eb4-9c7b-3a6781aeb404","image":{"arch":"x86_64","creation_date":"2024-10-07T11:39:13.069801+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","modification_date":"2024-10-07T11:39:13.069801+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"4eb9437f-8993-444a-b564-f7654add2131","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:93:6e:11","maintenances":[],"modification_date":"2025-02-11T14:25:29.061323+00:00","name":"tf-srv-nostalgic-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"1d87a592-709c-4d49-bf14-6178781323fa","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:24:36.397022+00:00","export_uri":null,"id":"b4098fa0-f77a-4033-a9f8-af5ceb81d136","modification_date":"2025-02-11T14:24:37.478858+00:00","name":"tf-vol-compassionate-chaplygin","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"52518021-cc13-4eb4-9c7b-3a6781aeb404","name":"tf-srv-nostalgic-pascal"},"size":100000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2220"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:25:33 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 1428434a-65e9-4143-ab46-ee88957825f4
- status: 200 OK
- code: 200
- duration: 154.916292ms
- - id: 40
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52518021-cc13-4eb4-9c7b-3a6781aeb404
- 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, 11 Feb 2025 14:25:34 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 7a5b2795-fa18-4dec-8659-a0f51910ba0a
- status: 204 No Content
- code: 204
- duration: 375.937083ms
- - id: 41
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52518021-cc13-4eb4-9c7b-3a6781aeb404
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 143
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_server","resource_id":"52518021-cc13-4eb4-9c7b-3a6781aeb404","type":"not_found"}'
- headers:
- Content-Length:
- - "143"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:25:33 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 977b89db-3d87-465c-a3d8-d79ba34d51cc
- status: 404 Not Found
- code: 404
- duration: 164.539166ms
- - id: 42
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b4098fa0-f77a-4033-a9f8-af5ceb81d136
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 453
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T14:24:36.397022+00:00","export_uri":null,"id":"b4098fa0-f77a-4033-a9f8-af5ceb81d136","modification_date":"2025-02-11T14:25:33.818839+00:00","name":"tf-vol-compassionate-chaplygin","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":100000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "453"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:25:34 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 043fc392-bfe2-4e9c-8adf-458f3a46ebeb
- status: 200 OK
- code: 200
- duration: 78.085167ms
- - id: 43
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b4098fa0-f77a-4033-a9f8-af5ceb81d136
- 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, 11 Feb 2025 14:25:34 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - ef525961-c374-4abf-90d5-c7fb5780def1
- status: 204 No Content
- code: 204
- duration: 188.019292ms
- - id: 44
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52518021-cc13-4eb4-9c7b-3a6781aeb404
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 143
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_server","resource_id":"52518021-cc13-4eb4-9c7b-3a6781aeb404","type":"not_found"}'
- headers:
- Content-Length:
- - "143"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:25:34 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - faa967e0-6402-46d5-be4f-c1667126ae04
- status: 404 Not Found
- code: 404
- duration: 88.095458ms
diff --git a/internal/services/instance/testdata/snapshot-block-volume.cassette.yaml b/internal/services/instance/testdata/snapshot-block-volume.cassette.yaml
deleted file mode 100644
index ca2d5b5105..0000000000
--- a/internal/services/instance/testdata/snapshot-block-volume.cassette.yaml
+++ /dev/null
@@ -1,789 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 125
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"name":"tf-vol-gracious-williams","project":"105bdce1-64c0-48ab-899d-868455867ecf","volume_type":"b_ssd","size":20000000000}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 446
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:48:41.612199+00:00","export_uri":null,"id":"034967fa-95be-42e3-b2ed-844bdc6a69cf","modification_date":"2025-01-27T13:48:41.612199+00:00","name":"tf-vol-gracious-williams","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "446"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48:41 GMT
- Location:
- - https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/034967fa-95be-42e3-b2ed-844bdc6a69cf
- 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:
- - 517eff88-1ed8-4fd9-906d-deee0b39959b
- status: 201 Created
- code: 201
- duration: 175.656125ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/034967fa-95be-42e3-b2ed-844bdc6a69cf
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 446
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:48:41.612199+00:00","export_uri":null,"id":"034967fa-95be-42e3-b2ed-844bdc6a69cf","modification_date":"2025-01-27T13:48:41.612199+00:00","name":"tf-vol-gracious-williams","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "446"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48:41 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:
- - 77581e9d-2c27-4cff-aaf6-3c3fbb0a066f
- status: 200 OK
- code: 200
- duration: 91.538958ms
- - id: 2
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/034967fa-95be-42e3-b2ed-844bdc6a69cf
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 446
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:48:41.612199+00:00","export_uri":null,"id":"034967fa-95be-42e3-b2ed-844bdc6a69cf","modification_date":"2025-01-27T13:48:41.612199+00:00","name":"tf-vol-gracious-williams","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "446"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48:41 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:
- - 77b6618b-7728-4b49-8b0c-03d511dcc50e
- status: 200 OK
- code: 200
- duration: 92.779791ms
- - id: 3
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 131
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"name":"tf-snap-great-minsky","volume_id":"034967fa-95be-42e3-b2ed-844bdc6a69cf","project":"105bdce1-64c0-48ab-899d-868455867ecf"}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) 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: 844
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"034967fa-95be-42e3-b2ed-844bdc6a69cf","name":"tf-vol-gracious-williams"},"creation_date":"2025-01-27T13:48:41.988267+00:00","error_details":null,"id":"b664fea9-b1eb-422b-9713-e6c4d15d10d8","modification_date":"2025-01-27T13:48:41.988267+00:00","name":"tf-snap-great-minsky","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"},"task":{"description":"volume_snapshot","href_from":"/snapshots","href_result":"snapshots/b664fea9-b1eb-422b-9713-e6c4d15d10d8","id":"796f8cf3-edc8-4b7a-8f45-9accf2375c2b","progress":0,"started_at":"2025-01-27T13:48:42.156673+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "844"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48:41 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:
- - 9fc6e610-ff39-4264-98d7-478e2517dbf8
- status: 201 Created
- code: 201
- duration: 457.436625ms
- - id: 4
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/b664fea9-b1eb-422b-9713-e6c4d15d10d8
- 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":"034967fa-95be-42e3-b2ed-844bdc6a69cf","name":"tf-vol-gracious-williams"},"creation_date":"2025-01-27T13:48:41.988267+00:00","error_details":null,"id":"b664fea9-b1eb-422b-9713-e6c4d15d10d8","modification_date":"2025-01-27T13:48:41.988267+00:00","name":"tf-snap-great-minsky","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "533"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48:42 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:
- - e657e0e7-c798-46fc-bcc0-95f2fe86880f
- status: 200 OK
- code: 200
- duration: 87.839958ms
- - id: 5
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/b664fea9-b1eb-422b-9713-e6c4d15d10d8
- 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":"034967fa-95be-42e3-b2ed-844bdc6a69cf","name":"tf-vol-gracious-williams"},"creation_date":"2025-01-27T13:48:41.988267+00:00","error_details":null,"id":"b664fea9-b1eb-422b-9713-e6c4d15d10d8","modification_date":"2025-01-27T13:48:45.008922+00:00","name":"tf-snap-great-minsky","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "530"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48:46 GMT
- Server:
- - Scaleway API Gateway (fr-par-3;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - f1db96e9-eb46-40df-9d42-55435cd1aa7c
- status: 200 OK
- code: 200
- duration: 75.192125ms
- - id: 6
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/b664fea9-b1eb-422b-9713-e6c4d15d10d8
- 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":"034967fa-95be-42e3-b2ed-844bdc6a69cf","name":"tf-vol-gracious-williams"},"creation_date":"2025-01-27T13:48:41.988267+00:00","error_details":null,"id":"b664fea9-b1eb-422b-9713-e6c4d15d10d8","modification_date":"2025-01-27T13:48:45.008922+00:00","name":"tf-snap-great-minsky","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "530"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48:47 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:
- - 87c76767-0d1d-4643-b891-c504d9c3ae4f
- status: 200 OK
- code: 200
- duration: 96.007708ms
- - id: 7
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/b664fea9-b1eb-422b-9713-e6c4d15d10d8
- 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":"034967fa-95be-42e3-b2ed-844bdc6a69cf","name":"tf-vol-gracious-williams"},"creation_date":"2025-01-27T13:48:41.988267+00:00","error_details":null,"id":"b664fea9-b1eb-422b-9713-e6c4d15d10d8","modification_date":"2025-01-27T13:48:45.008922+00:00","name":"tf-snap-great-minsky","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "530"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48:47 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:
- - 5ce0a7a0-f3d5-4604-a064-f259304cdf07
- status: 200 OK
- code: 200
- duration: 95.929625ms
- - id: 8
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/034967fa-95be-42e3-b2ed-844bdc6a69cf
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 446
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:48:41.612199+00:00","export_uri":null,"id":"034967fa-95be-42e3-b2ed-844bdc6a69cf","modification_date":"2025-01-27T13:48:45.008922+00:00","name":"tf-vol-gracious-williams","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "446"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48:47 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:
- - b439b5d3-cd90-4913-bc15-1f3e89524ba0
- status: 200 OK
- code: 200
- duration: 88.870041ms
- - id: 9
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/b664fea9-b1eb-422b-9713-e6c4d15d10d8
- 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":"034967fa-95be-42e3-b2ed-844bdc6a69cf","name":"tf-vol-gracious-williams"},"creation_date":"2025-01-27T13:48:41.988267+00:00","error_details":null,"id":"b664fea9-b1eb-422b-9713-e6c4d15d10d8","modification_date":"2025-01-27T13:48:45.008922+00:00","name":"tf-snap-great-minsky","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "530"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48:47 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:
- - e920af8b-6f43-48a0-8c03-219451d606b1
- status: 200 OK
- code: 200
- duration: 74.082542ms
- - id: 10
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/b664fea9-b1eb-422b-9713-e6c4d15d10d8
- 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":"034967fa-95be-42e3-b2ed-844bdc6a69cf","name":"tf-vol-gracious-williams"},"creation_date":"2025-01-27T13:48:41.988267+00:00","error_details":null,"id":"b664fea9-b1eb-422b-9713-e6c4d15d10d8","modification_date":"2025-01-27T13:48:45.008922+00:00","name":"tf-snap-great-minsky","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "530"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48:47 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:
- - dad8a220-9f55-40af-b9e2-9e0b6cff1ac4
- status: 200 OK
- code: 200
- duration: 94.918625ms
- - id: 11
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/b664fea9-b1eb-422b-9713-e6c4d15d10d8
- method: DELETE
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 0
- uncompressed: false
- body: ""
- headers:
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48:48 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:
- - 026ea82e-4015-4d96-b96d-33a08621b928
- status: 204 No Content
- code: 204
- duration: 130.514708ms
- - id: 12
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/b664fea9-b1eb-422b-9713-e6c4d15d10d8
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 145
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"b664fea9-b1eb-422b-9713-e6c4d15d10d8","type":"not_found"}'
- headers:
- Content-Length:
- - "145"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48:48 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:
- - 32d5603f-435e-4848-a873-19c45531ab37
- status: 404 Not Found
- code: 404
- duration: 35.032041ms
- - id: 13
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/034967fa-95be-42e3-b2ed-844bdc6a69cf
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 446
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:48:41.612199+00:00","export_uri":null,"id":"034967fa-95be-42e3-b2ed-844bdc6a69cf","modification_date":"2025-01-27T13:48:45.008922+00:00","name":"tf-vol-gracious-williams","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "446"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48:48 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:
- - 1e5fb637-9a8e-4cfe-ae4e-a5114f5db122
- status: 200 OK
- code: 200
- duration: 76.836958ms
- - id: 14
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/034967fa-95be-42e3-b2ed-844bdc6a69cf
- method: DELETE
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 0
- uncompressed: false
- body: ""
- headers:
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48:48 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:
- - 14dd7971-bc69-4f08-bffc-4480c1aaec97
- status: 204 No Content
- code: 204
- duration: 150.94175ms
- - id: 15
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/034967fa-95be-42e3-b2ed-844bdc6a69cf
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 143
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"034967fa-95be-42e3-b2ed-844bdc6a69cf","type":"not_found"}'
- headers:
- Content-Length:
- - "143"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48:48 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:
- - 98718135-3068-4211-990f-608aaef39908
- status: 404 Not Found
- code: 404
- duration: 36.307375ms
diff --git a/internal/services/instance/testdata/snapshot-from-object.cassette.yaml b/internal/services/instance/testdata/snapshot-from-object.cassette.yaml
deleted file mode 100644
index edb11bae68..0000000000
--- a/internal/services/instance/testdata/snapshot-from-object.cassette.yaml
+++ /dev/null
@@ -1,5508 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: test-instance-snapshot-import-from-object.s3.fr-par.scw.cloud
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- Accept-Encoding:
- - identity
- Amz-Sdk-Invocation-Id:
- - 73df1e10-367f-4ba3-ae95-50314472cfd6
- Amz-Sdk-Request:
- - attempt=1; max=3
- User-Agent:
- - aws-sdk-go-v2/1.36.0 ua/2.1 os/macos lang/go#1.23.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.75.2 m/E
- X-Amz-Content-Sha256:
- - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
- X-Amz-Date:
- - 20250205T135904Z
- url: https://test-instance-snapshot-import-from-object.s3.fr-par.scw.cloud/
- method: PUT
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 0
- uncompressed: false
- body: ""
- headers:
- Content-Length:
- - "0"
- Date:
- - Wed, 05 Feb 2025 13:59:05 GMT
- Location:
- - /test-instance-snapshot-import-from-object
- X-Amz-Id-2:
- - txgaed5d12589b94b29b45c-0067a36ea9
- X-Amz-Request-Id:
- - txgaed5d12589b94b29b45c-0067a36ea9
- status: 200 OK
- code: 200
- duration: 854.092291ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: test-instance-snapshot-import-from-object.s3.fr-par.scw.cloud
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- Accept-Encoding:
- - identity
- Amz-Sdk-Invocation-Id:
- - be2a9219-648c-42c4-87c8-b73c4e4db280
- Amz-Sdk-Request:
- - attempt=1; max=3
- User-Agent:
- - aws-sdk-go-v2/1.36.0 ua/2.1 os/macos lang/go#1.23.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.75.2 m/E,Z
- X-Amz-Acl:
- - private
- X-Amz-Checksum-Crc32:
- - AAAAAA==
- X-Amz-Content-Sha256:
- - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
- X-Amz-Date:
- - 20250205T135905Z
- url: https://test-instance-snapshot-import-from-object.s3.fr-par.scw.cloud/?acl=
- method: PUT
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 0
- uncompressed: false
- body: ""
- headers:
- Content-Length:
- - "0"
- Date:
- - Wed, 05 Feb 2025 13:59:05 GMT
- X-Amz-Id-2:
- - txgb2dbf322f02c4fdca45a-0067a36ea9
- X-Amz-Request-Id:
- - txgb2dbf322f02c4fdca45a-0067a36ea9
- status: 200 OK
- code: 200
- duration: 41.041167ms
- - id: 2
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: test-instance-snapshot-import-from-object.s3.fr-par.scw.cloud
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- Accept-Encoding:
- - identity
- Amz-Sdk-Invocation-Id:
- - 38008341-b3ee-4e49-b4cb-fbb45d8c6034
- Amz-Sdk-Request:
- - attempt=1; max=3
- User-Agent:
- - aws-sdk-go-v2/1.36.0 ua/2.1 os/macos lang/go#1.23.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.75.2 m/E
- X-Amz-Content-Sha256:
- - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
- X-Amz-Date:
- - 20250205T135905Z
- url: https://test-instance-snapshot-import-from-object.s3.fr-par.scw.cloud/?acl=
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 698
- uncompressed: false
- body: |-
-
- 951df375-e094-4d26-97c1-ba548eeb9c42:951df375-e094-4d26-97c1-ba548eeb9c42951df375-e094-4d26-97c1-ba548eeb9c42:951df375-e094-4d26-97c1-ba548eeb9c42951df375-e094-4d26-97c1-ba548eeb9c42:951df375-e094-4d26-97c1-ba548eeb9c42951df375-e094-4d26-97c1-ba548eeb9c42:951df375-e094-4d26-97c1-ba548eeb9c42FULL_CONTROL
- headers:
- Content-Length:
- - "698"
- Content-Type:
- - text/xml; charset=utf-8
- Date:
- - Wed, 05 Feb 2025 13:59:05 GMT
- X-Amz-Id-2:
- - txgc5a9f7a4a0054186ab21-0067a36ea9
- X-Amz-Request-Id:
- - txgc5a9f7a4a0054186ab21-0067a36ea9
- status: 200 OK
- code: 200
- duration: 20.095ms
- - id: 3
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: test-instance-snapshot-import-from-object.s3.fr-par.scw.cloud
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- Accept-Encoding:
- - identity
- Amz-Sdk-Invocation-Id:
- - 8951d81d-77ce-43b6-a214-2fe0dd7acc34
- Amz-Sdk-Request:
- - attempt=1; max=3
- User-Agent:
- - aws-sdk-go-v2/1.36.0 ua/2.1 os/macos lang/go#1.23.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.75.2 m/E
- X-Amz-Content-Sha256:
- - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
- X-Amz-Date:
- - 20250205T135905Z
- url: https://test-instance-snapshot-import-from-object.s3.fr-par.scw.cloud/?object-lock=
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 310
- uncompressed: false
- body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxgb82cfab58db148059bf5-0067a36ea9txgb82cfab58db148059bf5-0067a36ea9/test-instance-snapshot-import-from-object
- headers:
- Content-Length:
- - "310"
- Content-Type:
- - application/xml
- Date:
- - Wed, 05 Feb 2025 13:59:05 GMT
- X-Amz-Id-2:
- - txgb82cfab58db148059bf5-0067a36ea9
- X-Amz-Request-Id:
- - txgb82cfab58db148059bf5-0067a36ea9
- status: 404 Not Found
- code: 404
- duration: 17.559083ms
- - id: 4
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: test-instance-snapshot-import-from-object.s3.fr-par.scw.cloud
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- Accept-Encoding:
- - identity
- Amz-Sdk-Invocation-Id:
- - f2c0b508-eae7-45ba-adfc-1a92c32418ea
- Amz-Sdk-Request:
- - attempt=1; max=3
- User-Agent:
- - aws-sdk-go-v2/1.36.0 ua/2.1 os/macos lang/go#1.23.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.75.2 m/E
- X-Amz-Content-Sha256:
- - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
- X-Amz-Date:
- - 20250205T135905Z
- url: https://test-instance-snapshot-import-from-object.s3.fr-par.scw.cloud/
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 267
- uncompressed: false
- body: |-
-
- test-instance-snapshot-import-from-object1000false
- headers:
- Content-Length:
- - "267"
- Content-Type:
- - application/xml
- Date:
- - Wed, 05 Feb 2025 13:59:05 GMT
- X-Amz-Id-2:
- - txgcb9a4ee0d0034e118d44-0067a36ea9
- X-Amz-Request-Id:
- - txgcb9a4ee0d0034e118d44-0067a36ea9
- status: 200 OK
- code: 200
- duration: 50.646875ms
- - id: 5
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: test-instance-snapshot-import-from-object.s3.fr-par.scw.cloud
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- Accept-Encoding:
- - identity
- Amz-Sdk-Invocation-Id:
- - f6ebe89a-864a-4588-9c0c-d467ac2463ea
- Amz-Sdk-Request:
- - attempt=1; max=3
- User-Agent:
- - aws-sdk-go-v2/1.36.0 ua/2.1 os/macos lang/go#1.23.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.75.2 m/E
- X-Amz-Content-Sha256:
- - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
- X-Amz-Date:
- - 20250205T135905Z
- url: https://test-instance-snapshot-import-from-object.s3.fr-par.scw.cloud/?tagging=
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 321
- uncompressed: false
- body: NoSuchTagSetThe TagSet does not existtxgf51e36819ee74666bdd9-0067a36ea9txgf51e36819ee74666bdd9-0067a36ea9/test-instance-snapshot-import-from-objecttest-instance-snapshot-import-from-object
- headers:
- Content-Length:
- - "321"
- Content-Type:
- - application/xml
- Date:
- - Wed, 05 Feb 2025 13:59:05 GMT
- X-Amz-Id-2:
- - txgf51e36819ee74666bdd9-0067a36ea9
- X-Amz-Request-Id:
- - txgf51e36819ee74666bdd9-0067a36ea9
- status: 404 Not Found
- code: 404
- duration: 51.408083ms
- - id: 6
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: test-instance-snapshot-import-from-object.s3.fr-par.scw.cloud
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- Accept-Encoding:
- - identity
- Amz-Sdk-Invocation-Id:
- - 6965beae-c2aa-4046-8d7a-9482ed3a9389
- Amz-Sdk-Request:
- - attempt=1; max=3
- User-Agent:
- - aws-sdk-go-v2/1.36.0 ua/2.1 os/macos lang/go#1.23.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.75.2 m/E
- X-Amz-Content-Sha256:
- - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
- X-Amz-Date:
- - 20250205T135905Z
- url: https://test-instance-snapshot-import-from-object.s3.fr-par.scw.cloud/?cors=
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 278
- uncompressed: false
- body: NoSuchCORSConfigurationThe CORS configuration does not existtxg34811e7db0324a489030-0067a36ea9txg34811e7db0324a489030-0067a36ea9/test-instance-snapshot-import-from-object
- headers:
- Content-Length:
- - "278"
- Content-Type:
- - application/xml
- Date:
- - Wed, 05 Feb 2025 13:59:05 GMT
- X-Amz-Id-2:
- - txg34811e7db0324a489030-0067a36ea9
- X-Amz-Request-Id:
- - txg34811e7db0324a489030-0067a36ea9
- status: 404 Not Found
- code: 404
- duration: 46.736542ms
- - id: 7
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: test-instance-snapshot-import-from-object.s3.fr-par.scw.cloud
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- Accept-Encoding:
- - identity
- Amz-Sdk-Invocation-Id:
- - df87a134-6782-495a-8459-a9a4561502eb
- Amz-Sdk-Request:
- - attempt=1; max=3
- User-Agent:
- - aws-sdk-go-v2/1.36.0 ua/2.1 os/macos lang/go#1.23.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.75.2 m/E
- X-Amz-Content-Sha256:
- - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
- X-Amz-Date:
- - 20250205T135905Z
- url: https://test-instance-snapshot-import-from-object.s3.fr-par.scw.cloud/?versioning=
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 155
- uncompressed: false
- body: |-
-
-
- headers:
- Content-Length:
- - "155"
- Content-Type:
- - text/xml; charset=utf-8
- Date:
- - Wed, 05 Feb 2025 13:59:05 GMT
- X-Amz-Id-2:
- - txga3edbed6c0544d94821c-0067a36ea9
- X-Amz-Request-Id:
- - txga3edbed6c0544d94821c-0067a36ea9
- status: 200 OK
- code: 200
- duration: 7.054667ms
- - id: 8
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: test-instance-snapshot-import-from-object.s3.fr-par.scw.cloud
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- Accept-Encoding:
- - identity
- Amz-Sdk-Invocation-Id:
- - 977030c1-440a-43f2-875d-df1efc977f92
- Amz-Sdk-Request:
- - attempt=1; max=3
- User-Agent:
- - aws-sdk-go-v2/1.36.0 ua/2.1 os/macos lang/go#1.23.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.75.2 m/E
- X-Amz-Content-Sha256:
- - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
- X-Amz-Date:
- - 20250205T135905Z
- url: https://test-instance-snapshot-import-from-object.s3.fr-par.scw.cloud/?lifecycle=
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 354
- uncompressed: false
- body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxg167f250a59da4538952a-0067a36ea9txg167f250a59da4538952a-0067a36ea9/test-instance-snapshot-import-from-objecttest-instance-snapshot-import-from-object
- headers:
- Content-Length:
- - "354"
- Content-Type:
- - application/xml
- Date:
- - Wed, 05 Feb 2025 13:59:05 GMT
- X-Amz-Id-2:
- - txg167f250a59da4538952a-0067a36ea9
- X-Amz-Request-Id:
- - txg167f250a59da4538952a-0067a36ea9
- status: 404 Not Found
- code: 404
- duration: 11.664916ms
- - id: 9
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 196813
- transfer_encoding: []
- trailer: {}
- host: test-instance-snapshot-import-from-object.s3.fr-par.scw.cloud
- remote_addr: ""
- request_uri: ""
- body: !!binary |
- MzAwYTANClFGSfsAAAADAAAAAAAAAAAAAAAAAAAAEAAAAAKAAAAAAAAAAAAAABQAAAAAAA
- MAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAQAAABwAAAAAAAAAABoA/hXAAABgAAAZGlydHkgYml0AAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAABY29ycnVwdCBiaXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAACZXh0ZXJuYWwgZGF0YSBmaWxlAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAADY29tcHJlc3Npb24gdHlwZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAEZXh0ZW5kZWQgTDIgZW50cmllcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- EAbGF6eSByZWZjb3VudHMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAYml0
- bWFwcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIBcmF3IGV4dG
- VybmFsIGRhdGEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAQABAAEAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAANCjANCngtYW16LWNoZWNrc3VtLWNyYzMyOkFXU2k2UT09DQoNCg==
- form: {}
- headers:
- Accept-Encoding:
- - identity
- Amz-Sdk-Invocation-Id:
- - a328f7e1-6f40-4918-a97f-380ea7481b97
- Amz-Sdk-Request:
- - attempt=1; max=3
- Content-Encoding:
- - aws-chunked
- Content-Type:
- - application/octet-stream
- User-Agent:
- - aws-sdk-go-v2/1.36.0 ua/2.1 os/macos lang/go#1.23.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.75.2 m/E,Z
- X-Amz-Content-Sha256:
- - STREAMING-UNSIGNED-PAYLOAD-TRAILER
- X-Amz-Date:
- - 20250205T135905Z
- X-Amz-Decoded-Content-Length:
- - "196768"
- X-Amz-Trailer:
- - x-amz-checksum-crc32
- url: https://test-instance-snapshot-import-from-object.s3.fr-par.scw.cloud/image.qcow?x-id=PutObject
- method: PUT
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 0
- uncompressed: false
- body: ""
- headers:
- Content-Length:
- - "0"
- Date:
- - Wed, 05 Feb 2025 13:59:06 GMT
- Etag:
- - '"1d4589798b8a63a6afa7150492ca3193"'
- X-Amz-Checksum-Crc32:
- - AWSi6Q==
- X-Amz-Id-2:
- - txg05a0975ec6f14689b3d0-0067a36eaa
- X-Amz-Request-Id:
- - txg05a0975ec6f14689b3d0-0067a36eaa
- status: 200 OK
- code: 200
- duration: 465.34475ms
- - id: 10
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: test-instance-snapshot-import-from-object.s3.fr-par.scw.cloud
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- Accept-Encoding:
- - identity
- Amz-Sdk-Invocation-Id:
- - 603a45c4-d8da-4df6-9b91-341082ecd3d1
- Amz-Sdk-Request:
- - attempt=1; max=3
- User-Agent:
- - aws-sdk-go-v2/1.36.0 ua/2.1 os/macos lang/go#1.23.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.75.2 m/E
- X-Amz-Content-Sha256:
- - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
- X-Amz-Date:
- - 20250205T135906Z
- url: https://test-instance-snapshot-import-from-object.s3.fr-par.scw.cloud/image.qcow
- method: HEAD
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 196768
- uncompressed: false
- body: ""
- headers:
- Accept-Ranges:
- - bytes
- Content-Encoding:
- - aws-chunked
- Content-Length:
- - "196768"
- Content-Type:
- - application/octet-stream
- Date:
- - Wed, 05 Feb 2025 13:59:06 GMT
- Etag:
- - '"1d4589798b8a63a6afa7150492ca3193"'
- Last-Modified:
- - Wed, 05 Feb 2025 13:59:06 GMT
- X-Amz-Id-2:
- - txg060fbfc8d895433d9e81-0067a36eaa
- X-Amz-Request-Id:
- - txg060fbfc8d895433d9e81-0067a36eaa
- status: 200 OK
- code: 200
- duration: 22.288166ms
- - id: 11
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: test-instance-snapshot-import-from-object.s3.fr-par.scw.cloud
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- Accept-Encoding:
- - identity
- Amz-Sdk-Invocation-Id:
- - 98cb3115-cc18-4a0e-a460-d14ffc8346fa
- Amz-Sdk-Request:
- - attempt=1; max=3
- User-Agent:
- - aws-sdk-go-v2/1.36.0 ua/2.1 os/macos lang/go#1.23.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.75.2 m/E
- X-Amz-Content-Sha256:
- - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
- X-Amz-Date:
- - 20250205T135906Z
- url: https://test-instance-snapshot-import-from-object.s3.fr-par.scw.cloud/image.qcow?tagging=
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 75
- uncompressed: false
- body: |-
-
-
- headers:
- Content-Length:
- - "75"
- Content-Type:
- - text/xml; charset=utf-8
- Date:
- - Wed, 05 Feb 2025 13:59:06 GMT
- X-Amz-Id-2:
- - txgd269b54a08af4353bff6-0067a36eaa
- X-Amz-Request-Id:
- - txgd269b54a08af4353bff6-0067a36eaa
- status: 200 OK
- code: 200
- duration: 10.327708ms
- - id: 12
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: test-instance-snapshot-import-from-object.s3.fr-par.scw.cloud
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- Accept-Encoding:
- - identity
- Amz-Sdk-Invocation-Id:
- - dcf35593-a7f2-4dd1-b221-de61e97bf686
- Amz-Sdk-Request:
- - attempt=1; max=3
- User-Agent:
- - aws-sdk-go-v2/1.36.0 ua/2.1 os/macos lang/go#1.23.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.75.2 m/E
- X-Amz-Content-Sha256:
- - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
- X-Amz-Date:
- - 20250205T135906Z
- url: https://test-instance-snapshot-import-from-object.s3.fr-par.scw.cloud/image.qcow?acl=
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 698
- uncompressed: false
- body: |-
-
- 951df375-e094-4d26-97c1-ba548eeb9c42:951df375-e094-4d26-97c1-ba548eeb9c42951df375-e094-4d26-97c1-ba548eeb9c42:951df375-e094-4d26-97c1-ba548eeb9c42951df375-e094-4d26-97c1-ba548eeb9c42:951df375-e094-4d26-97c1-ba548eeb9c42951df375-e094-4d26-97c1-ba548eeb9c42:951df375-e094-4d26-97c1-ba548eeb9c42FULL_CONTROL
- headers:
- Content-Length:
- - "698"
- Content-Type:
- - text/xml; charset=utf-8
- Date:
- - Wed, 05 Feb 2025 13:59:06 GMT
- X-Amz-Id-2:
- - txg85ca5fc5cb7a4e4291a8-0067a36eaa
- X-Amz-Request-Id:
- - txg85ca5fc5cb7a4e4291a8-0067a36eaa
- status: 200 OK
- code: 200
- duration: 8.728625ms
- - id: 13
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 195
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"name":"test-instance-snapshot-import-from-object","project":"951df375-e094-4d26-97c1-ba548eeb9c42","volume_type":"b_ssd","bucket":"test-instance-snapshot-import-from-object","key":"image.qcow"}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 784
- uncompressed: false
- body: '{"snapshot":{"base_volume":null,"creation_date":"2025-02-05T13:59:07.481412+00:00","error_details":null,"id":"00bc51c5-cf7d-47ef-96b8-7ffeae98b238","modification_date":"2025-02-05T13:59:07.481412+00:00","name":"test-instance-snapshot-import-from-object","organization":"951df375-e094-4d26-97c1-ba548eeb9c42","project":"951df375-e094-4d26-97c1-ba548eeb9c42","size":10737418240,"state":"importing","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"},"task":{"description":"import_snapshot","href_from":"/snapshots","href_result":"snapshots/00bc51c5-cf7d-47ef-96b8-7ffeae98b238","id":"2726a100-7c01-4763-b335-43a4c96bc1fe","progress":0,"started_at":"2025-02-05T13:59:07.603102+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "784"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 05 Feb 2025 13:59:07 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - c57e263e-d841-4ad4-b674-357c7b57db25
- status: 201 Created
- code: 201
- duration: 1.115838334s
- - id: 14
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/00bc51c5-cf7d-47ef-96b8-7ffeae98b238
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 473
- uncompressed: false
- body: '{"snapshot":{"base_volume":null,"creation_date":"2025-02-05T13:59:07.481412+00:00","error_details":null,"id":"00bc51c5-cf7d-47ef-96b8-7ffeae98b238","modification_date":"2025-02-05T13:59:07.481412+00:00","name":"test-instance-snapshot-import-from-object","organization":"951df375-e094-4d26-97c1-ba548eeb9c42","project":"951df375-e094-4d26-97c1-ba548eeb9c42","size":10737418240,"state":"importing","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "473"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 05 Feb 2025 13:59:07 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - d64ae5fa-2731-4b8c-8183-7cea0aec730c
- status: 200 OK
- code: 200
- duration: 41.531375ms
- - id: 15
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/00bc51c5-cf7d-47ef-96b8-7ffeae98b238
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 473
- uncompressed: false
- body: '{"snapshot":{"base_volume":null,"creation_date":"2025-02-05T13:59:07.481412+00:00","error_details":null,"id":"00bc51c5-cf7d-47ef-96b8-7ffeae98b238","modification_date":"2025-02-05T13:59:10.617532+00:00","name":"test-instance-snapshot-import-from-object","organization":"951df375-e094-4d26-97c1-ba548eeb9c42","project":"951df375-e094-4d26-97c1-ba548eeb9c42","size":10737418240,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "473"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 05 Feb 2025 13:59:12 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 9d845919-8af7-4bda-b813-f42d6fb8ebb8
- status: 200 OK
- code: 200
- duration: 68.125583ms
- - id: 16
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/00bc51c5-cf7d-47ef-96b8-7ffeae98b238
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 473
- uncompressed: false
- body: '{"snapshot":{"base_volume":null,"creation_date":"2025-02-05T13:59:07.481412+00:00","error_details":null,"id":"00bc51c5-cf7d-47ef-96b8-7ffeae98b238","modification_date":"2025-02-05T13:59:10.617532+00:00","name":"test-instance-snapshot-import-from-object","organization":"951df375-e094-4d26-97c1-ba548eeb9c42","project":"951df375-e094-4d26-97c1-ba548eeb9c42","size":10737418240,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "473"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 05 Feb 2025 13:59:12 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 6b0f7c44-dc9d-4710-a4e4-c8812d034976
- status: 200 OK
- code: 200
- duration: 61.751791ms
- - id: 17
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/00bc51c5-cf7d-47ef-96b8-7ffeae98b238
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 473
- uncompressed: false
- body: '{"snapshot":{"base_volume":null,"creation_date":"2025-02-05T13:59:07.481412+00:00","error_details":null,"id":"00bc51c5-cf7d-47ef-96b8-7ffeae98b238","modification_date":"2025-02-05T13:59:10.617532+00:00","name":"test-instance-snapshot-import-from-object","organization":"951df375-e094-4d26-97c1-ba548eeb9c42","project":"951df375-e094-4d26-97c1-ba548eeb9c42","size":10737418240,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "473"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 05 Feb 2025 13:59:12 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 85c97471-5df8-453e-934d-83d647ab3f38
- status: 200 OK
- code: 200
- duration: 52.16575ms
- - id: 18
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: test-instance-snapshot-import-from-object.s3.fr-par.scw.cloud
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- Accept-Encoding:
- - identity
- Amz-Sdk-Invocation-Id:
- - c16de155-15b0-41ca-9011-0e2fb0763419
- Amz-Sdk-Request:
- - attempt=1; max=3
- User-Agent:
- - aws-sdk-go-v2/1.36.0 ua/2.1 os/macos lang/go#1.23.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.75.2 m/E
- X-Amz-Content-Sha256:
- - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
- X-Amz-Date:
- - 20250205T135913Z
- url: https://test-instance-snapshot-import-from-object.s3.fr-par.scw.cloud/?acl=
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 698
- uncompressed: false
- body: |-
-
- 951df375-e094-4d26-97c1-ba548eeb9c42:951df375-e094-4d26-97c1-ba548eeb9c42951df375-e094-4d26-97c1-ba548eeb9c42:951df375-e094-4d26-97c1-ba548eeb9c42951df375-e094-4d26-97c1-ba548eeb9c42:951df375-e094-4d26-97c1-ba548eeb9c42951df375-e094-4d26-97c1-ba548eeb9c42:951df375-e094-4d26-97c1-ba548eeb9c42FULL_CONTROL
- headers:
- Content-Length:
- - "698"
- Content-Type:
- - text/xml; charset=utf-8
- Date:
- - Wed, 05 Feb 2025 13:59:13 GMT
- X-Amz-Id-2:
- - txga88baae6cdd340e38182-0067a36eb1
- X-Amz-Request-Id:
- - txga88baae6cdd340e38182-0067a36eb1
- status: 200 OK
- code: 200
- duration: 425.85525ms
- - id: 19
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: test-instance-snapshot-import-from-object.s3.fr-par.scw.cloud
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- Accept-Encoding:
- - identity
- Amz-Sdk-Invocation-Id:
- - f1b011c3-e56c-4411-b90c-103baa1140e5
- Amz-Sdk-Request:
- - attempt=1; max=3
- User-Agent:
- - aws-sdk-go-v2/1.36.0 ua/2.1 os/macos lang/go#1.23.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.75.2 m/E
- X-Amz-Content-Sha256:
- - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
- X-Amz-Date:
- - 20250205T135913Z
- url: https://test-instance-snapshot-import-from-object.s3.fr-par.scw.cloud/?object-lock=
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 310
- uncompressed: false
- body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxg5ec3589d05f4460fbafa-0067a36eb1txg5ec3589d05f4460fbafa-0067a36eb1/test-instance-snapshot-import-from-object
- headers:
- Content-Length:
- - "310"
- Content-Type:
- - application/xml
- Date:
- - Wed, 05 Feb 2025 13:59:13 GMT
- X-Amz-Id-2:
- - txg5ec3589d05f4460fbafa-0067a36eb1
- X-Amz-Request-Id:
- - txg5ec3589d05f4460fbafa-0067a36eb1
- status: 404 Not Found
- code: 404
- duration: 215.076792ms
- - id: 20
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: test-instance-snapshot-import-from-object.s3.fr-par.scw.cloud
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- Accept-Encoding:
- - identity
- Amz-Sdk-Invocation-Id:
- - 818c5533-f128-4c84-8d87-005a5cab1fdf
- Amz-Sdk-Request:
- - attempt=1; max=3
- User-Agent:
- - aws-sdk-go-v2/1.36.0 ua/2.1 os/macos lang/go#1.23.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.75.2 m/E
- X-Amz-Content-Sha256:
- - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
- X-Amz-Date:
- - 20250205T135913Z
- url: https://test-instance-snapshot-import-from-object.s3.fr-par.scw.cloud/
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 714
- uncompressed: false
- body: |-
-
- test-instance-snapshot-import-from-object1000falseimage.qcow2025-02-05T13:59:06.000Z"1d4589798b8a63a6afa7150492ca3193"196768951df375-e094-4d26-97c1-ba548eeb9c42:951df375-e094-4d26-97c1-ba548eeb9c42951df375-e094-4d26-97c1-ba548eeb9c42:951df375-e094-4d26-97c1-ba548eeb9c42STANDARDCRC32
- headers:
- Content-Length:
- - "714"
- Content-Type:
- - application/xml
- Date:
- - Wed, 05 Feb 2025 13:59:13 GMT
- X-Amz-Id-2:
- - txg4c6dc41e2cd34bbaaafd-0067a36eb1
- X-Amz-Request-Id:
- - txg4c6dc41e2cd34bbaaafd-0067a36eb1
- status: 200 OK
- code: 200
- duration: 30.046125ms
- - id: 21
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: test-instance-snapshot-import-from-object.s3.fr-par.scw.cloud
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- Accept-Encoding:
- - identity
- Amz-Sdk-Invocation-Id:
- - 9cd30e13-165d-4ee3-b5d8-e83e3fd989c8
- Amz-Sdk-Request:
- - attempt=1; max=3
- User-Agent:
- - aws-sdk-go-v2/1.36.0 ua/2.1 os/macos lang/go#1.23.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.75.2 m/E
- X-Amz-Content-Sha256:
- - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
- X-Amz-Date:
- - 20250205T135913Z
- url: https://test-instance-snapshot-import-from-object.s3.fr-par.scw.cloud/?tagging=
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 321
- uncompressed: false
- body: NoSuchTagSetThe TagSet does not existtxg59e5e62ac284445dbd7a-0067a36eb1txg59e5e62ac284445dbd7a-0067a36eb1/test-instance-snapshot-import-from-objecttest-instance-snapshot-import-from-object
- headers:
- Content-Length:
- - "321"
- Content-Type:
- - application/xml
- Date:
- - Wed, 05 Feb 2025 13:59:13 GMT
- X-Amz-Id-2:
- - txg59e5e62ac284445dbd7a-0067a36eb1
- X-Amz-Request-Id:
- - txg59e5e62ac284445dbd7a-0067a36eb1
- status: 404 Not Found
- code: 404
- duration: 42.073125ms
- - id: 22
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: test-instance-snapshot-import-from-object.s3.fr-par.scw.cloud
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- Accept-Encoding:
- - identity
- Amz-Sdk-Invocation-Id:
- - b48aff5d-069f-46ad-bdf0-560ebcd0e6cb
- Amz-Sdk-Request:
- - attempt=1; max=3
- User-Agent:
- - aws-sdk-go-v2/1.36.0 ua/2.1 os/macos lang/go#1.23.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.75.2 m/E
- X-Amz-Content-Sha256:
- - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
- X-Amz-Date:
- - 20250205T135913Z
- url: https://test-instance-snapshot-import-from-object.s3.fr-par.scw.cloud/?cors=
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 278
- uncompressed: false
- body: NoSuchCORSConfigurationThe CORS configuration does not existtxgcf30af80aea349e19d9e-0067a36eb1txgcf30af80aea349e19d9e-0067a36eb1/test-instance-snapshot-import-from-object
- headers:
- Content-Length:
- - "278"
- Content-Type:
- - application/xml
- Date:
- - Wed, 05 Feb 2025 13:59:13 GMT
- X-Amz-Id-2:
- - txgcf30af80aea349e19d9e-0067a36eb1
- X-Amz-Request-Id:
- - txgcf30af80aea349e19d9e-0067a36eb1
- status: 404 Not Found
- code: 404
- duration: 11.607667ms
- - id: 23
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: test-instance-snapshot-import-from-object.s3.fr-par.scw.cloud
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- Accept-Encoding:
- - identity
- Amz-Sdk-Invocation-Id:
- - c93053a7-0703-48c3-a1a3-f6ff08c92c16
- Amz-Sdk-Request:
- - attempt=1; max=3
- User-Agent:
- - aws-sdk-go-v2/1.36.0 ua/2.1 os/macos lang/go#1.23.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.75.2 m/E
- X-Amz-Content-Sha256:
- - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
- X-Amz-Date:
- - 20250205T135913Z
- url: https://test-instance-snapshot-import-from-object.s3.fr-par.scw.cloud/?versioning=
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 155
- uncompressed: false
- body: |-
-
-
- headers:
- Content-Length:
- - "155"
- Content-Type:
- - text/xml; charset=utf-8
- Date:
- - Wed, 05 Feb 2025 13:59:13 GMT
- X-Amz-Id-2:
- - txg7ed075789a6f4490970d-0067a36eb1
- X-Amz-Request-Id:
- - txg7ed075789a6f4490970d-0067a36eb1
- status: 200 OK
- code: 200
- duration: 13.648458ms
- - id: 24
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: test-instance-snapshot-import-from-object.s3.fr-par.scw.cloud
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- Accept-Encoding:
- - identity
- Amz-Sdk-Invocation-Id:
- - 15a51d18-4034-4ea4-b46e-eabe7c244cc8
- Amz-Sdk-Request:
- - attempt=1; max=3
- User-Agent:
- - aws-sdk-go-v2/1.36.0 ua/2.1 os/macos lang/go#1.23.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.75.2 m/E
- X-Amz-Content-Sha256:
- - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
- X-Amz-Date:
- - 20250205T135913Z
- url: https://test-instance-snapshot-import-from-object.s3.fr-par.scw.cloud/?lifecycle=
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 354
- uncompressed: false
- body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxgc77e3dd8e3b24beb8fc2-0067a36eb1txgc77e3dd8e3b24beb8fc2-0067a36eb1/test-instance-snapshot-import-from-objecttest-instance-snapshot-import-from-object
- headers:
- Content-Length:
- - "354"
- Content-Type:
- - application/xml
- Date:
- - Wed, 05 Feb 2025 13:59:13 GMT
- X-Amz-Id-2:
- - txgc77e3dd8e3b24beb8fc2-0067a36eb1
- X-Amz-Request-Id:
- - txgc77e3dd8e3b24beb8fc2-0067a36eb1
- status: 404 Not Found
- code: 404
- duration: 15.195667ms
- - id: 25
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: test-instance-snapshot-import-from-object.s3.fr-par.scw.cloud
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- Accept-Encoding:
- - identity
- Amz-Sdk-Invocation-Id:
- - 67227829-ebae-4740-9738-3a19181a6487
- Amz-Sdk-Request:
- - attempt=1; max=3
- User-Agent:
- - aws-sdk-go-v2/1.36.0 ua/2.1 os/macos lang/go#1.23.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.75.2 m/E
- X-Amz-Content-Sha256:
- - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
- X-Amz-Date:
- - 20250205T135913Z
- url: https://test-instance-snapshot-import-from-object.s3.fr-par.scw.cloud/image.qcow
- method: HEAD
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 196768
- uncompressed: false
- body: ""
- headers:
- Accept-Ranges:
- - bytes
- Content-Encoding:
- - aws-chunked
- Content-Length:
- - "196768"
- Content-Type:
- - application/octet-stream
- Date:
- - Wed, 05 Feb 2025 13:59:13 GMT
- Etag:
- - '"1d4589798b8a63a6afa7150492ca3193"'
- Last-Modified:
- - Wed, 05 Feb 2025 13:59:06 GMT
- X-Amz-Id-2:
- - txgfc86d8c7e99a4bf1a9b1-0067a36eb1
- X-Amz-Request-Id:
- - txgfc86d8c7e99a4bf1a9b1-0067a36eb1
- status: 200 OK
- code: 200
- duration: 43.152167ms
- - id: 26
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: test-instance-snapshot-import-from-object.s3.fr-par.scw.cloud
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- Accept-Encoding:
- - identity
- Amz-Sdk-Invocation-Id:
- - a9b65b0f-6271-4161-8324-ca60b926d9d6
- Amz-Sdk-Request:
- - attempt=1; max=3
- User-Agent:
- - aws-sdk-go-v2/1.36.0 ua/2.1 os/macos lang/go#1.23.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.75.2 m/E
- X-Amz-Content-Sha256:
- - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
- X-Amz-Date:
- - 20250205T135913Z
- url: https://test-instance-snapshot-import-from-object.s3.fr-par.scw.cloud/image.qcow?tagging=
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 75
- uncompressed: false
- body: |-
-
-
- headers:
- Content-Length:
- - "75"
- Content-Type:
- - text/xml; charset=utf-8
- Date:
- - Wed, 05 Feb 2025 13:59:13 GMT
- X-Amz-Id-2:
- - txg3989f5913f6f4588a311-0067a36eb1
- X-Amz-Request-Id:
- - txg3989f5913f6f4588a311-0067a36eb1
- status: 200 OK
- code: 200
- duration: 13.512708ms
- - id: 27
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: test-instance-snapshot-import-from-object.s3.fr-par.scw.cloud
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- Accept-Encoding:
- - identity
- Amz-Sdk-Invocation-Id:
- - ee0fdb95-ce91-4490-8dca-4b7429f76bc5
- Amz-Sdk-Request:
- - attempt=1; max=3
- User-Agent:
- - aws-sdk-go-v2/1.36.0 ua/2.1 os/macos lang/go#1.23.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.75.2 m/E
- X-Amz-Content-Sha256:
- - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
- X-Amz-Date:
- - 20250205T135913Z
- url: https://test-instance-snapshot-import-from-object.s3.fr-par.scw.cloud/image.qcow?acl=
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 698
- uncompressed: false
- body: |-
-
- 951df375-e094-4d26-97c1-ba548eeb9c42:951df375-e094-4d26-97c1-ba548eeb9c42951df375-e094-4d26-97c1-ba548eeb9c42:951df375-e094-4d26-97c1-ba548eeb9c42951df375-e094-4d26-97c1-ba548eeb9c42:951df375-e094-4d26-97c1-ba548eeb9c42951df375-e094-4d26-97c1-ba548eeb9c42:951df375-e094-4d26-97c1-ba548eeb9c42FULL_CONTROL
- headers:
- Content-Length:
- - "698"
- Content-Type:
- - text/xml; charset=utf-8
- Date:
- - Wed, 05 Feb 2025 13:59:13 GMT
- X-Amz-Id-2:
- - txg43ea2c7f044e4c68afce-0067a36eb1
- X-Amz-Request-Id:
- - txg43ea2c7f044e4c68afce-0067a36eb1
- status: 200 OK
- code: 200
- duration: 11.694459ms
- - id: 28
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/00bc51c5-cf7d-47ef-96b8-7ffeae98b238
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 473
- uncompressed: false
- body: '{"snapshot":{"base_volume":null,"creation_date":"2025-02-05T13:59:07.481412+00:00","error_details":null,"id":"00bc51c5-cf7d-47ef-96b8-7ffeae98b238","modification_date":"2025-02-05T13:59:10.617532+00:00","name":"test-instance-snapshot-import-from-object","organization":"951df375-e094-4d26-97c1-ba548eeb9c42","project":"951df375-e094-4d26-97c1-ba548eeb9c42","size":10737418240,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "473"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 05 Feb 2025 13:59:13 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 89e19661-8739-485f-ad07-3119cb50eaf7
- status: 200 OK
- code: 200
- duration: 48.163709ms
- - id: 29
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/00bc51c5-cf7d-47ef-96b8-7ffeae98b238
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 473
- uncompressed: false
- body: '{"snapshot":{"base_volume":null,"creation_date":"2025-02-05T13:59:07.481412+00:00","error_details":null,"id":"00bc51c5-cf7d-47ef-96b8-7ffeae98b238","modification_date":"2025-02-05T13:59:10.617532+00:00","name":"test-instance-snapshot-import-from-object","organization":"951df375-e094-4d26-97c1-ba548eeb9c42","project":"951df375-e094-4d26-97c1-ba548eeb9c42","size":10737418240,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "473"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 05 Feb 2025 13:59:13 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 9955d4fe-6369-4e11-a4b4-c409aa80b628
- status: 200 OK
- code: 200
- duration: 52.007458ms
- - id: 30
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/00bc51c5-cf7d-47ef-96b8-7ffeae98b238
- method: DELETE
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 0
- uncompressed: false
- body: ""
- headers:
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 05 Feb 2025 13:59:14 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 9095f1ae-2b19-4c61-b565-256ce05e1538
- status: 204 No Content
- code: 204
- duration: 122.750458ms
- - id: 31
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/00bc51c5-cf7d-47ef-96b8-7ffeae98b238
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 145
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"00bc51c5-cf7d-47ef-96b8-7ffeae98b238","type":"not_found"}'
- headers:
- Content-Length:
- - "145"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Wed, 05 Feb 2025 13:59:14 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 0ee5f7fc-45d0-46b6-8e66-baec681ac337
- status: 404 Not Found
- code: 404
- duration: 50.317042ms
- - id: 32
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: test-instance-snapshot-import-from-object.s3.fr-par.scw.cloud
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- Accept-Encoding:
- - identity
- Amz-Sdk-Invocation-Id:
- - 17b34c39-a652-4d54-a07d-3694cd160330
- Amz-Sdk-Request:
- - attempt=1; max=3
- User-Agent:
- - aws-sdk-go-v2/1.36.0 ua/2.1 os/macos lang/go#1.23.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.75.2 m/E
- X-Amz-Content-Sha256:
- - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
- X-Amz-Date:
- - 20250205T135914Z
- url: https://test-instance-snapshot-import-from-object.s3.fr-par.scw.cloud/image.qcow?x-id=DeleteObject
- method: DELETE
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 0
- uncompressed: false
- body: ""
- headers:
- Date:
- - Wed, 05 Feb 2025 13:59:14 GMT
- X-Amz-Id-2:
- - txgbd2e4263e25b4bf9b5c5-0067a36eb2
- X-Amz-Request-Id:
- - txgbd2e4263e25b4bf9b5c5-0067a36eb2
- status: 204 No Content
- code: 204
- duration: 31.355625ms
- - id: 33
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: test-instance-snapshot-import-from-object.s3.fr-par.scw.cloud
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- Accept-Encoding:
- - identity
- Amz-Sdk-Invocation-Id:
- - da115355-baba-44c5-9863-530111a772cb
- Amz-Sdk-Request:
- - attempt=1; max=3
- User-Agent:
- - aws-sdk-go-v2/1.36.0 ua/2.1 os/macos lang/go#1.23.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.75.2 m/E
- X-Amz-Content-Sha256:
- - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
- X-Amz-Date:
- - 20250205T135914Z
- url: https://test-instance-snapshot-import-from-object.s3.fr-par.scw.cloud/
- method: DELETE
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 0
- uncompressed: false
- body: ""
- headers:
- Date:
- - Wed, 05 Feb 2025 13:59:14 GMT
- X-Amz-Id-2:
- - txg4714bdfece314b26b9e9-0067a36eb2
- X-Amz-Request-Id:
- - txg4714bdfece314b26b9e9-0067a36eb2
- status: 204 No Content
- code: 204
- duration: 68.611292ms
diff --git a/internal/services/instance/testdata/snapshot-rename-snapshot.cassette.yaml b/internal/services/instance/testdata/snapshot-rename-snapshot.cassette.yaml
deleted file mode 100644
index f1e97a9378..0000000000
--- a/internal/services/instance/testdata/snapshot-rename-snapshot.cassette.yaml
+++ /dev/null
@@ -1,1134 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 120
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"name":"tf-vol-epic-haslett","project":"105bdce1-64c0-48ab-899d-868455867ecf","volume_type":"b_ssd","size":20000000000}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 441
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:48:13.288145+00:00","export_uri":null,"id":"5e1283ae-2437-4b08-b0fc-32a6f9478ce5","modification_date":"2025-01-27T13:48:13.288145+00:00","name":"tf-vol-epic-haslett","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "441"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48:12 GMT
- Location:
- - https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5e1283ae-2437-4b08-b0fc-32a6f9478ce5
- 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:
- - 39147c44-ba2e-471b-88f6-a5e601c04c28
- status: 201 Created
- code: 201
- duration: 204.810542ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5e1283ae-2437-4b08-b0fc-32a6f9478ce5
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 441
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:48:13.288145+00:00","export_uri":null,"id":"5e1283ae-2437-4b08-b0fc-32a6f9478ce5","modification_date":"2025-01-27T13:48:13.288145+00:00","name":"tf-vol-epic-haslett","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "441"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48:12 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:
- - 34fd77b2-3082-4143-b239-924058ef9c26
- status: 200 OK
- code: 200
- duration: 83.094584ms
- - id: 2
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5e1283ae-2437-4b08-b0fc-32a6f9478ce5
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 441
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:48:13.288145+00:00","export_uri":null,"id":"5e1283ae-2437-4b08-b0fc-32a6f9478ce5","modification_date":"2025-01-27T13:48:13.288145+00:00","name":"tf-vol-epic-haslett","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "441"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48:13 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:
- - 7ba20c7a-8320-4b74-a244-f4be092ed41d
- status: 200 OK
- code: 200
- duration: 90.399ms
- - id: 3
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 147
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"name":"first_name","volume_id":"5e1283ae-2437-4b08-b0fc-32a6f9478ce5","tags":["test-terraform"],"project":"105bdce1-64c0-48ab-899d-868455867ecf"}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) 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: 845
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"5e1283ae-2437-4b08-b0fc-32a6f9478ce5","name":"tf-vol-epic-haslett"},"creation_date":"2025-01-27T13:48:13.662413+00:00","error_details":null,"id":"be7e7cdb-5800-473e-85c4-38f34cdc49e7","modification_date":"2025-01-27T13:48:13.662413+00:00","name":"first_name","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"snapshotting","tags":["test-terraform"],"volume_type":"b_ssd","zone":"fr-par-1"},"task":{"description":"volume_snapshot","href_from":"/snapshots","href_result":"snapshots/be7e7cdb-5800-473e-85c4-38f34cdc49e7","id":"3ab6338f-1285-4247-bcf8-61174f6f3da1","progress":0,"started_at":"2025-01-27T13:48:13.865503+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "845"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48:13 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:
- - 6179dadb-5c6d-44b2-bd8c-42db7a55be96
- status: 201 Created
- code: 201
- duration: 491.656375ms
- - id: 4
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/be7e7cdb-5800-473e-85c4-38f34cdc49e7
- 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":"5e1283ae-2437-4b08-b0fc-32a6f9478ce5","name":"tf-vol-epic-haslett"},"creation_date":"2025-01-27T13:48:13.662413+00:00","error_details":null,"id":"be7e7cdb-5800-473e-85c4-38f34cdc49e7","modification_date":"2025-01-27T13:48:13.662413+00:00","name":"first_name","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"snapshotting","tags":["test-terraform"],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "534"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48:13 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:
- - 4538c6cd-3c98-45e6-ae55-3b8981a2cff6
- status: 200 OK
- code: 200
- duration: 85.224084ms
- - id: 5
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/be7e7cdb-5800-473e-85c4-38f34cdc49e7
- 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":"5e1283ae-2437-4b08-b0fc-32a6f9478ce5","name":"tf-vol-epic-haslett"},"creation_date":"2025-01-27T13:48:13.662413+00:00","error_details":null,"id":"be7e7cdb-5800-473e-85c4-38f34cdc49e7","modification_date":"2025-01-27T13:48:16.959196+00:00","name":"first_name","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"available","tags":["test-terraform"],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "531"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48:18 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:
- - b2ea4dc7-ccbc-4fbb-a095-0300ace98f2e
- status: 200 OK
- code: 200
- duration: 101.006708ms
- - id: 6
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/be7e7cdb-5800-473e-85c4-38f34cdc49e7
- 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":"5e1283ae-2437-4b08-b0fc-32a6f9478ce5","name":"tf-vol-epic-haslett"},"creation_date":"2025-01-27T13:48:13.662413+00:00","error_details":null,"id":"be7e7cdb-5800-473e-85c4-38f34cdc49e7","modification_date":"2025-01-27T13:48:16.959196+00:00","name":"first_name","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"available","tags":["test-terraform"],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "531"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48:18 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:
- - 05ff697e-5fdd-44c0-9c80-60e87aa7782a
- status: 200 OK
- code: 200
- duration: 74.653416ms
- - id: 7
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/be7e7cdb-5800-473e-85c4-38f34cdc49e7
- 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":"5e1283ae-2437-4b08-b0fc-32a6f9478ce5","name":"tf-vol-epic-haslett"},"creation_date":"2025-01-27T13:48:13.662413+00:00","error_details":null,"id":"be7e7cdb-5800-473e-85c4-38f34cdc49e7","modification_date":"2025-01-27T13:48:16.959196+00:00","name":"first_name","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"available","tags":["test-terraform"],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "531"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48: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:
- - 957f1f90-c869-4ce3-b61d-cfc271025371
- status: 200 OK
- code: 200
- duration: 101.3265ms
- - id: 8
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5e1283ae-2437-4b08-b0fc-32a6f9478ce5
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 441
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:48:13.288145+00:00","export_uri":null,"id":"5e1283ae-2437-4b08-b0fc-32a6f9478ce5","modification_date":"2025-01-27T13:48:16.959196+00:00","name":"tf-vol-epic-haslett","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "441"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48: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:
- - 58dd3c81-a2c6-4055-858f-bad8be139445
- status: 200 OK
- code: 200
- duration: 93.672125ms
- - id: 9
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/be7e7cdb-5800-473e-85c4-38f34cdc49e7
- 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":"5e1283ae-2437-4b08-b0fc-32a6f9478ce5","name":"tf-vol-epic-haslett"},"creation_date":"2025-01-27T13:48:13.662413+00:00","error_details":null,"id":"be7e7cdb-5800-473e-85c4-38f34cdc49e7","modification_date":"2025-01-27T13:48:16.959196+00:00","name":"first_name","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"available","tags":["test-terraform"],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "531"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48: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:
- - 7e77a3f5-0344-48ce-bb67-f3604540bcb7
- status: 200 OK
- code: 200
- duration: 86.480666ms
- - id: 10
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5e1283ae-2437-4b08-b0fc-32a6f9478ce5
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 441
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:48:13.288145+00:00","export_uri":null,"id":"5e1283ae-2437-4b08-b0fc-32a6f9478ce5","modification_date":"2025-01-27T13:48:16.959196+00:00","name":"tf-vol-epic-haslett","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "441"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48: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:
- - e0971778-a26c-436a-ae31-4973f8fb1d31
- status: 200 OK
- code: 200
- duration: 92.516209ms
- - id: 11
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/be7e7cdb-5800-473e-85c4-38f34cdc49e7
- 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":"5e1283ae-2437-4b08-b0fc-32a6f9478ce5","name":"tf-vol-epic-haslett"},"creation_date":"2025-01-27T13:48:13.662413+00:00","error_details":null,"id":"be7e7cdb-5800-473e-85c4-38f34cdc49e7","modification_date":"2025-01-27T13:48:16.959196+00:00","name":"first_name","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"available","tags":["test-terraform"],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "531"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48: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:
- - 8063d24f-56f8-4d5d-a7a6-626bf7b89430
- status: 200 OK
- code: 200
- duration: 98.241292ms
- - id: 12
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 32
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"name":"second_name","tags":[]}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/be7e7cdb-5800-473e-85c4-38f34cdc49e7
- 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":"5e1283ae-2437-4b08-b0fc-32a6f9478ce5","name":"tf-vol-epic-haslett"},"creation_date":"2025-01-27T13:48:13.662413+00:00","error_details":null,"id":"be7e7cdb-5800-473e-85c4-38f34cdc49e7","modification_date":"2025-01-27T13:48:20.483841+00:00","name":"second_name","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "516"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48: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:
- - ef791663-b6b8-4a32-937a-ef8f9132ee9b
- status: 200 OK
- code: 200
- duration: 146.279542ms
- - id: 13
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/be7e7cdb-5800-473e-85c4-38f34cdc49e7
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 516
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"5e1283ae-2437-4b08-b0fc-32a6f9478ce5","name":"tf-vol-epic-haslett"},"creation_date":"2025-01-27T13:48:13.662413+00:00","error_details":null,"id":"be7e7cdb-5800-473e-85c4-38f34cdc49e7","modification_date":"2025-01-27T13:48:20.483841+00:00","name":"second_name","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "516"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48: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:
- - 8b0e541c-bfa7-45ef-b298-3417fc780e28
- status: 200 OK
- code: 200
- duration: 82.581166ms
- - id: 14
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/be7e7cdb-5800-473e-85c4-38f34cdc49e7
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 516
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"5e1283ae-2437-4b08-b0fc-32a6f9478ce5","name":"tf-vol-epic-haslett"},"creation_date":"2025-01-27T13:48:13.662413+00:00","error_details":null,"id":"be7e7cdb-5800-473e-85c4-38f34cdc49e7","modification_date":"2025-01-27T13:48:20.483841+00:00","name":"second_name","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "516"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48: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:
- - c72e1642-8b65-4825-9f82-b44c2e36fe7e
- status: 200 OK
- code: 200
- duration: 112.486708ms
- - id: 15
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5e1283ae-2437-4b08-b0fc-32a6f9478ce5
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 441
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:48:13.288145+00:00","export_uri":null,"id":"5e1283ae-2437-4b08-b0fc-32a6f9478ce5","modification_date":"2025-01-27T13:48:16.959196+00:00","name":"tf-vol-epic-haslett","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "441"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48: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:
- - 397dc0fa-c261-40c7-836e-91e10df0672a
- status: 200 OK
- code: 200
- duration: 70.048083ms
- - id: 16
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/be7e7cdb-5800-473e-85c4-38f34cdc49e7
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 516
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"5e1283ae-2437-4b08-b0fc-32a6f9478ce5","name":"tf-vol-epic-haslett"},"creation_date":"2025-01-27T13:48:13.662413+00:00","error_details":null,"id":"be7e7cdb-5800-473e-85c4-38f34cdc49e7","modification_date":"2025-01-27T13:48:20.483841+00:00","name":"second_name","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "516"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48: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:
- - 27cbe106-cd2c-4e50-85fe-9a6bed380b43
- status: 200 OK
- code: 200
- duration: 106.836833ms
- - id: 17
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/be7e7cdb-5800-473e-85c4-38f34cdc49e7
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 516
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"5e1283ae-2437-4b08-b0fc-32a6f9478ce5","name":"tf-vol-epic-haslett"},"creation_date":"2025-01-27T13:48:13.662413+00:00","error_details":null,"id":"be7e7cdb-5800-473e-85c4-38f34cdc49e7","modification_date":"2025-01-27T13:48:20.483841+00:00","name":"second_name","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "516"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48: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:
- - 82067a6f-ff6a-437a-ba5e-ba078833dfa0
- status: 200 OK
- code: 200
- duration: 126.78075ms
- - id: 18
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/be7e7cdb-5800-473e-85c4-38f34cdc49e7
- method: DELETE
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 0
- uncompressed: false
- body: ""
- headers:
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48: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:
- - a46f09ae-446e-4565-8082-decbb30a9af5
- status: 204 No Content
- code: 204
- duration: 216.465375ms
- - id: 19
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/be7e7cdb-5800-473e-85c4-38f34cdc49e7
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 145
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"be7e7cdb-5800-473e-85c4-38f34cdc49e7","type":"not_found"}'
- headers:
- Content-Length:
- - "145"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48: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:
- - a4ad7d0f-2e58-45c5-9c02-38843276891f
- status: 404 Not Found
- code: 404
- duration: 16.328874542s
- - id: 20
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5e1283ae-2437-4b08-b0fc-32a6f9478ce5
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 441
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:48:13.288145+00:00","export_uri":null,"id":"5e1283ae-2437-4b08-b0fc-32a6f9478ce5","modification_date":"2025-01-27T13:48:16.959196+00:00","name":"tf-vol-epic-haslett","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "441"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48: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:
- - f2916357-0db1-4564-9e4d-0800871cb265
- status: 200 OK
- code: 200
- duration: 85.739291ms
- - id: 21
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5e1283ae-2437-4b08-b0fc-32a6f9478ce5
- method: DELETE
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 0
- uncompressed: false
- body: ""
- headers:
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48: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:
- - 99c161af-0f36-4375-8049-88f8090db385
- status: 204 No Content
- code: 204
- duration: 1.578827666s
- - id: 22
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5e1283ae-2437-4b08-b0fc-32a6f9478ce5
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 143
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"5e1283ae-2437-4b08-b0fc-32a6f9478ce5","type":"not_found"}'
- headers:
- Content-Length:
- - "143"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:48: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:
- - e2e56c59-0814-4f27-92f3-7b4a6383fc99
- status: 404 Not Found
- code: 404
- duration: 1.250391417s
diff --git a/internal/services/instance/testdata/snapshot-server-with-block-volume.cassette.yaml b/internal/services/instance/testdata/snapshot-server-with-block-volume.cassette.yaml
deleted file mode 100644
index 316e006919..0000000000
--- a/internal/services/instance/testdata/snapshot-server-with-block-volume.cassette.yaml
+++ /dev/null
@@ -1,2773 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 122
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"name":"tf-vol-youthful-fermi","project":"105bdce1-64c0-48ab-899d-868455867ecf","volume_type":"b_ssd","size":10000000000}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 443
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T14:22:36.140054+00:00","export_uri":null,"id":"55e5eb1c-b7e1-467c-b8d7-6cc7a42f5bf1","modification_date":"2025-02-11T14:22:36.140054+00:00","name":"tf-vol-youthful-fermi","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "443"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:35 GMT
- Location:
- - https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/55e5eb1c-b7e1-467c-b8d7-6cc7a42f5bf1
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 39353e93-40d5-4b78-862d-61f590c09f97
- status: 201 Created
- code: 201
- duration: 475.848ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/55e5eb1c-b7e1-467c-b8d7-6cc7a42f5bf1
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 443
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T14:22:36.140054+00:00","export_uri":null,"id":"55e5eb1c-b7e1-467c-b8d7-6cc7a42f5bf1","modification_date":"2025-02-11T14:22:36.140054+00:00","name":"tf-vol-youthful-fermi","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "443"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:36 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - e003b4b7-5261-45aa-87a1-4e561bf2ea41
- status: 200 OK
- code: 200
- duration: 107.156625ms
- - id: 2
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/55e5eb1c-b7e1-467c-b8d7-6cc7a42f5bf1
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 443
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T14:22:36.140054+00:00","export_uri":null,"id":"55e5eb1c-b7e1-467c-b8d7-6cc7a42f5bf1","modification_date":"2025-02-11T14:22:36.140054+00:00","name":"tf-vol-youthful-fermi","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "443"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:36 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - ffac1f5f-22a1-4be3-b321-cb64826b9b8b
- status: 200 OK
- code: 200
- duration: 93.310542ms
- - id: 3
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 35639
- uncompressed: false
- body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":6710886400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":13421772800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":6710886400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":6710886400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":13421772800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":6710886400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":13421772800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":6710886400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":13421772800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}'
- headers:
- Content-Length:
- - "35639"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:36 GMT
- Link:
- - ; rel="next",; rel="last"
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - b35ff6b4-de60-426c-9197-a4ee29948745
- X-Total-Count:
- - "68"
- status: 200 OK
- code: 200
- duration: 45.528833ms
- - id: 4
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 13164
- uncompressed: false
- body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":1,"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":200000000000}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":100000000000}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":50000000000}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":25000000000}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":200000000000}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":100000000000}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":50000000000}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":1000000000000,"min_size":500000000000}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":200000000000}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":300000000000}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":400000000000}}}}'
- headers:
- Content-Length:
- - "13164"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:36 GMT
- Link:
- - ; rel="first",; rel="previous",; rel="last"
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 34680322-495e-4dcb-9ec3-286b4d6de000
- X-Total-Count:
- - "68"
- status: 200 OK
- code: 200
- duration: 49.739917ms
- - id: 5
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/55e5eb1c-b7e1-467c-b8d7-6cc7a42f5bf1
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 443
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T14:22:36.140054+00:00","export_uri":null,"id":"55e5eb1c-b7e1-467c-b8d7-6cc7a42f5bf1","modification_date":"2025-02-11T14:22:36.140054+00:00","name":"tf-vol-youthful-fermi","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "443"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:36 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 058f3b78-0278-4ea9-8a2e-ae23f149c1f9
- status: 200 OK
- code: 200
- duration: 91.809916ms
- - id: 6
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/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: 1300
- uncompressed: false
- body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["AMP2-C1","AMP2-C2","AMP2-C4","AMP2-C8","AMP2-C12","AMP2-C24","AMP2-C48","AMP2-C60","COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"56d4019c-8305-467a-a3f2-70498ad799df","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"},{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"5dbc71d9-cb05-4a0c-853d-0ba7a14d9c45","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":2}'
- headers:
- Content-Length:
- - "1300"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:36 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 61579048-5d0c-4cdc-87e7-bc285181de80
- status: 200 OK
- code: 200
- duration: 85.8435ms
- - id: 7
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 131
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"name":"tf-snap-awesome-benz","volume_id":"55e5eb1c-b7e1-467c-b8d7-6cc7a42f5bf1","project":"105bdce1-64c0-48ab-899d-868455867ecf"}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 841
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"55e5eb1c-b7e1-467c-b8d7-6cc7a42f5bf1","name":"tf-vol-youthful-fermi"},"creation_date":"2025-02-11T14:22:36.578181+00:00","error_details":null,"id":"444bfd94-a046-48ee-b4ce-bdbfa50aad1a","modification_date":"2025-02-11T14:22:36.578181+00:00","name":"tf-snap-awesome-benz","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"},"task":{"description":"volume_snapshot","href_from":"/snapshots","href_result":"snapshots/444bfd94-a046-48ee-b4ce-bdbfa50aad1a","id":"7e79d7f1-e546-48a8-84e2-1b74cd58438f","progress":0,"started_at":"2025-02-11T14:22:36.754392+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "841"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:36 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - cadde7f2-964b-4835-ae7a-0a9274537407
- status: 201 Created
- code: 201
- duration: 478.76975ms
- - id: 8
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/444bfd94-a046-48ee-b4ce-bdbfa50aad1a
- 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":"55e5eb1c-b7e1-467c-b8d7-6cc7a42f5bf1","name":"tf-vol-youthful-fermi"},"creation_date":"2025-02-11T14:22:36.578181+00:00","error_details":null,"id":"444bfd94-a046-48ee-b4ce-bdbfa50aad1a","modification_date":"2025-02-11T14:22:36.578181+00:00","name":"tf-snap-awesome-benz","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "530"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:36 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 018709db-36d3-4f88-a10d-0e3c3d1b05af
- status: 200 OK
- code: 200
- duration: 99.092ms
- - id: 9
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 354
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"name":"tf-srv-frosty-gould","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"5dbc71d9-cb05-4a0c-853d-0ba7a14d9c45","volumes":{"0":{"boot":false,"size":10000000000,"volume_type":"l_ssd"},"1":{"id":"55e5eb1c-b7e1-467c-b8d7-6cc7a42f5bf1","name":"tf-vol-youthful-fermi"}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2619
- uncompressed: false
- body: '{"server":{"allowed_actions":[],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.050336+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-frosty-gould","id":"3de4c610-2143-4305-a211-9c4098e590f9","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:44.425699+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5dbc71d9-cb05-4a0c-853d-0ba7a14d9c45","modification_date":"2024-10-14T09:05:44.425699+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":"781c70f1-db12-4aa7-a697-839e030ebfca","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:93:6d:d9","maintenances":[],"modification_date":"2025-02-11T14:22:37.050336+00:00","name":"tf-srv-frosty-gould","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-02-11T14:22:37.050336+00:00","export_uri":null,"id":"4e63a045-02a7-4ad3-bb80-477e9dbb0490","modification_date":"2025-02-11T14:22:37.050336+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3de4c610-2143-4305-a211-9c4098e590f9","name":"tf-srv-frosty-gould"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.140054+00:00","export_uri":null,"id":"55e5eb1c-b7e1-467c-b8d7-6cc7a42f5bf1","modification_date":"2025-02-11T14:22:37.050336+00:00","name":"tf-vol-youthful-fermi","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3de4c610-2143-4305-a211-9c4098e590f9","name":"tf-srv-frosty-gould"},"size":10000000000,"state":"snapshotting","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2619"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:37 GMT
- Location:
- - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3de4c610-2143-4305-a211-9c4098e590f9
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - b5fbc628-37dd-4714-a814-c3d23cced90f
- status: 201 Created
- code: 201
- duration: 885.437666ms
- - id: 10
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3de4c610-2143-4305-a211-9c4098e590f9
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2619
- uncompressed: false
- body: '{"server":{"allowed_actions":[],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.050336+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-frosty-gould","id":"3de4c610-2143-4305-a211-9c4098e590f9","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:44.425699+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5dbc71d9-cb05-4a0c-853d-0ba7a14d9c45","modification_date":"2024-10-14T09:05:44.425699+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":"781c70f1-db12-4aa7-a697-839e030ebfca","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:93:6d:d9","maintenances":[],"modification_date":"2025-02-11T14:22:37.050336+00:00","name":"tf-srv-frosty-gould","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-02-11T14:22:37.050336+00:00","export_uri":null,"id":"4e63a045-02a7-4ad3-bb80-477e9dbb0490","modification_date":"2025-02-11T14:22:37.050336+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3de4c610-2143-4305-a211-9c4098e590f9","name":"tf-srv-frosty-gould"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.140054+00:00","export_uri":null,"id":"55e5eb1c-b7e1-467c-b8d7-6cc7a42f5bf1","modification_date":"2025-02-11T14:22:37.050336+00:00","name":"tf-vol-youthful-fermi","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3de4c610-2143-4305-a211-9c4098e590f9","name":"tf-srv-frosty-gould"},"size":10000000000,"state":"snapshotting","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2619"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:37 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - d1db7aa5-bbee-4b3c-a23c-f5692ae2137d
- status: 200 OK
- code: 200
- duration: 124.634292ms
- - id: 11
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3de4c610-2143-4305-a211-9c4098e590f9
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2619
- uncompressed: false
- body: '{"server":{"allowed_actions":[],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.050336+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-frosty-gould","id":"3de4c610-2143-4305-a211-9c4098e590f9","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:44.425699+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5dbc71d9-cb05-4a0c-853d-0ba7a14d9c45","modification_date":"2024-10-14T09:05:44.425699+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":"781c70f1-db12-4aa7-a697-839e030ebfca","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:93:6d:d9","maintenances":[],"modification_date":"2025-02-11T14:22:37.050336+00:00","name":"tf-srv-frosty-gould","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-02-11T14:22:37.050336+00:00","export_uri":null,"id":"4e63a045-02a7-4ad3-bb80-477e9dbb0490","modification_date":"2025-02-11T14:22:37.050336+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3de4c610-2143-4305-a211-9c4098e590f9","name":"tf-srv-frosty-gould"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.140054+00:00","export_uri":null,"id":"55e5eb1c-b7e1-467c-b8d7-6cc7a42f5bf1","modification_date":"2025-02-11T14:22:37.050336+00:00","name":"tf-vol-youthful-fermi","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3de4c610-2143-4305-a211-9c4098e590f9","name":"tf-srv-frosty-gould"},"size":10000000000,"state":"snapshotting","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2619"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:37 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 8afc9d53-30a8-40d5-8a02-75124881f37e
- status: 200 OK
- code: 200
- duration: 155.616ms
- - id: 12
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/55e5eb1c-b7e1-467c-b8d7-6cc7a42f5bf1
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 519
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T14:22:36.140054+00:00","export_uri":null,"id":"55e5eb1c-b7e1-467c-b8d7-6cc7a42f5bf1","modification_date":"2025-02-11T14:22:37.050336+00:00","name":"tf-vol-youthful-fermi","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3de4c610-2143-4305-a211-9c4098e590f9","name":"tf-srv-frosty-gould"},"size":10000000000,"state":"snapshotting","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "519"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:37 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - aa9a9f8e-2444-4546-9d10-971f29d171c0
- status: 200 OK
- code: 200
- duration: 107.840292ms
- - id: 13
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/444bfd94-a046-48ee-b4ce-bdbfa50aad1a
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 527
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"55e5eb1c-b7e1-467c-b8d7-6cc7a42f5bf1","name":"tf-vol-youthful-fermi"},"creation_date":"2025-02-11T14:22:36.578181+00:00","error_details":null,"id":"444bfd94-a046-48ee-b4ce-bdbfa50aad1a","modification_date":"2025-02-11T14:22:39.266244+00:00","name":"tf-snap-awesome-benz","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "527"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:41 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 430970c7-5b7d-4692-b17a-67a1226bd5bc
- status: 200 OK
- code: 200
- duration: 81.714958ms
- - id: 14
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/444bfd94-a046-48ee-b4ce-bdbfa50aad1a
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 527
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"55e5eb1c-b7e1-467c-b8d7-6cc7a42f5bf1","name":"tf-vol-youthful-fermi"},"creation_date":"2025-02-11T14:22:36.578181+00:00","error_details":null,"id":"444bfd94-a046-48ee-b4ce-bdbfa50aad1a","modification_date":"2025-02-11T14:22:39.266244+00:00","name":"tf-snap-awesome-benz","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "527"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:42 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 3344fb9a-1943-4c49-9ea4-43b6710b33a0
- status: 200 OK
- code: 200
- duration: 92.654541ms
- - id: 15
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/55e5eb1c-b7e1-467c-b8d7-6cc7a42f5bf1
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 516
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T14:22:36.140054+00:00","export_uri":null,"id":"55e5eb1c-b7e1-467c-b8d7-6cc7a42f5bf1","modification_date":"2025-02-11T14:22:39.266244+00:00","name":"tf-vol-youthful-fermi","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3de4c610-2143-4305-a211-9c4098e590f9","name":"tf-srv-frosty-gould"},"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "516"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:42 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 4b4f9d85-1ad4-4f11-840d-dae4b3df28e0
- status: 200 OK
- code: 200
- duration: 86.712292ms
- - id: 16
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 20
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"action":"poweron"}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3de4c610-2143-4305-a211-9c4098e590f9/action
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 357
- uncompressed: false
- body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/3de4c610-2143-4305-a211-9c4098e590f9/action","href_result":"/servers/3de4c610-2143-4305-a211-9c4098e590f9","id":"82bf28ad-5ab6-42fb-935d-a6ed4e161f26","progress":0,"started_at":"2025-02-11T14:22:43.236758+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "357"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:42 GMT
- Location:
- - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/82bf28ad-5ab6-42fb-935d-a6ed4e161f26
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 2778fa5f-c689-48ca-9677-3d58eb6ebc73
- status: 202 Accepted
- code: 202
- duration: 202.460334ms
- - id: 17
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3de4c610-2143-4305-a211-9c4098e590f9
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2657
- uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.050336+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-frosty-gould","id":"3de4c610-2143-4305-a211-9c4098e590f9","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:44.425699+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5dbc71d9-cb05-4a0c-853d-0ba7a14d9c45","modification_date":"2024-10-14T09:05:44.425699+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":"781c70f1-db12-4aa7-a697-839e030ebfca","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:93:6d:d9","maintenances":[],"modification_date":"2025-02-11T14:22:43.072489+00:00","name":"tf-srv-frosty-gould","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-02-11T14:22:37.050336+00:00","export_uri":null,"id":"4e63a045-02a7-4ad3-bb80-477e9dbb0490","modification_date":"2025-02-11T14:22:37.050336+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3de4c610-2143-4305-a211-9c4098e590f9","name":"tf-srv-frosty-gould"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.140054+00:00","export_uri":null,"id":"55e5eb1c-b7e1-467c-b8d7-6cc7a42f5bf1","modification_date":"2025-02-11T14:22:39.266244+00:00","name":"tf-vol-youthful-fermi","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3de4c610-2143-4305-a211-9c4098e590f9","name":"tf-srv-frosty-gould"},"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2657"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:43 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - f31d0dc8-52ca-4a3d-a25f-932b24fb3021
- status: 200 OK
- code: 200
- duration: 138.725125ms
- - id: 18
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3de4c610-2143-4305-a211-9c4098e590f9
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2759
- uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.050336+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-frosty-gould","id":"3de4c610-2143-4305-a211-9c4098e590f9","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:44.425699+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5dbc71d9-cb05-4a0c-853d-0ba7a14d9c45","modification_date":"2024-10-14T09:05:44.425699+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":"781c70f1-db12-4aa7-a697-839e030ebfca","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"202","node_id":"8","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:6d:d9","maintenances":[],"modification_date":"2025-02-11T14:22:43.072489+00:00","name":"tf-srv-frosty-gould","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-02-11T14:22:37.050336+00:00","export_uri":null,"id":"4e63a045-02a7-4ad3-bb80-477e9dbb0490","modification_date":"2025-02-11T14:22:37.050336+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3de4c610-2143-4305-a211-9c4098e590f9","name":"tf-srv-frosty-gould"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.140054+00:00","export_uri":null,"id":"55e5eb1c-b7e1-467c-b8d7-6cc7a42f5bf1","modification_date":"2025-02-11T14:22:39.266244+00:00","name":"tf-vol-youthful-fermi","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3de4c610-2143-4305-a211-9c4098e590f9","name":"tf-srv-frosty-gould"},"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2759"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:48 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 3c057752-b41a-4cee-a597-791980f7559f
- status: 200 OK
- code: 200
- duration: 191.788167ms
- - id: 19
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3de4c610-2143-4305-a211-9c4098e590f9
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2759
- uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.050336+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-frosty-gould","id":"3de4c610-2143-4305-a211-9c4098e590f9","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:44.425699+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5dbc71d9-cb05-4a0c-853d-0ba7a14d9c45","modification_date":"2024-10-14T09:05:44.425699+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":"781c70f1-db12-4aa7-a697-839e030ebfca","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"202","node_id":"8","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:6d:d9","maintenances":[],"modification_date":"2025-02-11T14:22:43.072489+00:00","name":"tf-srv-frosty-gould","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-02-11T14:22:37.050336+00:00","export_uri":null,"id":"4e63a045-02a7-4ad3-bb80-477e9dbb0490","modification_date":"2025-02-11T14:22:37.050336+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3de4c610-2143-4305-a211-9c4098e590f9","name":"tf-srv-frosty-gould"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.140054+00:00","export_uri":null,"id":"55e5eb1c-b7e1-467c-b8d7-6cc7a42f5bf1","modification_date":"2025-02-11T14:22:39.266244+00:00","name":"tf-vol-youthful-fermi","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3de4c610-2143-4305-a211-9c4098e590f9","name":"tf-srv-frosty-gould"},"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2759"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:53 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 1beacd0f-b300-4039-b1ab-16778b6e91fe
- status: 200 OK
- code: 200
- duration: 135.288916ms
- - id: 20
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3de4c610-2143-4305-a211-9c4098e590f9
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2790
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.050336+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-frosty-gould","id":"3de4c610-2143-4305-a211-9c4098e590f9","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:44.425699+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5dbc71d9-cb05-4a0c-853d-0ba7a14d9c45","modification_date":"2024-10-14T09:05:44.425699+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":"781c70f1-db12-4aa7-a697-839e030ebfca","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"202","node_id":"8","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:6d:d9","maintenances":[],"modification_date":"2025-02-11T14:22:58.247587+00:00","name":"tf-srv-frosty-gould","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-02-11T14:22:37.050336+00:00","export_uri":null,"id":"4e63a045-02a7-4ad3-bb80-477e9dbb0490","modification_date":"2025-02-11T14:22:37.050336+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3de4c610-2143-4305-a211-9c4098e590f9","name":"tf-srv-frosty-gould"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.140054+00:00","export_uri":null,"id":"55e5eb1c-b7e1-467c-b8d7-6cc7a42f5bf1","modification_date":"2025-02-11T14:22:39.266244+00:00","name":"tf-vol-youthful-fermi","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3de4c610-2143-4305-a211-9c4098e590f9","name":"tf-srv-frosty-gould"},"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2790"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:58 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - a4694006-db68-49e9-89f1-fc5707ffeb4b
- status: 200 OK
- code: 200
- duration: 151.454625ms
- - id: 21
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3de4c610-2143-4305-a211-9c4098e590f9
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2790
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.050336+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-frosty-gould","id":"3de4c610-2143-4305-a211-9c4098e590f9","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:44.425699+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5dbc71d9-cb05-4a0c-853d-0ba7a14d9c45","modification_date":"2024-10-14T09:05:44.425699+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":"781c70f1-db12-4aa7-a697-839e030ebfca","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"202","node_id":"8","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:6d:d9","maintenances":[],"modification_date":"2025-02-11T14:22:58.247587+00:00","name":"tf-srv-frosty-gould","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-02-11T14:22:37.050336+00:00","export_uri":null,"id":"4e63a045-02a7-4ad3-bb80-477e9dbb0490","modification_date":"2025-02-11T14:22:37.050336+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3de4c610-2143-4305-a211-9c4098e590f9","name":"tf-srv-frosty-gould"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.140054+00:00","export_uri":null,"id":"55e5eb1c-b7e1-467c-b8d7-6cc7a42f5bf1","modification_date":"2025-02-11T14:22:39.266244+00:00","name":"tf-vol-youthful-fermi","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3de4c610-2143-4305-a211-9c4098e590f9","name":"tf-srv-frosty-gould"},"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2790"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:58 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - b682718a-f96b-4366-9844-721fd7bc649a
- status: 200 OK
- code: 200
- duration: 137.413541ms
- - id: 22
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4e63a045-02a7-4ad3-bb80-477e9dbb0490
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 519
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T14:22:37.050336+00:00","export_uri":null,"id":"4e63a045-02a7-4ad3-bb80-477e9dbb0490","modification_date":"2025-02-11T14:22:37.050336+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3de4c610-2143-4305-a211-9c4098e590f9","name":"tf-srv-frosty-gould"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "519"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:59 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 1c9b3d63-e290-4e1a-ba5d-3ac97008e54e
- status: 200 OK
- code: 200
- duration: 99.7335ms
- - id: 23
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3de4c610-2143-4305-a211-9c4098e590f9/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:
- - Tue, 11 Feb 2025 14:22:58 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - d349b7bc-1ac2-47fd-81b9-20030550dc0f
- status: 200 OK
- code: 200
- duration: 85.277666ms
- - id: 24
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3de4c610-2143-4305-a211-9c4098e590f9/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:
- - Tue, 11 Feb 2025 14:22:59 GMT
- Link:
- - ; rel="last"
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - f397f4dc-fd76-4a2f-a089-87cb6400a954
- X-Total-Count:
- - "0"
- status: 200 OK
- code: 200
- duration: 119.814709ms
- - id: 25
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/444bfd94-a046-48ee-b4ce-bdbfa50aad1a
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 527
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"55e5eb1c-b7e1-467c-b8d7-6cc7a42f5bf1","name":"tf-vol-youthful-fermi"},"creation_date":"2025-02-11T14:22:36.578181+00:00","error_details":null,"id":"444bfd94-a046-48ee-b4ce-bdbfa50aad1a","modification_date":"2025-02-11T14:22:39.266244+00:00","name":"tf-snap-awesome-benz","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "527"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:59 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 10928650-f8b8-436e-a609-92636c3d2b52
- status: 200 OK
- code: 200
- duration: 88.85075ms
- - id: 26
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/55e5eb1c-b7e1-467c-b8d7-6cc7a42f5bf1
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 516
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T14:22:36.140054+00:00","export_uri":null,"id":"55e5eb1c-b7e1-467c-b8d7-6cc7a42f5bf1","modification_date":"2025-02-11T14:22:39.266244+00:00","name":"tf-vol-youthful-fermi","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3de4c610-2143-4305-a211-9c4098e590f9","name":"tf-srv-frosty-gould"},"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "516"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:59 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 9fed931c-7f86-4260-ba34-94756c87c9d5
- status: 200 OK
- code: 200
- duration: 73.539667ms
- - id: 27
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/444bfd94-a046-48ee-b4ce-bdbfa50aad1a
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 527
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"55e5eb1c-b7e1-467c-b8d7-6cc7a42f5bf1","name":"tf-vol-youthful-fermi"},"creation_date":"2025-02-11T14:22:36.578181+00:00","error_details":null,"id":"444bfd94-a046-48ee-b4ce-bdbfa50aad1a","modification_date":"2025-02-11T14:22:39.266244+00:00","name":"tf-snap-awesome-benz","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "527"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:59 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 80abc9b8-3b21-44a1-844d-5313506d10c4
- status: 200 OK
- code: 200
- duration: 83.088917ms
- - id: 28
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3de4c610-2143-4305-a211-9c4098e590f9
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2790
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.050336+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-frosty-gould","id":"3de4c610-2143-4305-a211-9c4098e590f9","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:44.425699+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5dbc71d9-cb05-4a0c-853d-0ba7a14d9c45","modification_date":"2024-10-14T09:05:44.425699+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":"781c70f1-db12-4aa7-a697-839e030ebfca","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"202","node_id":"8","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:6d:d9","maintenances":[],"modification_date":"2025-02-11T14:22:58.247587+00:00","name":"tf-srv-frosty-gould","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-02-11T14:22:37.050336+00:00","export_uri":null,"id":"4e63a045-02a7-4ad3-bb80-477e9dbb0490","modification_date":"2025-02-11T14:22:37.050336+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3de4c610-2143-4305-a211-9c4098e590f9","name":"tf-srv-frosty-gould"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.140054+00:00","export_uri":null,"id":"55e5eb1c-b7e1-467c-b8d7-6cc7a42f5bf1","modification_date":"2025-02-11T14:22:39.266244+00:00","name":"tf-vol-youthful-fermi","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3de4c610-2143-4305-a211-9c4098e590f9","name":"tf-srv-frosty-gould"},"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2790"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:59 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - dd8da062-a2c1-4030-a956-d35ca0d2c926
- status: 200 OK
- code: 200
- duration: 128.641959ms
- - id: 29
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4e63a045-02a7-4ad3-bb80-477e9dbb0490
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 519
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T14:22:37.050336+00:00","export_uri":null,"id":"4e63a045-02a7-4ad3-bb80-477e9dbb0490","modification_date":"2025-02-11T14:22:37.050336+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3de4c610-2143-4305-a211-9c4098e590f9","name":"tf-srv-frosty-gould"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "519"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:22:59 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - b3e76de2-d6d1-4af2-b932-3949107e71ce
- status: 200 OK
- code: 200
- duration: 89.460541ms
- - id: 30
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3de4c610-2143-4305-a211-9c4098e590f9/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:
- - Tue, 11 Feb 2025 14:22:59 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - ccea0dd1-fef5-4c62-b37d-2be471a0ccd1
- status: 200 OK
- code: 200
- duration: 87.95525ms
- - id: 31
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3de4c610-2143-4305-a211-9c4098e590f9/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:
- - Tue, 11 Feb 2025 14:23:00 GMT
- Link:
- - ; rel="last"
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - d189ab82-8642-427a-a6a4-7c4399e51bc2
- X-Total-Count:
- - "0"
- status: 200 OK
- code: 200
- duration: 77.500417ms
- - id: 32
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/444bfd94-a046-48ee-b4ce-bdbfa50aad1a
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 527
- uncompressed: false
- body: '{"snapshot":{"base_volume":{"id":"55e5eb1c-b7e1-467c-b8d7-6cc7a42f5bf1","name":"tf-vol-youthful-fermi"},"creation_date":"2025-02-11T14:22:36.578181+00:00","error_details":null,"id":"444bfd94-a046-48ee-b4ce-bdbfa50aad1a","modification_date":"2025-02-11T14:22:39.266244+00:00","name":"tf-snap-awesome-benz","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "527"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:23:00 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 9803e21e-cd1c-4013-9680-bd19feb79c27
- status: 200 OK
- code: 200
- duration: 96.663333ms
- - id: 33
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3de4c610-2143-4305-a211-9c4098e590f9
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2790
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.050336+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-frosty-gould","id":"3de4c610-2143-4305-a211-9c4098e590f9","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:44.425699+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5dbc71d9-cb05-4a0c-853d-0ba7a14d9c45","modification_date":"2024-10-14T09:05:44.425699+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":"781c70f1-db12-4aa7-a697-839e030ebfca","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"202","node_id":"8","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:6d:d9","maintenances":[],"modification_date":"2025-02-11T14:22:58.247587+00:00","name":"tf-srv-frosty-gould","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-02-11T14:22:37.050336+00:00","export_uri":null,"id":"4e63a045-02a7-4ad3-bb80-477e9dbb0490","modification_date":"2025-02-11T14:22:37.050336+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3de4c610-2143-4305-a211-9c4098e590f9","name":"tf-srv-frosty-gould"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.140054+00:00","export_uri":null,"id":"55e5eb1c-b7e1-467c-b8d7-6cc7a42f5bf1","modification_date":"2025-02-11T14:22:39.266244+00:00","name":"tf-vol-youthful-fermi","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3de4c610-2143-4305-a211-9c4098e590f9","name":"tf-srv-frosty-gould"},"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2790"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:23:00 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 229ff02a-d404-424a-a66d-0beb86f301cd
- status: 200 OK
- code: 200
- duration: 134.795125ms
- - id: 34
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/444bfd94-a046-48ee-b4ce-bdbfa50aad1a
- 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, 11 Feb 2025 14:23:00 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - d52fb9c0-02bc-4d02-8884-a3bb603fa120
- status: 204 No Content
- code: 204
- duration: 165.589ms
- - id: 35
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/444bfd94-a046-48ee-b4ce-bdbfa50aad1a
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 145
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"444bfd94-a046-48ee-b4ce-bdbfa50aad1a","type":"not_found"}'
- headers:
- Content-Length:
- - "145"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:23:00 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 939d824a-cd02-48de-8fe8-59db60458f7a
- status: 404 Not Found
- code: 404
- duration: 38.781334ms
- - id: 36
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 21
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"action":"poweroff"}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3de4c610-2143-4305-a211-9c4098e590f9/action
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 352
- uncompressed: false
- body: '{"task":{"description":"server_poweroff","href_from":"/servers/3de4c610-2143-4305-a211-9c4098e590f9/action","href_result":"/servers/3de4c610-2143-4305-a211-9c4098e590f9","id":"a814462a-0187-401b-b555-8aa1defcb93b","progress":0,"started_at":"2025-02-11T14:23:00.795762+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "352"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:23:00 GMT
- Location:
- - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/a814462a-0187-401b-b555-8aa1defcb93b
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 77191095-e465-4aef-9d33-5f603e64f758
- status: 202 Accepted
- code: 202
- duration: 253.27425ms
- - id: 37
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3de4c610-2143-4305-a211-9c4098e590f9
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2750
- uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.050336+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-frosty-gould","id":"3de4c610-2143-4305-a211-9c4098e590f9","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:44.425699+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5dbc71d9-cb05-4a0c-853d-0ba7a14d9c45","modification_date":"2024-10-14T09:05:44.425699+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":"781c70f1-db12-4aa7-a697-839e030ebfca","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"202","node_id":"8","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:6d:d9","maintenances":[],"modification_date":"2025-02-11T14:23:00.591750+00:00","name":"tf-srv-frosty-gould","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-02-11T14:22:37.050336+00:00","export_uri":null,"id":"4e63a045-02a7-4ad3-bb80-477e9dbb0490","modification_date":"2025-02-11T14:22:37.050336+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3de4c610-2143-4305-a211-9c4098e590f9","name":"tf-srv-frosty-gould"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.140054+00:00","export_uri":null,"id":"55e5eb1c-b7e1-467c-b8d7-6cc7a42f5bf1","modification_date":"2025-02-11T14:22:39.266244+00:00","name":"tf-vol-youthful-fermi","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3de4c610-2143-4305-a211-9c4098e590f9","name":"tf-srv-frosty-gould"},"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2750"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:23:00 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 42c7cea7-3e8c-40fc-8f95-505d12738ae6
- status: 200 OK
- code: 200
- duration: 163.575833ms
- - id: 38
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3de4c610-2143-4305-a211-9c4098e590f9
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2750
- uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.050336+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-frosty-gould","id":"3de4c610-2143-4305-a211-9c4098e590f9","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:44.425699+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5dbc71d9-cb05-4a0c-853d-0ba7a14d9c45","modification_date":"2024-10-14T09:05:44.425699+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":"781c70f1-db12-4aa7-a697-839e030ebfca","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"202","node_id":"8","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:6d:d9","maintenances":[],"modification_date":"2025-02-11T14:23:00.591750+00:00","name":"tf-srv-frosty-gould","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-02-11T14:22:37.050336+00:00","export_uri":null,"id":"4e63a045-02a7-4ad3-bb80-477e9dbb0490","modification_date":"2025-02-11T14:22:37.050336+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3de4c610-2143-4305-a211-9c4098e590f9","name":"tf-srv-frosty-gould"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.140054+00:00","export_uri":null,"id":"55e5eb1c-b7e1-467c-b8d7-6cc7a42f5bf1","modification_date":"2025-02-11T14:22:39.266244+00:00","name":"tf-vol-youthful-fermi","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3de4c610-2143-4305-a211-9c4098e590f9","name":"tf-srv-frosty-gould"},"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2750"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:23:05 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 60c77ea8-8f6a-49bc-9a5b-1f05939c0d49
- status: 200 OK
- code: 200
- duration: 134.040708ms
- - id: 39
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3de4c610-2143-4305-a211-9c4098e590f9
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2750
- uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.050336+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-frosty-gould","id":"3de4c610-2143-4305-a211-9c4098e590f9","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:44.425699+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5dbc71d9-cb05-4a0c-853d-0ba7a14d9c45","modification_date":"2024-10-14T09:05:44.425699+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":"781c70f1-db12-4aa7-a697-839e030ebfca","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"202","node_id":"8","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:6d:d9","maintenances":[],"modification_date":"2025-02-11T14:23:00.591750+00:00","name":"tf-srv-frosty-gould","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-02-11T14:22:37.050336+00:00","export_uri":null,"id":"4e63a045-02a7-4ad3-bb80-477e9dbb0490","modification_date":"2025-02-11T14:22:37.050336+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3de4c610-2143-4305-a211-9c4098e590f9","name":"tf-srv-frosty-gould"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.140054+00:00","export_uri":null,"id":"55e5eb1c-b7e1-467c-b8d7-6cc7a42f5bf1","modification_date":"2025-02-11T14:22:39.266244+00:00","name":"tf-vol-youthful-fermi","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3de4c610-2143-4305-a211-9c4098e590f9","name":"tf-srv-frosty-gould"},"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2750"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:23:11 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 7de99992-2f16-4938-97f2-d81e86764ac9
- status: 200 OK
- code: 200
- duration: 164.448417ms
- - id: 40
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3de4c610-2143-4305-a211-9c4098e590f9
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2750
- uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.050336+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-frosty-gould","id":"3de4c610-2143-4305-a211-9c4098e590f9","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:44.425699+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5dbc71d9-cb05-4a0c-853d-0ba7a14d9c45","modification_date":"2024-10-14T09:05:44.425699+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":"781c70f1-db12-4aa7-a697-839e030ebfca","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"202","node_id":"8","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:6d:d9","maintenances":[],"modification_date":"2025-02-11T14:23:00.591750+00:00","name":"tf-srv-frosty-gould","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-02-11T14:22:37.050336+00:00","export_uri":null,"id":"4e63a045-02a7-4ad3-bb80-477e9dbb0490","modification_date":"2025-02-11T14:22:37.050336+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3de4c610-2143-4305-a211-9c4098e590f9","name":"tf-srv-frosty-gould"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.140054+00:00","export_uri":null,"id":"55e5eb1c-b7e1-467c-b8d7-6cc7a42f5bf1","modification_date":"2025-02-11T14:22:39.266244+00:00","name":"tf-vol-youthful-fermi","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3de4c610-2143-4305-a211-9c4098e590f9","name":"tf-srv-frosty-gould"},"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2750"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:23:16 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 7b4fbcae-3055-42ea-bebd-703de99e4aa0
- status: 200 OK
- code: 200
- duration: 123.218916ms
- - id: 41
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3de4c610-2143-4305-a211-9c4098e590f9
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2750
- uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.050336+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-frosty-gould","id":"3de4c610-2143-4305-a211-9c4098e590f9","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:44.425699+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5dbc71d9-cb05-4a0c-853d-0ba7a14d9c45","modification_date":"2024-10-14T09:05:44.425699+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":"781c70f1-db12-4aa7-a697-839e030ebfca","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"202","node_id":"8","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:6d:d9","maintenances":[],"modification_date":"2025-02-11T14:23:00.591750+00:00","name":"tf-srv-frosty-gould","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-02-11T14:22:37.050336+00:00","export_uri":null,"id":"4e63a045-02a7-4ad3-bb80-477e9dbb0490","modification_date":"2025-02-11T14:22:37.050336+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3de4c610-2143-4305-a211-9c4098e590f9","name":"tf-srv-frosty-gould"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.140054+00:00","export_uri":null,"id":"55e5eb1c-b7e1-467c-b8d7-6cc7a42f5bf1","modification_date":"2025-02-11T14:22:39.266244+00:00","name":"tf-vol-youthful-fermi","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3de4c610-2143-4305-a211-9c4098e590f9","name":"tf-srv-frosty-gould"},"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2750"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:23:21 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 90212c14-678f-4917-a62a-cb5bfea90f31
- status: 200 OK
- code: 200
- duration: 154.305375ms
- - id: 42
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3de4c610-2143-4305-a211-9c4098e590f9
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2750
- uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.050336+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-frosty-gould","id":"3de4c610-2143-4305-a211-9c4098e590f9","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:44.425699+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5dbc71d9-cb05-4a0c-853d-0ba7a14d9c45","modification_date":"2024-10-14T09:05:44.425699+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":"781c70f1-db12-4aa7-a697-839e030ebfca","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"202","node_id":"8","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:6d:d9","maintenances":[],"modification_date":"2025-02-11T14:23:00.591750+00:00","name":"tf-srv-frosty-gould","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-02-11T14:22:37.050336+00:00","export_uri":null,"id":"4e63a045-02a7-4ad3-bb80-477e9dbb0490","modification_date":"2025-02-11T14:22:37.050336+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3de4c610-2143-4305-a211-9c4098e590f9","name":"tf-srv-frosty-gould"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.140054+00:00","export_uri":null,"id":"55e5eb1c-b7e1-467c-b8d7-6cc7a42f5bf1","modification_date":"2025-02-11T14:22:39.266244+00:00","name":"tf-vol-youthful-fermi","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3de4c610-2143-4305-a211-9c4098e590f9","name":"tf-srv-frosty-gould"},"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2750"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:23:26 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 5194a451-416d-4081-828a-9715e6d2050d
- status: 200 OK
- code: 200
- duration: 146.315458ms
- - id: 43
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3de4c610-2143-4305-a211-9c4098e590f9
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2750
- uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.050336+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-frosty-gould","id":"3de4c610-2143-4305-a211-9c4098e590f9","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:44.425699+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5dbc71d9-cb05-4a0c-853d-0ba7a14d9c45","modification_date":"2024-10-14T09:05:44.425699+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":"781c70f1-db12-4aa7-a697-839e030ebfca","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"202","node_id":"8","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:6d:d9","maintenances":[],"modification_date":"2025-02-11T14:23:00.591750+00:00","name":"tf-srv-frosty-gould","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-02-11T14:22:37.050336+00:00","export_uri":null,"id":"4e63a045-02a7-4ad3-bb80-477e9dbb0490","modification_date":"2025-02-11T14:22:37.050336+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3de4c610-2143-4305-a211-9c4098e590f9","name":"tf-srv-frosty-gould"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.140054+00:00","export_uri":null,"id":"55e5eb1c-b7e1-467c-b8d7-6cc7a42f5bf1","modification_date":"2025-02-11T14:22:39.266244+00:00","name":"tf-vol-youthful-fermi","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3de4c610-2143-4305-a211-9c4098e590f9","name":"tf-srv-frosty-gould"},"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2750"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:23:31 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 7255de32-78e7-4484-af04-57a280b86719
- status: 200 OK
- code: 200
- duration: 146.692875ms
- - id: 44
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3de4c610-2143-4305-a211-9c4098e590f9
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2750
- uncompressed: false
- body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.050336+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-frosty-gould","id":"3de4c610-2143-4305-a211-9c4098e590f9","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:44.425699+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5dbc71d9-cb05-4a0c-853d-0ba7a14d9c45","modification_date":"2024-10-14T09:05:44.425699+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":"781c70f1-db12-4aa7-a697-839e030ebfca","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"202","node_id":"8","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:93:6d:d9","maintenances":[],"modification_date":"2025-02-11T14:23:00.591750+00:00","name":"tf-srv-frosty-gould","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-02-11T14:22:37.050336+00:00","export_uri":null,"id":"4e63a045-02a7-4ad3-bb80-477e9dbb0490","modification_date":"2025-02-11T14:22:37.050336+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3de4c610-2143-4305-a211-9c4098e590f9","name":"tf-srv-frosty-gould"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.140054+00:00","export_uri":null,"id":"55e5eb1c-b7e1-467c-b8d7-6cc7a42f5bf1","modification_date":"2025-02-11T14:22:39.266244+00:00","name":"tf-vol-youthful-fermi","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3de4c610-2143-4305-a211-9c4098e590f9","name":"tf-srv-frosty-gould"},"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2750"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:23:36 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 94cc2064-ada3-4f6e-9acc-0bc7c4b1ad1a
- status: 200 OK
- code: 200
- duration: 187.412667ms
- - id: 45
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3de4c610-2143-4305-a211-9c4098e590f9
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2635
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.050336+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-frosty-gould","id":"3de4c610-2143-4305-a211-9c4098e590f9","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:44.425699+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5dbc71d9-cb05-4a0c-853d-0ba7a14d9c45","modification_date":"2024-10-14T09:05:44.425699+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":"781c70f1-db12-4aa7-a697-839e030ebfca","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:93:6d:d9","maintenances":[],"modification_date":"2025-02-11T14:23:41.955606+00:00","name":"tf-srv-frosty-gould","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-02-11T14:22:37.050336+00:00","export_uri":null,"id":"4e63a045-02a7-4ad3-bb80-477e9dbb0490","modification_date":"2025-02-11T14:22:37.050336+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3de4c610-2143-4305-a211-9c4098e590f9","name":"tf-srv-frosty-gould"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.140054+00:00","export_uri":null,"id":"55e5eb1c-b7e1-467c-b8d7-6cc7a42f5bf1","modification_date":"2025-02-11T14:22:39.266244+00:00","name":"tf-vol-youthful-fermi","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3de4c610-2143-4305-a211-9c4098e590f9","name":"tf-srv-frosty-gould"},"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2635"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:23:41 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 52cc7a1b-b9a3-417d-8e7a-923416068bab
- status: 200 OK
- code: 200
- duration: 151.003667ms
- - id: 46
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3de4c610-2143-4305-a211-9c4098e590f9
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 2635
- uncompressed: false
- body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-02-11T14:22:37.050336+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-frosty-gould","id":"3de4c610-2143-4305-a211-9c4098e590f9","image":{"arch":"x86_64","creation_date":"2024-10-14T09:05:44.425699+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5dbc71d9-cb05-4a0c-853d-0ba7a14d9c45","modification_date":"2024-10-14T09:05:44.425699+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":"781c70f1-db12-4aa7-a697-839e030ebfca","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:93:6d:d9","maintenances":[],"modification_date":"2025-02-11T14:23:41.955606+00:00","name":"tf-srv-frosty-gould","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-02-11T14:22:37.050336+00:00","export_uri":null,"id":"4e63a045-02a7-4ad3-bb80-477e9dbb0490","modification_date":"2025-02-11T14:22:37.050336+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3de4c610-2143-4305-a211-9c4098e590f9","name":"tf-srv-frosty-gould"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"1":{"boot":false,"creation_date":"2025-02-11T14:22:36.140054+00:00","export_uri":null,"id":"55e5eb1c-b7e1-467c-b8d7-6cc7a42f5bf1","modification_date":"2025-02-11T14:22:39.266244+00:00","name":"tf-vol-youthful-fermi","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3de4c610-2143-4305-a211-9c4098e590f9","name":"tf-srv-frosty-gould"},"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "2635"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:23:42 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 670cb569-46b4-473e-9959-c69bfa0ff7ec
- status: 200 OK
- code: 200
- duration: 135.497792ms
- - id: 47
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3de4c610-2143-4305-a211-9c4098e590f9
- 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, 11 Feb 2025 14:23:42 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 50247b00-eea5-4e00-9757-12e0a009de9b
- status: 204 No Content
- code: 204
- duration: 189.222291ms
- - id: 48
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3de4c610-2143-4305-a211-9c4098e590f9
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 143
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_server","resource_id":"3de4c610-2143-4305-a211-9c4098e590f9","type":"not_found"}'
- headers:
- Content-Length:
- - "143"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:23:42 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - f9a63624-71ec-435c-8887-4001b3d7204d
- status: 404 Not Found
- code: 404
- duration: 67.58775ms
- - id: 49
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4e63a045-02a7-4ad3-bb80-477e9dbb0490
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 446
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T14:22:37.050336+00:00","export_uri":null,"id":"4e63a045-02a7-4ad3-bb80-477e9dbb0490","modification_date":"2025-02-11T14:23:42.367318+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"}}'
- headers:
- Content-Length:
- - "446"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:23:42 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - a99270a9-a94c-46d6-9ac8-2236e0fed10d
- status: 200 OK
- code: 200
- duration: 73.887125ms
- - id: 50
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4e63a045-02a7-4ad3-bb80-477e9dbb0490
- 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, 11 Feb 2025 14:23:42 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 763d98fd-c655-4465-8d8e-364fd4b50132
- status: 204 No Content
- code: 204
- duration: 160.328042ms
- - id: 51
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/55e5eb1c-b7e1-467c-b8d7-6cc7a42f5bf1
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 443
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-02-11T14:22:36.140054+00:00","export_uri":null,"id":"55e5eb1c-b7e1-467c-b8d7-6cc7a42f5bf1","modification_date":"2025-02-11T14:23:42.367318+00:00","name":"tf-vol-youthful-fermi","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":10000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "443"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:23:42 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - fbe8ad91-52b3-4f98-89b7-be2c215cdc59
- status: 200 OK
- code: 200
- duration: 80.197834ms
- - id: 52
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/55e5eb1c-b7e1-467c-b8d7-6cc7a42f5bf1
- 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, 11 Feb 2025 14:23:43 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - b5b2c95e-0268-4519-ab57-3b3ef23cbe90
- status: 204 No Content
- code: 204
- duration: 176.197166ms
- - id: 53
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/55e5eb1c-b7e1-467c-b8d7-6cc7a42f5bf1
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 143
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"55e5eb1c-b7e1-467c-b8d7-6cc7a42f5bf1","type":"not_found"}'
- headers:
- Content-Length:
- - "143"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:23:43 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 890e5630-556b-4192-be58-1f93a99b5cb7
- status: 404 Not Found
- code: 404
- duration: 872.114542ms
- - id: 54
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3de4c610-2143-4305-a211-9c4098e590f9
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 143
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_server","resource_id":"3de4c610-2143-4305-a211-9c4098e590f9","type":"not_found"}'
- headers:
- Content-Length:
- - "143"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:23:43 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 36812921-1d25-4152-a924-7fd1b6c66766
- status: 404 Not Found
- code: 404
- duration: 83.50275ms
- - id: 55
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/444bfd94-a046-48ee-b4ce-bdbfa50aad1a
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 145
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"444bfd94-a046-48ee-b4ce-bdbfa50aad1a","type":"not_found"}'
- headers:
- Content-Length:
- - "145"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Tue, 11 Feb 2025 14:23:43 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - b38a3c04-2736-4446-95f6-0adcf2d8c6c1
- status: 404 Not Found
- code: 404
- duration: 41.193625ms
diff --git a/internal/services/instance/testdata/volume-cannot-resize-block-down.cassette.yaml b/internal/services/instance/testdata/volume-cannot-resize-block-down.cassette.yaml
deleted file mode 100644
index 1c76cc1a4c..0000000000
--- a/internal/services/instance/testdata/volume-cannot-resize-block-down.cassette.yaml
+++ /dev/null
@@ -1,397 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 126
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"name":"tf-vol-relaxed-williamson","project":"105bdce1-64c0-48ab-899d-868455867ecf","volume_type":"b_ssd","size":20000000000}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 447
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:47:20.870872+00:00","export_uri":null,"id":"d7ddf5cf-c722-4fa0-97dc-dc8bd7d39620","modification_date":"2025-01-27T13:47:20.870872+00:00","name":"tf-vol-relaxed-williamson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "447"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:47:20 GMT
- Location:
- - https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d7ddf5cf-c722-4fa0-97dc-dc8bd7d39620
- 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:
- - 80617ad2-322c-4669-8493-520f20abfe63
- status: 201 Created
- code: 201
- duration: 203.630542ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d7ddf5cf-c722-4fa0-97dc-dc8bd7d39620
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 447
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:47:20.870872+00:00","export_uri":null,"id":"d7ddf5cf-c722-4fa0-97dc-dc8bd7d39620","modification_date":"2025-01-27T13:47:20.870872+00:00","name":"tf-vol-relaxed-williamson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "447"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:47: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:
- - 3d2ae7b4-c459-4482-884a-78d7f442218b
- status: 200 OK
- code: 200
- duration: 73.988667ms
- - id: 2
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d7ddf5cf-c722-4fa0-97dc-dc8bd7d39620
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 447
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:47:20.870872+00:00","export_uri":null,"id":"d7ddf5cf-c722-4fa0-97dc-dc8bd7d39620","modification_date":"2025-01-27T13:47:20.870872+00:00","name":"tf-vol-relaxed-williamson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "447"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:47: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:
- - e0d74f91-3350-4904-9e6a-64c0d6902667
- status: 200 OK
- code: 200
- duration: 84.668333ms
- - id: 3
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d7ddf5cf-c722-4fa0-97dc-dc8bd7d39620
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 447
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:47:20.870872+00:00","export_uri":null,"id":"d7ddf5cf-c722-4fa0-97dc-dc8bd7d39620","modification_date":"2025-01-27T13:47:20.870872+00:00","name":"tf-vol-relaxed-williamson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "447"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:47: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:
- - 0ada9c1d-4cf3-4deb-a47c-6aa0158131ad
- status: 200 OK
- code: 200
- duration: 89.8165ms
- - id: 4
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d7ddf5cf-c722-4fa0-97dc-dc8bd7d39620
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 447
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:47:20.870872+00:00","export_uri":null,"id":"d7ddf5cf-c722-4fa0-97dc-dc8bd7d39620","modification_date":"2025-01-27T13:47:20.870872+00:00","name":"tf-vol-relaxed-williamson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "447"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:47: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:
- - 1855205f-8f30-467e-8a71-b7a663cc03f2
- status: 200 OK
- code: 200
- duration: 82.898666ms
- - id: 5
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d7ddf5cf-c722-4fa0-97dc-dc8bd7d39620
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 447
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:47:20.870872+00:00","export_uri":null,"id":"d7ddf5cf-c722-4fa0-97dc-dc8bd7d39620","modification_date":"2025-01-27T13:47:20.870872+00:00","name":"tf-vol-relaxed-williamson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "447"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:47: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:
- - a3850a67-643e-42e3-a518-7b6620f7af74
- status: 200 OK
- code: 200
- duration: 81.180125ms
- - id: 6
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d7ddf5cf-c722-4fa0-97dc-dc8bd7d39620
- method: DELETE
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 0
- uncompressed: false
- body: ""
- headers:
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:47: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:
- - 260ae979-286b-47db-92c0-62e06805c249
- status: 204 No Content
- code: 204
- duration: 164.928208ms
- - id: 7
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d7ddf5cf-c722-4fa0-97dc-dc8bd7d39620
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 143
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d7ddf5cf-c722-4fa0-97dc-dc8bd7d39620","type":"not_found"}'
- headers:
- Content-Length:
- - "143"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:47: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:
- - 41c76ecf-9ca8-414c-8470-9521702a8b4f
- status: 404 Not Found
- code: 404
- duration: 35.077041ms
diff --git a/internal/services/instance/testdata/volume-resize-block.cassette.yaml b/internal/services/instance/testdata/volume-resize-block.cassette.yaml
deleted file mode 100644
index df4db3daad..0000000000
--- a/internal/services/instance/testdata/volume-resize-block.cassette.yaml
+++ /dev/null
@@ -1,842 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 119
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"name":"tf-vol-pedantic-tu","project":"105bdce1-64c0-48ab-899d-868455867ecf","volume_type":"b_ssd","size":20000000000}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 440
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:47:24.941701+00:00","export_uri":null,"id":"11eff2e6-9458-4c1c-afb1-554f90203cd5","modification_date":"2025-01-27T13:47:24.941701+00:00","name":"tf-vol-pedantic-tu","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "440"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:47:24 GMT
- Location:
- - https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/11eff2e6-9458-4c1c-afb1-554f90203cd5
- 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:
- - bae2fca0-5e38-47a6-a8e6-abab48a1c61c
- status: 201 Created
- code: 201
- duration: 185.292583ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/11eff2e6-9458-4c1c-afb1-554f90203cd5
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 440
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:47:24.941701+00:00","export_uri":null,"id":"11eff2e6-9458-4c1c-afb1-554f90203cd5","modification_date":"2025-01-27T13:47:24.941701+00:00","name":"tf-vol-pedantic-tu","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "440"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:47:25 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:
- - 54ae66bb-13a7-4f37-ac96-e6a2fed0b9a2
- status: 200 OK
- code: 200
- duration: 131.710375ms
- - id: 2
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/11eff2e6-9458-4c1c-afb1-554f90203cd5
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 440
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:47:24.941701+00:00","export_uri":null,"id":"11eff2e6-9458-4c1c-afb1-554f90203cd5","modification_date":"2025-01-27T13:47:24.941701+00:00","name":"tf-vol-pedantic-tu","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "440"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:47:25 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:
- - 0c4ecdef-96db-423d-bf56-3519d0d21a38
- status: 200 OK
- code: 200
- duration: 81.084042ms
- - id: 3
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/11eff2e6-9458-4c1c-afb1-554f90203cd5
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 440
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:47:24.941701+00:00","export_uri":null,"id":"11eff2e6-9458-4c1c-afb1-554f90203cd5","modification_date":"2025-01-27T13:47:24.941701+00:00","name":"tf-vol-pedantic-tu","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "440"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:47:25 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:
- - ccefbc0d-d12d-4a6e-b735-d5207b99a719
- status: 200 OK
- code: 200
- duration: 89.553583ms
- - id: 4
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/11eff2e6-9458-4c1c-afb1-554f90203cd5
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 440
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:47:24.941701+00:00","export_uri":null,"id":"11eff2e6-9458-4c1c-afb1-554f90203cd5","modification_date":"2025-01-27T13:47:24.941701+00:00","name":"tf-vol-pedantic-tu","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "440"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:47:25 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:
- - 5f1983dc-5f8a-49c7-b812-4bb28ccce89c
- status: 200 OK
- code: 200
- duration: 85.512375ms
- - id: 5
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/11eff2e6-9458-4c1c-afb1-554f90203cd5
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 440
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:47:24.941701+00:00","export_uri":null,"id":"11eff2e6-9458-4c1c-afb1-554f90203cd5","modification_date":"2025-01-27T13:47:24.941701+00:00","name":"tf-vol-pedantic-tu","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "440"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:47:25 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:
- - 50f92854-7877-46da-9cd7-8b152e1a62ff
- status: 200 OK
- code: 200
- duration: 82.792ms
- - id: 6
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/11eff2e6-9458-4c1c-afb1-554f90203cd5
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 440
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:47:24.941701+00:00","export_uri":null,"id":"11eff2e6-9458-4c1c-afb1-554f90203cd5","modification_date":"2025-01-27T13:47:24.941701+00:00","name":"tf-vol-pedantic-tu","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "440"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:47:25 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:
- - 3334ebcf-f3fe-4e2d-bc5d-e7ba3d484792
- status: 200 OK
- code: 200
- duration: 79.299041ms
- - id: 7
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 20
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"size":30000000000}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/11eff2e6-9458-4c1c-afb1-554f90203cd5
- method: PATCH
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 439
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:47:24.941701+00:00","export_uri":null,"id":"11eff2e6-9458-4c1c-afb1-554f90203cd5","modification_date":"2025-01-27T13:47:26.275076+00:00","name":"tf-vol-pedantic-tu","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":30000000000,"state":"resizing","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "439"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:47:26 GMT
- Server:
- - Scaleway API Gateway (fr-par-3;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 2a7c0e06-1536-4c3d-9bd6-44b3cdecb3f8
- status: 202 Accepted
- code: 202
- duration: 528.385833ms
- - id: 8
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/11eff2e6-9458-4c1c-afb1-554f90203cd5
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 439
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:47:24.941701+00:00","export_uri":null,"id":"11eff2e6-9458-4c1c-afb1-554f90203cd5","modification_date":"2025-01-27T13:47:26.275076+00:00","name":"tf-vol-pedantic-tu","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":30000000000,"state":"resizing","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "439"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:47:26 GMT
- Server:
- - Scaleway API Gateway (fr-par-3;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 3df7b89a-a011-4d19-8589-5ce75c484331
- status: 200 OK
- code: 200
- duration: 76.309584ms
- - id: 9
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/11eff2e6-9458-4c1c-afb1-554f90203cd5
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 440
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:47:24.941701+00:00","export_uri":null,"id":"11eff2e6-9458-4c1c-afb1-554f90203cd5","modification_date":"2025-01-27T13:47:27.322711+00:00","name":"tf-vol-pedantic-tu","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":30000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "440"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:47:31 GMT
- Server:
- - Scaleway API Gateway (fr-par-3;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - e451c1a6-ab6d-4a74-a0fc-de9280c11f52
- status: 200 OK
- code: 200
- duration: 86.270583ms
- - id: 10
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 11
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"tags":[]}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/11eff2e6-9458-4c1c-afb1-554f90203cd5
- method: PATCH
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 440
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:47:24.941701+00:00","export_uri":null,"id":"11eff2e6-9458-4c1c-afb1-554f90203cd5","modification_date":"2025-01-27T13:47:27.322711+00:00","name":"tf-vol-pedantic-tu","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":30000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "440"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:47:31 GMT
- Server:
- - Scaleway API Gateway (fr-par-3;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - f7d5d8a4-ace1-44e6-a5b6-ddaff6fd2930
- status: 200 OK
- code: 200
- duration: 120.216375ms
- - id: 11
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/11eff2e6-9458-4c1c-afb1-554f90203cd5
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 440
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:47:24.941701+00:00","export_uri":null,"id":"11eff2e6-9458-4c1c-afb1-554f90203cd5","modification_date":"2025-01-27T13:47:27.322711+00:00","name":"tf-vol-pedantic-tu","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":30000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "440"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:47:31 GMT
- Server:
- - Scaleway API Gateway (fr-par-3;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - fdca9adb-5e11-4d1c-acad-6147bf9403e3
- status: 200 OK
- code: 200
- duration: 78.245542ms
- - id: 12
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/11eff2e6-9458-4c1c-afb1-554f90203cd5
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 440
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:47:24.941701+00:00","export_uri":null,"id":"11eff2e6-9458-4c1c-afb1-554f90203cd5","modification_date":"2025-01-27T13:47:27.322711+00:00","name":"tf-vol-pedantic-tu","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":30000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "440"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:47:31 GMT
- Server:
- - Scaleway API Gateway (fr-par-3;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - ef438742-09e2-4840-97af-f63bcd95c752
- status: 200 OK
- code: 200
- duration: 80.053583ms
- - id: 13
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/11eff2e6-9458-4c1c-afb1-554f90203cd5
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 440
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:47:24.941701+00:00","export_uri":null,"id":"11eff2e6-9458-4c1c-afb1-554f90203cd5","modification_date":"2025-01-27T13:47:27.322711+00:00","name":"tf-vol-pedantic-tu","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":30000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "440"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:47:32 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:
- - 060b7214-b960-48a8-9f47-b45877144519
- status: 200 OK
- code: 200
- duration: 76.063916ms
- - id: 14
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/11eff2e6-9458-4c1c-afb1-554f90203cd5
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 440
- uncompressed: false
- body: '{"volume":{"creation_date":"2025-01-27T13:47:24.941701+00:00","export_uri":null,"id":"11eff2e6-9458-4c1c-afb1-554f90203cd5","modification_date":"2025-01-27T13:47:27.322711+00:00","name":"tf-vol-pedantic-tu","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":30000000000,"state":"available","tags":[],"volume_type":"b_ssd","zone":"fr-par-1"}}'
- headers:
- Content-Length:
- - "440"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:47:32 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:
- - 266f3d75-e4f0-43ea-bd5f-8060c707ad76
- status: 200 OK
- code: 200
- duration: 81.564ms
- - id: 15
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/11eff2e6-9458-4c1c-afb1-554f90203cd5
- method: DELETE
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 0
- uncompressed: false
- body: ""
- headers:
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:47:32 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:
- - 76e8dee5-2e7a-4518-ad4f-2f8e4722ab6d
- status: 204 No Content
- code: 204
- duration: 177.238834ms
- - id: 16
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/11eff2e6-9458-4c1c-afb1-554f90203cd5
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 143
- uncompressed: false
- body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"11eff2e6-9458-4c1c-afb1-554f90203cd5","type":"not_found"}'
- headers:
- Content-Length:
- - "143"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Mon, 27 Jan 2025 13:47:32 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:
- - 0c0ddcaa-af36-4572-946f-7f96ba1964b5
- status: 404 Not Found
- code: 404
- duration: 30.02025ms
diff --git a/internal/services/instance/volume_test.go b/internal/services/instance/volume_test.go
index bfd1c38c6a..fb195f0f7a 100644
--- a/internal/services/instance/volume_test.go
+++ b/internal/services/instance/volume_test.go
@@ -79,6 +79,8 @@ func TestAccVolume_DifferentNameGenerated(t *testing.T) {
}
func TestAccVolume_ResizeBlock(t *testing.T) {
+ t.Skip("Resource \"scaleway_instance_volume\" is depracated for block volumes")
+
tt := acctest.NewTestTools(t)
defer tt.Cleanup()
resource.ParallelTest(t, resource.TestCase{
@@ -144,6 +146,8 @@ func TestAccVolume_ResizeNotBlock(t *testing.T) {
}
func TestAccVolume_CannotResizeBlockDown(t *testing.T) {
+ t.Skip("Resource \"scaleway_instance_volume\" is depracated for block volumes")
+
tt := acctest.NewTestTools(t)
defer tt.Cleanup()
resource.ParallelTest(t, resource.TestCase{
diff --git a/internal/services/k8s/k8s_version_data_source_test.go b/internal/services/k8s/k8s_version_data_source_test.go
index 7f897cf671..ad25088fdf 100644
--- a/internal/services/k8s/k8s_version_data_source_test.go
+++ b/internal/services/k8s/k8s_version_data_source_test.go
@@ -23,7 +23,7 @@ func TestAccDataSourceVersion_Basic(t *testing.T) {
{
Config: `
data "scaleway_k8s_version" "by_name" {
- name = "1.26.2"
+ name = "1.32.2"
}
`,
Check: resource.ComposeTestCheckFunc(
@@ -36,12 +36,13 @@ func TestAccDataSourceVersion_Basic(t *testing.T) {
resource.TestCheckResourceAttr("data.scaleway_k8s_version.by_name", "available_cnis.3", "none"),
resource.TestCheckResourceAttr("data.scaleway_k8s_version.by_name", "available_container_runtimes.#", "1"),
resource.TestCheckResourceAttr("data.scaleway_k8s_version.by_name", "available_container_runtimes.0", "containerd"),
- resource.TestCheckResourceAttr("data.scaleway_k8s_version.by_name", "available_feature_gates.#", "5"),
+ resource.TestCheckResourceAttr("data.scaleway_k8s_version.by_name", "available_feature_gates.#", "6"),
resource.TestCheckResourceAttr("data.scaleway_k8s_version.by_name", "available_feature_gates.0", "HPAScaleToZero"),
- resource.TestCheckResourceAttr("data.scaleway_k8s_version.by_name", "available_feature_gates.1", "GRPCContainerProbe"),
- resource.TestCheckResourceAttr("data.scaleway_k8s_version.by_name", "available_feature_gates.2", "ReadWriteOncePod"),
- resource.TestCheckResourceAttr("data.scaleway_k8s_version.by_name", "available_feature_gates.3", "ValidatingAdmissionPolicy"),
- resource.TestCheckResourceAttr("data.scaleway_k8s_version.by_name", "available_feature_gates.4", "CSINodeExpandSecret"),
+ resource.TestCheckResourceAttr("data.scaleway_k8s_version.by_name", "available_feature_gates.1", "InPlacePodVerticalScaling"),
+ resource.TestCheckResourceAttr("data.scaleway_k8s_version.by_name", "available_feature_gates.2", "SidecarContainers"),
+ resource.TestCheckResourceAttr("data.scaleway_k8s_version.by_name", "available_feature_gates.3", "DRAAdminAccess"),
+ resource.TestCheckResourceAttr("data.scaleway_k8s_version.by_name", "available_feature_gates.4", "DRAResourceClaimDeviceStatus"),
+ resource.TestCheckResourceAttr("data.scaleway_k8s_version.by_name", "available_feature_gates.5", "DynamicResourceAllocation"),
),
},
},
diff --git a/internal/services/k8s/testdata/data-source-version-basic.cassette.yaml b/internal/services/k8s/testdata/data-source-version-basic.cassette.yaml
index c82ec592df..4a314bfad9 100644
--- a/internal/services/k8s/testdata/data-source-version-basic.cassette.yaml
+++ b/internal/services/k8s/testdata/data-source-version-basic.cassette.yaml
@@ -16,8 +16,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/versions/1.26.2
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/versions/1.32.2
method: GET
response:
proto: HTTP/2.0
@@ -25,20 +25,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 813
+ content_length: 876
uncompressed: false
- body: '{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"label":"Kubernetes 1.26.2","name":"1.26.2","region":"fr-par"}'
+ body: '{"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","InPlacePodVerticalScaling","SidecarContainers","DRAAdminAccess","DRAResourceClaimDeviceStatus","DynamicResourceAllocation"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"label":"Kubernetes 1.32.2","name":"1.32.2","region":"fr-par"}'
headers:
Content-Length:
- - "813"
+ - "876"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 24 Jan 2025 14:46:49 GMT
+ - Wed, 21 May 2025 22:29:42 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-3;edge03)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -46,10 +46,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ff904eb3-ec3f-4cda-835f-a1cb6d82fae6
+ - 0f69dadb-2d15-4110-b163-a45eb10f1146
status: 200 OK
code: 200
- duration: 31.390375ms
+ duration: 179.984251ms
- id: 1
request:
proto: HTTP/1.1
@@ -65,8 +65,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/versions/1.26.2
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/versions/1.32.2
method: GET
response:
proto: HTTP/2.0
@@ -74,20 +74,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 813
+ content_length: 876
uncompressed: false
- body: '{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"label":"Kubernetes 1.26.2","name":"1.26.2","region":"fr-par"}'
+ body: '{"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","InPlacePodVerticalScaling","SidecarContainers","DRAAdminAccess","DRAResourceClaimDeviceStatus","DynamicResourceAllocation"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"label":"Kubernetes 1.32.2","name":"1.32.2","region":"fr-par"}'
headers:
Content-Length:
- - "813"
+ - "876"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 24 Jan 2025 14:46:49 GMT
+ - Wed, 21 May 2025 22:29:42 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-3;edge03)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -95,10 +95,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 15e7f957-6385-41ad-b694-ebb83c041f9f
+ - cfb4e75a-d415-453a-aaf6-bdf037d87e4e
status: 200 OK
code: 200
- duration: 61.825958ms
+ duration: 24.829347ms
- id: 2
request:
proto: HTTP/1.1
@@ -114,8 +114,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/versions/1.26.2
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/versions/1.32.2
method: GET
response:
proto: HTTP/2.0
@@ -123,20 +123,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 813
+ content_length: 876
uncompressed: false
- body: '{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"label":"Kubernetes 1.26.2","name":"1.26.2","region":"fr-par"}'
+ body: '{"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","InPlacePodVerticalScaling","SidecarContainers","DRAAdminAccess","DRAResourceClaimDeviceStatus","DynamicResourceAllocation"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"label":"Kubernetes 1.32.2","name":"1.32.2","region":"fr-par"}'
headers:
Content-Length:
- - "813"
+ - "876"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 24 Jan 2025 14:46:50 GMT
+ - Wed, 21 May 2025 22:29:43 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-3;edge03)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -144,10 +144,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1cdbb73b-12e4-4bb1-abf9-06030b170098
+ - 979bfa5f-cae3-4cc8-9cba-c5b6a9e12a57
status: 200 OK
code: 200
- duration: 27.63225ms
+ duration: 26.830328ms
- id: 3
request:
proto: HTTP/1.1
@@ -163,8 +163,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/versions/1.26.2
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/versions/1.32.2
method: GET
response:
proto: HTTP/2.0
@@ -172,20 +172,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 813
+ content_length: 876
uncompressed: false
- body: '{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"label":"Kubernetes 1.26.2","name":"1.26.2","region":"fr-par"}'
+ body: '{"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","InPlacePodVerticalScaling","SidecarContainers","DRAAdminAccess","DRAResourceClaimDeviceStatus","DynamicResourceAllocation"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"label":"Kubernetes 1.32.2","name":"1.32.2","region":"fr-par"}'
headers:
Content-Length:
- - "813"
+ - "876"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 24 Jan 2025 14:46:51 GMT
+ - Wed, 21 May 2025 22:29:44 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-3;edge03)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -193,10 +193,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4fde5222-e6bc-488c-bd58-0c318d0b2ca9
+ - 7c51118b-921f-4fb3-816b-c975a54f92bc
status: 200 OK
code: 200
- duration: 33.924208ms
+ duration: 23.449209ms
- id: 4
request:
proto: HTTP/1.1
@@ -212,8 +212,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/versions/1.26.2
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/versions/1.32.2
method: GET
response:
proto: HTTP/2.0
@@ -221,20 +221,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 813
+ content_length: 876
uncompressed: false
- body: '{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"label":"Kubernetes 1.26.2","name":"1.26.2","region":"fr-par"}'
+ body: '{"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","InPlacePodVerticalScaling","SidecarContainers","DRAAdminAccess","DRAResourceClaimDeviceStatus","DynamicResourceAllocation"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"label":"Kubernetes 1.32.2","name":"1.32.2","region":"fr-par"}'
headers:
Content-Length:
- - "813"
+ - "876"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 24 Jan 2025 14:46:51 GMT
+ - Wed, 21 May 2025 22:29:44 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-3;edge03)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -242,10 +242,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ab682639-77af-4863-9abc-517b11265e2b
+ - 2ebc5dbc-496e-4ff9-8a11-8c97586c1e2e
status: 200 OK
code: 200
- duration: 329.403041ms
+ duration: 22.141164ms
- id: 5
request:
proto: HTTP/1.1
@@ -261,8 +261,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/k8s/v1/regions/fr-par/versions/1.26.2
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/k8s/v1/regions/fr-par/versions/1.32.2
method: GET
response:
proto: HTTP/2.0
@@ -270,20 +270,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 813
+ content_length: 876
uncompressed: false
- body: '{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"label":"Kubernetes 1.26.2","name":"1.26.2","region":"fr-par"}'
+ body: '{"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","InPlacePodVerticalScaling","SidecarContainers","DRAAdminAccess","DRAResourceClaimDeviceStatus","DynamicResourceAllocation"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"label":"Kubernetes 1.32.2","name":"1.32.2","region":"fr-par"}'
headers:
Content-Length:
- - "813"
+ - "876"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 24 Jan 2025 14:46:52 GMT
+ - Wed, 21 May 2025 22:29:45 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-3;edge03)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -291,7 +291,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 33e75528-28dc-4488-9db7-93535ef8682b
+ - 48f82d19-20ac-45a2-9c3b-fea16ad68d5b
status: 200 OK
code: 200
- duration: 21.288ms
+ duration: 20.038605ms